File tree 1 file changed +10
-21
lines changed
1 file changed +10
-21
lines changed Original file line number Diff line number Diff line change @@ -42,38 +42,27 @@ TEST_CASE("SSL")
42
42
43
43
asio::ssl::context ctx (asio::ssl::context::sslv23);
44
44
45
- asio::io_service is ;
45
+ asio::io_context ioc ;
46
46
{
47
- asio::ssl::stream<asio::ip::tcp::socket> c (is , ctx);
47
+ asio::ssl::stream<asio::ip::tcp::socket> c (ioc , ctx);
48
48
c.lowest_layer ().connect (asio::ip::tcp::endpoint (asio::ip::address::from_string (LOCALHOST_ADDRESS), 45460 ));
49
49
50
50
c.handshake (asio::ssl::stream_base::client);
51
51
c.write_some (asio::buffer (sendmsg));
52
52
53
- size_t x = 0 ;
53
+ std::string http_response ;
54
54
size_t y = 0 ;
55
- long z = 0 ;
56
55
57
- while (x < 121 )
58
- {
59
- y = c.read_some (asio::buffer (buf, 2048 ));
60
- x += y;
61
- buf[y] = ' \0 ' ;
56
+ asio::error_code ec{};
57
+ while (!ec) {
58
+ y = c.read_some (asio::buffer (buf, 2048 ),ec);
59
+ http_response.append (buf,y);
62
60
}
61
+ auto start_body = http_response.find (" \r\n\r\n " );
62
+ CHECK (start_body!=std::string::npos);
63
63
64
- std::string to_test (buf );
64
+ CHECK ( std::string ( " Hello world, I'm keycrt. " ) == http_response. substr (start_body+ 4 ) );
65
65
66
- if ((z = to_test.length () - 24 ) >= 0 )
67
- {
68
-
69
- CHECK (std::string (" Hello world, I'm keycrt." ) == to_test.substr (z));
70
- }
71
- else
72
- {
73
- CHECK (std::string (" Hello world, I'm keycrt." ).substr ((z * -1 )) == to_test);
74
- }
75
-
76
- asio::error_code ec;
77
66
c.lowest_layer ().shutdown (asio::socket_base::shutdown_type::shutdown_both, ec);
78
67
}
79
68
You can’t perform that action at this time.
0 commit comments