diff --git a/tests/io_test.cpp b/tests/io_test.cpp index 7caaa6f..e2a4115 100644 --- a/tests/io_test.cpp +++ b/tests/io_test.cpp @@ -38,35 +38,56 @@ int main() { }); this_thread::sleep_for(chrono::seconds(1)); - HttpClient client("localhost:8080"); - { - stringstream output; - auto r=client.request("POST", "/string", "A string"); - output << r->content.rdbuf(); - assert(output.str()=="A string"); - } + HttpClient client("localhost:8080"); - { - stringstream output; - stringstream content("A string"); - auto r=client.request("POST", "/string", content); - output << r->content.rdbuf(); - assert(output.str()=="A string"); + { + stringstream output; + auto r=client.request("POST", "/string", "A string"); + output << r->content.rdbuf(); + assert(output.str()=="A string"); + } + + { + stringstream output; + stringstream content("A string"); + auto r=client.request("POST", "/string", content); + output << r->content.rdbuf(); + assert(output.str()=="A string"); + } + + { + stringstream output; + auto r=client.request("GET", "/info", "", {{"Test Parameter", "test value"}}); + output << r->content.rdbuf(); + assert(output.str()=="GET /info 1.1 test value"); + } + + { + stringstream output; + auto r=client.request("GET", "/match/123"); + output << r->content.rdbuf(); + assert(output.str()=="123"); + } } - { - stringstream output; - auto r=client.request("GET", "/info", "", {{"Test Parameter", "test value"}}); - output << r->content.rdbuf(); - assert(output.str()=="GET /info 1.1 test value"); - } - - { - stringstream output; - auto r=client.request("GET", "/match/123"); - output << r->content.rdbuf(); - assert(output.str()=="123"); + HttpClient client("localhost:8080"); + + // test performing the stream version of the request methods first + { + stringstream output; + stringstream content("A string"); + auto r=client.request("POST", "/string", content); + output << r->content.rdbuf(); + assert(output.str()=="A string"); + } + + { + stringstream output; + auto r=client.request("POST", "/string", "A string"); + output << r->content.rdbuf(); + assert(output.str()=="A string"); + } } server.stop();