Skip to content

Commit 6011fc9

Browse files
committed
a hotfix to ssl test which depends also on the length of crow version due to literal length use
1 parent 8aba54e commit 6011fc9

File tree

1 file changed

+10
-21
lines changed

1 file changed

+10
-21
lines changed

tests/ssl/ssltest.cpp

+10-21
Original file line numberDiff line numberDiff line change
@@ -42,38 +42,27 @@ TEST_CASE("SSL")
4242

4343
asio::ssl::context ctx(asio::ssl::context::sslv23);
4444

45-
asio::io_service is;
45+
asio::io_context ioc;
4646
{
47-
asio::ssl::stream<asio::ip::tcp::socket> c(is, ctx);
47+
asio::ssl::stream<asio::ip::tcp::socket> c(ioc, ctx);
4848
c.lowest_layer().connect(asio::ip::tcp::endpoint(asio::ip::address::from_string(LOCALHOST_ADDRESS), 45460));
4949

5050
c.handshake(asio::ssl::stream_base::client);
5151
c.write_some(asio::buffer(sendmsg));
5252

53-
size_t x = 0;
53+
std::string http_response;
5454
size_t y = 0;
55-
long z = 0;
5655

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);
6260
}
61+
auto start_body = http_response.find("\r\n\r\n");
62+
CHECK(start_body!=std::string::npos);
6363

64-
std::string to_test(buf);
64+
CHECK(std::string("Hello world, I'm keycrt.") == http_response.substr(start_body+4));
6565

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;
7766
c.lowest_layer().shutdown(asio::socket_base::shutdown_type::shutdown_both, ec);
7867
}
7968

0 commit comments

Comments
 (0)