]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/test/windows/stream_handle.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / asio / test / windows / stream_handle.cpp
CommitLineData
7c673cae
FG
1//
2// stream_handle.cpp
3// ~~~~~~~~~~~~~~~~~
4//
92f5a8d4 5// Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11// Disable autolinking for unit tests.
12#if !defined(BOOST_ALL_NO_LIB)
13#define BOOST_ALL_NO_LIB 1
14#endif // !defined(BOOST_ALL_NO_LIB)
15
16// Test that header file is self-contained.
17#include <boost/asio/windows/stream_handle.hpp>
18
b32b8144 19#include <boost/asio/io_context.hpp>
7c673cae
FG
20#include "../archetypes/async_result.hpp"
21#include "../unit_test.hpp"
22
23//------------------------------------------------------------------------------
24
25// windows_stream_handle_compile test
26// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27// The following test checks that all public member functions on the class
28// windows::stream_handle compile and link correctly. Runtime failures are
29// ignored.
30
31namespace windows_stream_handle_compile {
32
33void write_some_handler(const boost::system::error_code&, std::size_t)
34{
35}
36
37void read_some_handler(const boost::system::error_code&, std::size_t)
38{
39}
40
41void test()
42{
43#if defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
44 using namespace boost::asio;
45 namespace win = boost::asio::windows;
46
47 try
48 {
b32b8144 49 io_context ioc;
92f5a8d4 50 const io_context::executor_type ioc_ex = ioc.get_executor();
7c673cae
FG
51 char mutable_char_buffer[128] = "";
52 const char const_char_buffer[128] = "";
53 archetypes::lazy_handler lazy;
54 boost::system::error_code ec;
55
56 // basic_stream_handle constructors.
57
b32b8144 58 win::stream_handle handle1(ioc);
7c673cae 59 HANDLE native_handle1 = INVALID_HANDLE_VALUE;
92f5a8d4
TL
60#if defined(BOOST_ASIO_MSVC) && (_MSC_VER < 1910)
61 // Skip this on older MSVC due to mysterious ambiguous overload errors.
62#else
b32b8144 63 win::stream_handle handle2(ioc, native_handle1);
92f5a8d4
TL
64#endif
65
66 win::stream_handle handle3(ioc_ex);
67 HANDLE native_handle2 = INVALID_HANDLE_VALUE;
68 win::stream_handle handle4(ioc_ex, native_handle2);
7c673cae
FG
69
70#if defined(BOOST_ASIO_HAS_MOVE)
92f5a8d4 71 win::stream_handle handle5(std::move(handle4));
7c673cae
FG
72#endif // defined(BOOST_ASIO_HAS_MOVE)
73
74 // basic_stream_handle operators.
75
76#if defined(BOOST_ASIO_HAS_MOVE)
b32b8144 77 handle1 = win::stream_handle(ioc);
92f5a8d4 78 handle1 = std::move(handle4);
7c673cae
FG
79#endif // defined(BOOST_ASIO_HAS_MOVE)
80
81 // basic_io_object functions.
82
92f5a8d4 83 windows::stream_handle::executor_type ex = handle1.get_executor();
b32b8144 84 (void)ex;
7c673cae 85
92f5a8d4 86 // basic_overlapped_handle functions.
7c673cae
FG
87
88 win::stream_handle::lowest_layer_type& lowest_layer
89 = handle1.lowest_layer();
90 (void)lowest_layer;
91
92f5a8d4 92 const win::stream_handle& handle6 = handle1;
7c673cae 93 const win::stream_handle::lowest_layer_type& lowest_layer2
92f5a8d4 94 = handle6.lowest_layer();
7c673cae
FG
95 (void)lowest_layer2;
96
92f5a8d4
TL
97 HANDLE native_handle3 = INVALID_HANDLE_VALUE;
98 handle1.assign(native_handle3);
7c673cae
FG
99
100 bool is_open = handle1.is_open();
101 (void)is_open;
102
103 handle1.close();
104 handle1.close(ec);
105
92f5a8d4 106 win::stream_handle::native_handle_type native_handle4
7c673cae 107 = handle1.native_handle();
92f5a8d4 108 (void)native_handle4;
7c673cae
FG
109
110 handle1.cancel();
111 handle1.cancel(ec);
112
113 // basic_stream_handle functions.
114
115 handle1.write_some(buffer(mutable_char_buffer));
116 handle1.write_some(buffer(const_char_buffer));
117 handle1.write_some(buffer(mutable_char_buffer), ec);
118 handle1.write_some(buffer(const_char_buffer), ec);
119
120 handle1.async_write_some(buffer(mutable_char_buffer), &write_some_handler);
121 handle1.async_write_some(buffer(const_char_buffer), &write_some_handler);
122 int i1 = handle1.async_write_some(buffer(mutable_char_buffer), lazy);
123 (void)i1;
124 int i2 = handle1.async_write_some(buffer(const_char_buffer), lazy);
125 (void)i2;
126
127 handle1.read_some(buffer(mutable_char_buffer));
128 handle1.read_some(buffer(mutable_char_buffer), ec);
129
130 handle1.async_read_some(buffer(mutable_char_buffer), &read_some_handler);
131 int i3 = handle1.async_read_some(buffer(mutable_char_buffer), lazy);
132 (void)i3;
133 }
134 catch (std::exception&)
135 {
136 }
137#endif // defined(BOOST_ASIO_HAS_WINDOWS_STREAM_HANDLE)
138}
139
140} // namespace windows_stream_handle_compile
141
142//------------------------------------------------------------------------------
143
144BOOST_ASIO_TEST_SUITE
145(
146 "windows/stream_handle",
147 BOOST_ASIO_TEST_CASE(windows_stream_handle_compile::test)
148)