Files
boost_beast/test/beast/websocket/error.cpp

62 lines
1.7 KiB
C++
Raw Normal View History

2017-07-20 08:01:46 -07:00
//
2017-07-24 09:42:36 -07:00
// Copyright (c) 2016-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>
2017-07-20 13:40:34 -07:00
#include <boost/beast/unit_test/suite.hpp>
#include <memory>
2017-07-20 13:40:34 -07:00
namespace boost {
namespace beast {
namespace websocket {
class error_test : public unit_test::suite
{
public:
void check(error e)
{
auto const ec = make_error_code(e);
ec.category().name();
2017-07-25 12:35:54 -07:00
BEAST_EXPECT(! ec.message().empty());
#if 0
2017-07-25 12:35:54 -07:00
BEAST_EXPECT(std::addressof(ec.category()) ==
std::addressof(detail::get_error_category()));
2017-07-25 12:35:54 -07:00
BEAST_EXPECT(detail::get_error_category().equivalent(
static_cast<std::underlying_type<error>::type>(e),
ec.category().default_error_condition(
static_cast<std::underlying_type<error>::type>(e))));
2017-07-25 12:35:54 -07:00
BEAST_EXPECT(detail::get_error_category().equivalent(
ec, static_cast<std::underlying_type<error>::type>(e)));
#endif
}
void check(error e, condition c)
{
BEAST_EXPECT(error_code{e} == c);
}
void run() override
{
check(error::closed);
check(error::failed);
check(error::handshake_failed);
check(error::buffer_overflow);
check(error::partial_deflate_block);
check(error::handshake_failed, condition::handshake_failed);
}
};
2017-08-01 17:01:57 -07:00
BEAST_DEFINE_TESTSUITE(beast,websocket,error);
} // websocket
} // beast
2017-07-20 13:40:34 -07:00
} // boost