You've already forked cpp-httplib
Fix #74
This commit is contained in:
@ -643,6 +643,13 @@ TEST_F(ServerTest, InvalidPercentEncodingUnicode)
|
||||
EXPECT_EQ(404, res->status);
|
||||
}
|
||||
|
||||
TEST_F(ServerTest, EndWithPercentCharacterInQuery)
|
||||
{
|
||||
auto res = cli_.Get("/hello?aaa=bbb%");
|
||||
ASSERT_TRUE(res != nullptr);
|
||||
EXPECT_EQ(404, res->status);
|
||||
}
|
||||
|
||||
TEST_F(ServerTest, MultipartFormData)
|
||||
{
|
||||
Request req;
|
||||
|
Reference in New Issue
Block a user