diff options
author | Hannes Rantzsch <[email protected]> | 2019-06-27 13:07:24 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2019-06-27 13:07:24 +0200 |
commit | da1dec41fa66c34765eaafc583b4ddb70a3c139d (patch) | |
tree | 9ab8608ffc4a5dc54df5d233b4a3e7a6f4d98c6f /src | |
parent | 289638388699a221b81b821526d378b09283b5c6 (diff) | |
parent | 60bfa5b935370bb1cc4a14bd47c6cf90a70343eb (diff) |
Merge GH #2005 Boost 1.70 compatibility in asio_stream unit test
Boost 1.70 compatibility in asio_stream unit test
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/unit_asio_stream.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/tests/unit_asio_stream.cpp b/src/tests/unit_asio_stream.cpp index 5fd67cbd4..c32cfb9d8 100644 --- a/src/tests/unit_asio_stream.cpp +++ b/src/tests/unit_asio_stream.cpp @@ -13,11 +13,19 @@ #include <botan/asio_stream.h> #include <botan/tls_callbacks.h> -// first boost version to include boost/beast/experimental/test/stream.hpp +// The boost::beast::test::stream we use is available starting from boost +// version 1.68, so we cannot run these tests with a smaller version. #include <boost/version.hpp> #if BOOST_VERSION >= 106800 +// boost::beast::test::stream's include path has been changed in boost version +// 1.70. +#if BOOST_VERSION < 107000 #include <boost/beast/experimental/test/stream.hpp> +#else +#include <boost/beast/_experimental/test/stream.hpp> +#endif + #include <boost/bind.hpp> namespace Botan_Tests { @@ -87,7 +95,15 @@ class ThrowingMockChannel : public MockChannel } }; -using TestStream = boost::beast::test::stream; +// Unfortunately, boost::beast::test::stream keeps lowest_layer_type private and +// only friends boost::asio::ssl::stream. We need to make our own. +class TestStream : public boost::beast::test::stream + { + public: + using boost::beast::test::stream::stream; + using lowest_layer_type = boost::beast::test::stream; + }; + using FailCount = boost::beast::test::fail_count; class AsioStream : public Botan::TLS::Stream<TestStream, MockChannel> |