2017-07-20 08:01:46 -07:00
|
|
|
//
|
2017-02-06 20:07:03 -05:00
|
|
|
// Copyright (c) 2013-2017 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/websocket/error.hpp>
|
2016-05-06 21:51:43 -04:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/unit_test/suite.hpp>
|
2016-05-06 21:51:43 -04:00
|
|
|
#include <memory>
|
|
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
namespace boost {
|
2016-05-06 21:51:43 -04:00
|
|
|
namespace beast {
|
|
|
|
|
namespace websocket {
|
|
|
|
|
|
|
|
|
|
class error_test : public unit_test::suite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void check(char const* name, error ev)
|
|
|
|
|
{
|
|
|
|
|
auto const ec = make_error_code(ev);
|
2017-07-20 13:40:34 -07:00
|
|
|
BOOST_BEAST_EXPECT(std::string{ec.category().name()} == name);
|
|
|
|
|
BOOST_BEAST_EXPECT(! ec.message().empty());
|
|
|
|
|
BOOST_BEAST_EXPECT(std::addressof(ec.category()) ==
|
2016-05-06 21:51:43 -04:00
|
|
|
std::addressof(detail::get_error_category()));
|
2017-07-20 13:40:34 -07:00
|
|
|
BOOST_BEAST_EXPECT(detail::get_error_category().equivalent(
|
2016-10-04 18:00:11 -04:00
|
|
|
static_cast<std::underlying_type<error>::type>(ev),
|
|
|
|
|
ec.category().default_error_condition(
|
|
|
|
|
static_cast<std::underlying_type<error>::type>(ev))));
|
2017-07-20 13:40:34 -07:00
|
|
|
BOOST_BEAST_EXPECT(detail::get_error_category().equivalent(
|
2016-10-04 18:00:11 -04:00
|
|
|
ec, static_cast<std::underlying_type<error>::type>(ev)));
|
2016-05-06 21:51:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
|
{
|
2017-06-17 18:00:01 -07:00
|
|
|
check("beast.websocket", error::closed);
|
|
|
|
|
check("beast.websocket", error::failed);
|
|
|
|
|
check("beast.websocket", error::handshake_failed);
|
2017-07-15 17:05:24 -07:00
|
|
|
check("beast.websocket", error::buffer_overflow);
|
2016-05-06 21:51:43 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
BOOST_BEAST_DEFINE_TESTSUITE(error,websocket,beast);
|
2016-05-06 21:51:43 -04:00
|
|
|
|
2016-10-18 19:43:36 -04:00
|
|
|
} // websocket
|
2016-05-06 21:51:43 -04:00
|
|
|
} // beast
|
2017-07-20 13:40:34 -07:00
|
|
|
} // boost
|