diff options
Diffstat (limited to '3rdparty/asio/src/tests/unit/ssl')
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/.gitignore | 14 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/context.cpp | 2 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/context_base.cpp | 2 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/error.cpp | 25 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/host_name_verification.cpp | 25 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/rfc2818_verification.cpp | 2 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/stream.cpp | 24 | ||||
-rw-r--r-- | 3rdparty/asio/src/tests/unit/ssl/stream_base.cpp | 2 |
8 files changed, 66 insertions, 30 deletions
diff --git a/3rdparty/asio/src/tests/unit/ssl/.gitignore b/3rdparty/asio/src/tests/unit/ssl/.gitignore deleted file mode 100644 index 5c2ad3eba55..00000000000 --- a/3rdparty/asio/src/tests/unit/ssl/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -.deps -.dirstamp -*.o -*.obj -*.exe -*.ilk -*.manifest -*.pdb -*.tds -context -context_base -rfc2818_verification -stream -stream_base diff --git a/3rdparty/asio/src/tests/unit/ssl/context.cpp b/3rdparty/asio/src/tests/unit/ssl/context.cpp index 27d63d5a9bc..621bf11c4a0 100644 --- a/3rdparty/asio/src/tests/unit/ssl/context.cpp +++ b/3rdparty/asio/src/tests/unit/ssl/context.cpp @@ -2,7 +2,7 @@ // context.cpp // ~~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) diff --git a/3rdparty/asio/src/tests/unit/ssl/context_base.cpp b/3rdparty/asio/src/tests/unit/ssl/context_base.cpp index 19ef5740d2f..9ddddad3a8e 100644 --- a/3rdparty/asio/src/tests/unit/ssl/context_base.cpp +++ b/3rdparty/asio/src/tests/unit/ssl/context_base.cpp @@ -2,7 +2,7 @@ // context_base.cpp // ~~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) diff --git a/3rdparty/asio/src/tests/unit/ssl/error.cpp b/3rdparty/asio/src/tests/unit/ssl/error.cpp new file mode 100644 index 00000000000..633d7b61e8f --- /dev/null +++ b/3rdparty/asio/src/tests/unit/ssl/error.cpp @@ -0,0 +1,25 @@ +// +// error.cpp +// ~~~~~~~~~ +// +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) +// + +// Disable autolinking for unit tests. +#if !defined(BOOST_ALL_NO_LIB) +#define BOOST_ALL_NO_LIB 1 +#endif // !defined(BOOST_ALL_NO_LIB) + +// Test that header file is self-contained. +#include "asio/ssl/error.hpp" + +#include "../unit_test.hpp" + +ASIO_TEST_SUITE +( + "ssl/error", + ASIO_TEST_CASE(null_test) +) diff --git a/3rdparty/asio/src/tests/unit/ssl/host_name_verification.cpp b/3rdparty/asio/src/tests/unit/ssl/host_name_verification.cpp new file mode 100644 index 00000000000..7126e4b083a --- /dev/null +++ b/3rdparty/asio/src/tests/unit/ssl/host_name_verification.cpp @@ -0,0 +1,25 @@ +// +// host_name_verification.cpp +// ~~~~~~~~~~~~~~~~~~~~~~~~~~ +// +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) +// + +// Disable autolinking for unit tests. +#if !defined(BOOST_ALL_NO_LIB) +#define BOOST_ALL_NO_LIB 1 +#endif // !defined(BOOST_ALL_NO_LIB) + +// Test that header file is self-contained. +#include "asio/ssl/host_name_verification.hpp" + +#include "../unit_test.hpp" + +ASIO_TEST_SUITE +( + "ssl/host_name_verification", + ASIO_TEST_CASE(null_test) +) diff --git a/3rdparty/asio/src/tests/unit/ssl/rfc2818_verification.cpp b/3rdparty/asio/src/tests/unit/ssl/rfc2818_verification.cpp index 15e0b5e35c3..adcfa95ded8 100644 --- a/3rdparty/asio/src/tests/unit/ssl/rfc2818_verification.cpp +++ b/3rdparty/asio/src/tests/unit/ssl/rfc2818_verification.cpp @@ -2,7 +2,7 @@ // rfc2818_verification.cpp // ~~~~~~~~~~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) diff --git a/3rdparty/asio/src/tests/unit/ssl/stream.cpp b/3rdparty/asio/src/tests/unit/ssl/stream.cpp index 542949eb60c..467115169b9 100644 --- a/3rdparty/asio/src/tests/unit/ssl/stream.cpp +++ b/3rdparty/asio/src/tests/unit/ssl/stream.cpp @@ -2,7 +2,7 @@ // stream.cpp // ~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) @@ -75,19 +75,19 @@ void test() ip::tcp::socket socket1(ioc, ip::tcp::v4()); ssl::stream<ip::tcp::socket&> stream2(socket1, context); + ssl::stream<ip::tcp::socket> stream3 + = ssl::stream<ip::tcp::socket>(ioc, context); + ssl::stream<ip::tcp::socket> stream4(std::move(stream3)); + + // ssl::stream assignment. + + stream3 = std::move(stream4); + // basic_io_object functions. ssl::stream<ip::tcp::socket>::executor_type ex = stream1.get_executor(); (void)ex; -#if !defined(ASIO_NO_DEPRECATED) - io_context& ioc_ref = stream1.get_io_context(); - (void)ioc_ref; - - io_context& ioc_ref2 = stream1.get_io_service(); - (void)ioc_ref2; -#endif // !defined(ASIO_NO_DEPRECATED) - // ssl::stream functions. SSL* ssl1 = stream1.native_handle(); @@ -97,9 +97,9 @@ void test() = stream1.lowest_layer(); (void)lowest_layer; - const ssl::stream<ip::tcp::socket>& stream3 = stream1; + const ssl::stream<ip::tcp::socket>& stream5 = stream1; const ssl::stream<ip::tcp::socket>::lowest_layer_type& lowest_layer2 - = stream3.lowest_layer(); + = stream5.lowest_layer(); (void)lowest_layer2; stream1.set_verify_mode(ssl::verify_none); @@ -195,5 +195,5 @@ void test() ASIO_TEST_SUITE ( "ssl/stream", - ASIO_TEST_CASE(ssl_stream_compile::test) + ASIO_COMPILE_TEST_CASE(ssl_stream_compile::test) ) diff --git a/3rdparty/asio/src/tests/unit/ssl/stream_base.cpp b/3rdparty/asio/src/tests/unit/ssl/stream_base.cpp index 4dbc9e3b232..7e6a1e62ef0 100644 --- a/3rdparty/asio/src/tests/unit/ssl/stream_base.cpp +++ b/3rdparty/asio/src/tests/unit/ssl/stream_base.cpp @@ -2,7 +2,7 @@ // stream_base.cpp // ~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff 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) |