mirror of
https://github.com/boostorg/beast.git
synced 2026-01-30 02:02:23 +01:00
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
|
|
//
|
||
|
|
// Copyright (c) 2013-2017 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.
|
||
|
|
#include <beast/http/header_parser.hpp>
|
||
|
|
|
||
|
|
#include <beast/core/flat_streambuf.hpp>
|
||
|
|
#include <beast/http/read.hpp>
|
||
|
|
#include <beast/unit_test/suite.hpp>
|
||
|
|
#include <beast/test/string_istream.hpp>
|
||
|
|
#include <beast/test/yield_to.hpp>
|
||
|
|
|
||
|
|
namespace beast {
|
||
|
|
namespace http {
|
||
|
|
|
||
|
|
class header_parser_test
|
||
|
|
: public beast::unit_test::suite
|
||
|
|
, public test::enable_yield_to
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
void
|
||
|
|
testParse()
|
||
|
|
{
|
||
|
|
{
|
||
|
|
test::string_istream is{ios_,
|
||
|
|
"GET / HTTP/1.1\r\n"
|
||
|
|
"User-Agent: test\r\n"
|
||
|
|
"\r\n"
|
||
|
|
};
|
||
|
|
flat_streambuf db{1024};
|
||
|
|
header_parser<true, fields> p;
|
||
|
|
read_some(is, db, p);
|
||
|
|
BEAST_EXPECT(p.is_complete());
|
||
|
|
}
|
||
|
|
{
|
||
|
|
test::string_istream is{ios_,
|
||
|
|
"POST / HTTP/1.1\r\n"
|
||
|
|
"User-Agent: test\r\n"
|
||
|
|
"Content-Length: 1\r\n"
|
||
|
|
"\r\n"
|
||
|
|
"*"
|
||
|
|
};
|
||
|
|
flat_streambuf db{1024};
|
||
|
|
header_parser<true, fields> p;
|
||
|
|
read_some(is, db, p);
|
||
|
|
BEAST_EXPECT(! p.is_complete());
|
||
|
|
BEAST_EXPECT(p.state() == parse_state::body);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void
|
||
|
|
run() override
|
||
|
|
{
|
||
|
|
testParse();
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
BEAST_DEFINE_TESTSUITE(header_parser,http,beast);
|
||
|
|
|
||
|
|
} // http
|
||
|
|
} // beast
|
||
|
|
|