Files
beast/test/http/dynamic_body.cpp
Vinnie Falco 00667f3cf2 Rename to parser (API Change):
* message_parser is renamed to parser
2017-07-20 08:12:18 -07:00

52 lines
1.3 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/dynamic_body.hpp>
#include <beast/core/ostream.hpp>
#include <beast/http/fields.hpp>
#include <beast/http/parser.hpp>
#include <beast/http/read.hpp>
#include <beast/http/write.hpp>
#include <beast/test/string_istream.hpp>
#include <beast/unit_test/suite.hpp>
#include <boost/lexical_cast.hpp>
namespace beast {
namespace http {
class dynamic_body_test : public beast::unit_test::suite
{
boost::asio::io_service ios_;
public:
void
run() override
{
std::string const s =
"HTTP/1.1 200 OK\r\n"
"Server: test\r\n"
"Content-Length: 3\r\n"
"\r\n"
"xyz";
test::string_istream ss(ios_, s);
response_parser<dynamic_body> p;
multi_buffer b;
read(ss, b, p);
auto const& m = p.get();
BEAST_EXPECT(boost::lexical_cast<std::string>(
buffers(m.body.data())) == "xyz");
BEAST_EXPECT(boost::lexical_cast<std::string>(m) == s);
}
};
BEAST_DEFINE_TESTSUITE(dynamic_body,http,beast);
} // http
} // beast