2019-02-26 18:55:23 -08:00
|
|
|
|
//
|
2019-02-21 07:00:31 -08:00
|
|
|
|
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2018-05-02 08:30:29 -07:00
|
|
|
|
//
|
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
//
|
|
|
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// Test that header file is self-contained.
|
2018-11-11 14:07:55 -08:00
|
|
|
|
#include <boost/beast/_experimental/test/stream.hpp>
|
2019-02-06 14:40:48 -08:00
|
|
|
|
|
|
|
|
|
|
#include <boost/beast/_experimental/unit_test/suite.hpp>
|
2019-02-26 18:55:23 -08:00
|
|
|
|
#include <boost/beast/_experimental/test/handler.hpp>
|
2019-02-06 14:40:48 -08:00
|
|
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
|
|
namespace beast {
|
|
|
|
|
|
|
2019-02-26 18:55:23 -08:00
|
|
|
|
class stream_test
|
2019-02-06 14:40:48 -08:00
|
|
|
|
: public unit_test::suite
|
|
|
|
|
|
{
|
|
|
|
|
|
public:
|
|
|
|
|
|
void
|
|
|
|
|
|
testTestStream()
|
|
|
|
|
|
{
|
|
|
|
|
|
char buf[1] = {};
|
|
|
|
|
|
net::mutable_buffer m0;
|
|
|
|
|
|
net::mutable_buffer m1(buf, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
|
|
{
|
2019-02-26 18:55:23 -08:00
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
|
2019-02-06 14:40:48 -08:00
|
|
|
|
{
|
|
|
|
|
|
test::stream ts(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
test::stream ts(ioc);
|
|
|
|
|
|
ts.close();
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
test::stream t1(ioc);
|
|
|
|
|
|
auto t2 = connect(t1);
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
test::stream t1(ioc);
|
|
|
|
|
|
auto t2 = connect(t1);
|
|
|
|
|
|
t2.close();
|
|
|
|
|
|
}
|
2019-02-26 18:55:23 -08:00
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
// abandon
|
|
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
test::stream ts(ioc);
|
|
|
|
|
|
ts.async_read_some(m1,
|
|
|
|
|
|
[](error_code, std::size_t)
|
2019-02-06 14:40:48 -08:00
|
|
|
|
{
|
2019-02-26 18:55:23 -08:00
|
|
|
|
BEAST_FAIL();
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
//---
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
2019-02-06 14:40:48 -08:00
|
|
|
|
{
|
|
|
|
|
|
test::stream ts(ioc);
|
|
|
|
|
|
ts.async_read_some(m1,
|
2019-02-26 18:55:23 -08:00
|
|
|
|
test::fail_handler(
|
|
|
|
|
|
net::error::operation_aborted));
|
2019-02-06 14:40:48 -08:00
|
|
|
|
}
|
2019-02-26 18:55:23 -08:00
|
|
|
|
test::run(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
test::stream ts(ioc);
|
|
|
|
|
|
ts.async_read_some(m1,
|
|
|
|
|
|
test::fail_handler(
|
|
|
|
|
|
net::error::operation_aborted));
|
|
|
|
|
|
ts.close();
|
|
|
|
|
|
test::run(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
test::stream t1(ioc);
|
|
|
|
|
|
auto t2 = connect(t1);
|
|
|
|
|
|
t1.async_read_some(m1,
|
|
|
|
|
|
test::fail_handler(
|
|
|
|
|
|
net::error::eof));
|
|
|
|
|
|
t2.close();
|
|
|
|
|
|
test::run(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
test::stream t1(ioc);
|
|
|
|
|
|
auto t2 = connect(t1);
|
|
|
|
|
|
t1.async_read_some(m1,
|
|
|
|
|
|
test::fail_handler(
|
|
|
|
|
|
net::error::operation_aborted));
|
|
|
|
|
|
t1.close();
|
|
|
|
|
|
test::run(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
testSharedAbandon()
|
|
|
|
|
|
{
|
|
|
|
|
|
struct handler
|
|
|
|
|
|
{
|
|
|
|
|
|
std::shared_ptr<test::stream> ts_;
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
operator()(error_code, std::size_t)
|
2019-02-06 14:40:48 -08:00
|
|
|
|
{
|
|
|
|
|
|
}
|
2019-02-26 18:55:23 -08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
char buf[1] = {};
|
|
|
|
|
|
net::mutable_buffer m1(buf, sizeof(buf));
|
|
|
|
|
|
|
|
|
|
|
|
std::weak_ptr<test::stream> wp;
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
2019-02-06 14:40:48 -08:00
|
|
|
|
{
|
2019-02-26 18:55:23 -08:00
|
|
|
|
auto sp = std::make_shared<test::stream>(ioc);
|
|
|
|
|
|
|
|
|
|
|
|
sp->async_read_some(m1, handler{sp});
|
|
|
|
|
|
wp = sp;
|
2019-02-06 14:40:48 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-02-26 18:55:23 -08:00
|
|
|
|
BEAST_EXPECT(! wp.lock());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
testLifetimeViolation()
|
|
|
|
|
|
{
|
|
|
|
|
|
// This should assert
|
|
|
|
|
|
std::shared_ptr<test::stream> sp;
|
|
|
|
|
|
{
|
|
|
|
|
|
net::io_context ioc;
|
|
|
|
|
|
sp = std::make_shared<test::stream>(ioc);
|
|
|
|
|
|
}
|
|
|
|
|
|
sp.reset();
|
2019-02-06 14:40:48 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
|
run() override
|
|
|
|
|
|
{
|
|
|
|
|
|
testTestStream();
|
2019-02-26 18:55:23 -08:00
|
|
|
|
testSharedAbandon();
|
|
|
|
|
|
//testLifetimeViolation();
|
2019-02-06 14:40:48 -08:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2019-02-26 18:55:23 -08:00
|
|
|
|
BEAST_DEFINE_TESTSUITE(beast,test,stream);
|
2019-02-06 14:40:48 -08:00
|
|
|
|
|
|
|
|
|
|
} // beast
|
|
|
|
|
|
} // boost
|