2017-07-20 08:01:46 -07:00
|
|
|
//
|
2019-02-21 07:00:31 -08:00
|
|
|
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2017-07-20 08:01:46 -07:00
|
|
|
//
|
|
|
|
|
// 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)
|
|
|
|
|
//
|
2017-07-20 13:40:34 -07:00
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
|
//
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
// Test that header file is self-contained.
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/http/dynamic_body.hpp>
|
2016-04-30 10:29:39 -04:00
|
|
|
|
2018-04-24 10:55:39 -07:00
|
|
|
#include <boost/beast/core/buffers_to_string.hpp>
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/core/ostream.hpp>
|
|
|
|
|
#include <boost/beast/http/fields.hpp>
|
|
|
|
|
#include <boost/beast/http/parser.hpp>
|
|
|
|
|
#include <boost/beast/http/read.hpp>
|
|
|
|
|
#include <boost/beast/http/write.hpp>
|
2018-11-11 14:07:55 -08:00
|
|
|
#include <boost/beast/_experimental/test/stream.hpp>
|
|
|
|
|
#include <boost/beast/_experimental/unit_test/suite.hpp>
|
2016-04-30 10:29:39 -04:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
namespace boost {
|
2016-04-30 10:29:39 -04:00
|
|
|
namespace beast {
|
|
|
|
|
namespace http {
|
|
|
|
|
|
2017-04-27 18:26:21 -07:00
|
|
|
class dynamic_body_test : public beast::unit_test::suite
|
2016-04-30 10:29:39 -04:00
|
|
|
{
|
2018-11-30 14:58:38 -08:00
|
|
|
net::io_context ioc_;
|
2016-04-30 10:29:39 -04:00
|
|
|
|
|
|
|
|
public:
|
2017-07-21 08:55:25 -07:00
|
|
|
template<bool isRequest, class Body, class Fields>
|
|
|
|
|
static
|
|
|
|
|
std::string
|
|
|
|
|
to_string(message<isRequest, Body, Fields> const& m)
|
|
|
|
|
{
|
|
|
|
|
std::stringstream ss;
|
|
|
|
|
ss << m;
|
|
|
|
|
return ss.str();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-04 05:01:50 -07:00
|
|
|
void
|
2019-07-06 18:40:31 +02:00
|
|
|
test_success()
|
2016-04-30 10:29:39 -04:00
|
|
|
{
|
2016-05-18 12:30:15 -04:00
|
|
|
std::string const s =
|
2016-04-30 10:29:39 -04:00
|
|
|
"HTTP/1.1 200 OK\r\n"
|
|
|
|
|
"Server: test\r\n"
|
|
|
|
|
"Content-Length: 3\r\n"
|
|
|
|
|
"\r\n"
|
2016-05-18 12:30:15 -04:00
|
|
|
"xyz";
|
2017-09-07 07:39:52 -07:00
|
|
|
test::stream ts(ioc_, s);
|
2017-06-03 08:56:21 -07:00
|
|
|
response_parser<dynamic_body> p;
|
2017-05-04 15:40:07 -07:00
|
|
|
multi_buffer b;
|
2017-08-15 22:20:13 -07:00
|
|
|
read(ts, b, p);
|
2016-11-20 07:32:41 -05:00
|
|
|
auto const& m = p.get();
|
2018-04-24 10:55:39 -07:00
|
|
|
BEAST_EXPECT(buffers_to_string(m.body().data()) == "xyz");
|
2017-07-25 12:35:54 -07:00
|
|
|
BEAST_EXPECT(to_string(m) == s);
|
2016-04-30 10:29:39 -04:00
|
|
|
}
|
2019-07-06 18:40:31 +02:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
test_issue1581()
|
|
|
|
|
{
|
|
|
|
|
std::string const s =
|
|
|
|
|
"HTTP/1.1 200 OK\r\n"
|
|
|
|
|
"Server: test\r\n"
|
|
|
|
|
"Content-Length: 132\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"xyzxyzxyzxyzxyzxyzxyzxyzxyzxyzxyz"
|
|
|
|
|
"xyzxyzxyzxyzxyzxyzxyzxyzxyzxyzxyz"
|
|
|
|
|
"xyzxyzxyzxyzxyzxyzxyzxyzxyzxyzxyz"
|
|
|
|
|
"xyzxyzxyzxyzxyzxyzxyzxyzxyzxyzxyz";
|
|
|
|
|
test::stream ts(ioc_, s);
|
|
|
|
|
response_parser<dynamic_body> p;
|
|
|
|
|
multi_buffer b;
|
|
|
|
|
p.get().body().max_size(64);
|
|
|
|
|
error_code ec;
|
|
|
|
|
read(ts, b, p, ec);
|
|
|
|
|
BEAST_EXPECT(ec == http::error::buffer_overflow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
run() override
|
|
|
|
|
{
|
|
|
|
|
test_success();
|
|
|
|
|
test_issue1581();
|
|
|
|
|
}
|
2016-04-30 10:29:39 -04:00
|
|
|
};
|
|
|
|
|
|
2017-08-01 17:01:57 -07:00
|
|
|
BEAST_DEFINE_TESTSUITE(beast,http,dynamic_body);
|
2016-04-30 10:29:39 -04:00
|
|
|
|
|
|
|
|
} // http
|
|
|
|
|
} // beast
|
2017-07-20 13:40:34 -07:00
|
|
|
} // boost
|