mirror of
https://github.com/boostorg/beast.git
synced 2026-01-28 10:12:20 +01:00
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
//
|
|
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
//
|
|
// 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
|
|
//
|
|
|
|
#include "example/common/detect_ssl.hpp"
|
|
|
|
#include <boost/beast/core/flat_buffer.hpp>
|
|
#include <boost/beast/core/ostream.hpp>
|
|
#include <boost/beast/_experimental/test/stream.hpp>
|
|
#include <boost/beast/test/yield_to.hpp>
|
|
#include <boost/beast/_experimental/unit_test/suite.hpp>
|
|
|
|
namespace boost {
|
|
namespace beast {
|
|
|
|
class examples_test
|
|
: public beast::unit_test::suite
|
|
, public beast::test::enable_yield_to
|
|
{
|
|
public:
|
|
void
|
|
testDetect()
|
|
{
|
|
char buf[4];
|
|
buf[0] = 0x16;
|
|
buf[1] = 0;
|
|
buf[2] = 0;
|
|
buf[3] = 0;
|
|
BEAST_EXPECT(boost::indeterminate(is_ssl_handshake(
|
|
net::buffer(buf, 0))));
|
|
BEAST_EXPECT(boost::indeterminate(is_ssl_handshake(
|
|
net::buffer(buf, 1))));
|
|
BEAST_EXPECT(boost::indeterminate(is_ssl_handshake(
|
|
net::buffer(buf, 2))));
|
|
BEAST_EXPECT(boost::indeterminate(is_ssl_handshake(
|
|
net::buffer(buf, 3))));
|
|
BEAST_EXPECT(is_ssl_handshake(
|
|
net::buffer(buf, 4)));
|
|
buf[0] = 0;
|
|
BEAST_EXPECT(! is_ssl_handshake(
|
|
net::buffer(buf, 1)));
|
|
}
|
|
|
|
void
|
|
testRead()
|
|
{
|
|
{
|
|
test::stream ts{ioc_, "\x16***"};
|
|
error_code ec;
|
|
flat_buffer b;
|
|
auto const result = detect_ssl(ts, b, ec);
|
|
BEAST_EXPECTS(! ec, ec.message());
|
|
BEAST_EXPECT(result);
|
|
}
|
|
yield_to(
|
|
[&](yield_context yield)
|
|
{
|
|
test::stream ts{ioc_, "\x16***"};
|
|
error_code ec;
|
|
flat_buffer b;
|
|
auto const result =
|
|
async_detect_ssl(ts, b, yield[ec]);
|
|
BEAST_EXPECTS(! ec, ec.message());
|
|
BEAST_EXPECT(result);
|
|
});
|
|
}
|
|
|
|
void
|
|
run()
|
|
{
|
|
testDetect();
|
|
testRead();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(beast,core,examples);
|
|
|
|
} // beast
|
|
} // boost
|