2017-07-20 08:01:46 -07:00
|
|
|
//
|
|
|
|
|
// Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
|
|
|
//
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
// Test that header file is self-contained.
|
2016-05-01 11:14:10 -04:00
|
|
|
#include <beast/http/parser_v1.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-10-16 19:28:35 -04:00
|
|
|
#include <beast/core/streambuf.hpp>
|
2016-11-10 05:34:49 -05:00
|
|
|
#include <beast/http/fields.hpp>
|
|
|
|
|
#include <beast/http/header_parser_v1.hpp>
|
2016-10-16 19:28:35 -04:00
|
|
|
#include <beast/http/parse.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <beast/http/string_body.hpp>
|
2016-10-16 19:28:35 -04:00
|
|
|
#include <beast/test/string_stream.hpp>
|
|
|
|
|
#include <beast/test/yield_to.hpp>
|
2016-05-06 19:14:17 -04:00
|
|
|
#include <beast/unit_test/suite.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
namespace beast {
|
|
|
|
|
namespace http {
|
|
|
|
|
|
2016-10-16 19:28:35 -04:00
|
|
|
class parser_v1_test
|
|
|
|
|
: public beast::unit_test::suite
|
|
|
|
|
, public test::enable_yield_to
|
2017-07-20 08:01:46 -07:00
|
|
|
{
|
|
|
|
|
public:
|
2016-10-05 18:19:41 -04:00
|
|
|
void testRegressions()
|
|
|
|
|
{
|
|
|
|
|
using boost::asio::buffer;
|
|
|
|
|
|
|
|
|
|
// consecutive empty header values
|
|
|
|
|
{
|
|
|
|
|
error_code ec;
|
2016-11-10 05:34:49 -05:00
|
|
|
parser_v1<true, string_body, fields> p;
|
2016-10-05 18:19:41 -04:00
|
|
|
std::string const s =
|
|
|
|
|
"GET / HTTP/1.1\r\n"
|
|
|
|
|
"X1:\r\n"
|
|
|
|
|
"X2:\r\n"
|
|
|
|
|
"X3:x\r\n"
|
|
|
|
|
"\r\n";
|
|
|
|
|
p.write(buffer(s), ec);
|
|
|
|
|
if(! BEAST_EXPECTS(! ec, ec.message()))
|
|
|
|
|
return;
|
|
|
|
|
BEAST_EXPECT(p.complete());
|
|
|
|
|
auto const msg = p.release();
|
2016-11-10 05:34:49 -05:00
|
|
|
BEAST_EXPECT(msg.fields.exists("X1"));
|
|
|
|
|
BEAST_EXPECT(msg.fields["X1"] == "");
|
|
|
|
|
BEAST_EXPECT(msg.fields.exists("X2"));
|
|
|
|
|
BEAST_EXPECT(msg.fields["X2"] == "");
|
|
|
|
|
BEAST_EXPECT(msg.fields.exists("X3"));
|
|
|
|
|
BEAST_EXPECT(msg.fields["X3"] == "x");
|
2016-10-05 18:19:41 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-16 19:28:35 -04:00
|
|
|
void testWithBody()
|
|
|
|
|
{
|
|
|
|
|
test::string_stream ss{ios_,
|
|
|
|
|
"GET / HTTP/1.1\r\n"
|
|
|
|
|
"User-Agent: test\r\n"
|
|
|
|
|
"Content-Length: 1\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"*"};
|
|
|
|
|
streambuf rb;
|
2016-11-10 05:34:49 -05:00
|
|
|
header_parser_v1<true, fields> p0;
|
2016-10-16 19:28:35 -04:00
|
|
|
parse(ss, rb, p0);
|
2016-11-10 05:34:49 -05:00
|
|
|
request_header const& reqh = p0.get();
|
2016-10-16 19:28:35 -04:00
|
|
|
BEAST_EXPECT(reqh.method == "GET");
|
|
|
|
|
BEAST_EXPECT(reqh.url == "/");
|
|
|
|
|
BEAST_EXPECT(reqh.version == 11);
|
2016-11-10 05:34:49 -05:00
|
|
|
BEAST_EXPECT(reqh.fields["User-Agent"] == "test");
|
|
|
|
|
BEAST_EXPECT(reqh.fields["Content-Length"] == "1");
|
|
|
|
|
parser_v1<true, string_body, fields> p =
|
2016-10-16 19:28:35 -04:00
|
|
|
with_body<string_body>(p0);
|
|
|
|
|
BEAST_EXPECT(p.get().method == "GET");
|
|
|
|
|
BEAST_EXPECT(p.get().url == "/");
|
|
|
|
|
BEAST_EXPECT(p.get().version == 11);
|
2016-11-10 05:34:49 -05:00
|
|
|
BEAST_EXPECT(p.get().fields["User-Agent"] == "test");
|
|
|
|
|
BEAST_EXPECT(p.get().fields["Content-Length"] == "1");
|
2016-10-16 19:28:35 -04:00
|
|
|
parse(ss, rb, p);
|
2016-11-10 05:34:49 -05:00
|
|
|
request<string_body, fields> req = p.release();
|
2016-10-16 19:28:35 -04:00
|
|
|
BEAST_EXPECT(req.body == "*");
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
void run() override
|
|
|
|
|
{
|
2016-04-29 06:04:40 -04:00
|
|
|
using boost::asio::buffer;
|
2017-07-20 08:01:46 -07:00
|
|
|
{
|
|
|
|
|
error_code ec;
|
2016-05-01 11:14:10 -04:00
|
|
|
parser_v1<true, string_body,
|
2016-11-10 05:34:49 -05:00
|
|
|
basic_fields<std::allocator<char>>> p;
|
2017-07-20 08:01:46 -07:00
|
|
|
std::string const s =
|
|
|
|
|
"GET / HTTP/1.1\r\n"
|
|
|
|
|
"User-Agent: test\r\n"
|
|
|
|
|
"Content-Length: 1\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"*";
|
2016-04-29 06:04:40 -04:00
|
|
|
p.write(buffer(s), ec);
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(! ec);
|
|
|
|
|
BEAST_EXPECT(p.complete());
|
2017-07-20 08:01:46 -07:00
|
|
|
auto m = p.release();
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(m.method == "GET");
|
|
|
|
|
BEAST_EXPECT(m.url == "/");
|
|
|
|
|
BEAST_EXPECT(m.version == 11);
|
2016-11-10 05:34:49 -05:00
|
|
|
BEAST_EXPECT(m.fields["User-Agent"] == "test");
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(m.body == "*");
|
2017-07-20 08:01:46 -07:00
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
error_code ec;
|
2016-05-01 11:14:10 -04:00
|
|
|
parser_v1<false, string_body,
|
2016-11-10 05:34:49 -05:00
|
|
|
basic_fields<std::allocator<char>>> p;
|
2017-07-20 08:01:46 -07:00
|
|
|
std::string const s =
|
|
|
|
|
"HTTP/1.1 200 OK\r\n"
|
|
|
|
|
"Server: test\r\n"
|
|
|
|
|
"Content-Length: 1\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"*";
|
2016-04-29 06:04:40 -04:00
|
|
|
p.write(buffer(s), ec);
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(! ec);
|
|
|
|
|
BEAST_EXPECT(p.complete());
|
2017-07-20 08:01:46 -07:00
|
|
|
auto m = p.release();
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(m.status == 200);
|
|
|
|
|
BEAST_EXPECT(m.reason == "OK");
|
|
|
|
|
BEAST_EXPECT(m.version == 11);
|
2016-11-10 05:34:49 -05:00
|
|
|
BEAST_EXPECT(m.fields["Server"] == "test");
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(m.body == "*");
|
2017-07-20 08:01:46 -07:00
|
|
|
}
|
2016-06-15 11:52:59 -04:00
|
|
|
// skip body
|
|
|
|
|
{
|
|
|
|
|
error_code ec;
|
2016-11-10 05:34:49 -05:00
|
|
|
parser_v1<false, string_body, fields> p;
|
2016-06-15 11:52:59 -04:00
|
|
|
std::string const s =
|
|
|
|
|
"HTTP/1.1 200 Connection Established\r\n"
|
|
|
|
|
"Proxy-Agent: Zscaler/5.1\r\n"
|
|
|
|
|
"\r\n";
|
|
|
|
|
p.set_option(skip_body{true});
|
|
|
|
|
p.write(buffer(s), ec);
|
2016-08-03 15:34:23 -04:00
|
|
|
BEAST_EXPECT(! ec);
|
|
|
|
|
BEAST_EXPECT(p.complete());
|
2016-06-15 11:52:59 -04:00
|
|
|
}
|
2016-10-05 18:19:41 -04:00
|
|
|
|
|
|
|
|
testRegressions();
|
2016-10-16 19:28:35 -04:00
|
|
|
testWithBody();
|
2017-07-20 08:01:46 -07:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
BEAST_DEFINE_TESTSUITE(parser_v1,http,beast);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
} // http
|
|
|
|
|
} // beast
|