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/websocket/error.hpp>
|
2016-05-06 21:51:43 -04:00
|
|
|
|
2018-11-11 14:07:55 -08:00
|
|
|
#include <boost/beast/_experimental/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:
|
2018-01-01 13:13:43 -08:00
|
|
|
void check(error e)
|
2016-05-06 21:51:43 -04:00
|
|
|
{
|
2018-01-01 13:13:43 -08:00
|
|
|
auto const ec = make_error_code(e);
|
2018-01-01 12:16:19 -08:00
|
|
|
ec.category().name();
|
2017-07-25 12:35:54 -07:00
|
|
|
BEAST_EXPECT(! ec.message().empty());
|
2018-01-01 17:49:19 -08:00
|
|
|
BEAST_EXPECT(ec != condition::handshake_failed);
|
|
|
|
|
BEAST_EXPECT(ec != condition::protocol_violation);
|
2016-05-06 21:51:43 -04:00
|
|
|
}
|
|
|
|
|
|
2018-01-01 17:49:19 -08:00
|
|
|
void check(condition c, error e)
|
2018-01-01 13:13:43 -08:00
|
|
|
{
|
2018-01-01 17:49:19 -08:00
|
|
|
auto const ec = make_error_code(e);
|
|
|
|
|
BEAST_EXPECT(ec.category().name() != nullptr);
|
|
|
|
|
BEAST_EXPECT(! ec.message().empty());
|
|
|
|
|
BEAST_EXPECT(ec == c);
|
2018-01-01 13:13:43 -08:00
|
|
|
}
|
|
|
|
|
|
2016-05-06 21:51:43 -04:00
|
|
|
void run() override
|
|
|
|
|
{
|
2018-01-01 12:16:19 -08:00
|
|
|
check(error::closed);
|
|
|
|
|
check(error::buffer_overflow);
|
|
|
|
|
check(error::partial_deflate_block);
|
2018-01-01 17:49:19 -08:00
|
|
|
check(error::message_too_big);
|
|
|
|
|
|
|
|
|
|
check(condition::protocol_violation, error::bad_opcode);
|
|
|
|
|
check(condition::protocol_violation, error::bad_data_frame);
|
|
|
|
|
check(condition::protocol_violation, error::bad_continuation);
|
|
|
|
|
check(condition::protocol_violation, error::bad_reserved_bits);
|
|
|
|
|
check(condition::protocol_violation, error::bad_control_fragment);
|
|
|
|
|
check(condition::protocol_violation, error::bad_control_size);
|
|
|
|
|
check(condition::protocol_violation, error::bad_unmasked_frame);
|
|
|
|
|
check(condition::protocol_violation, error::bad_masked_frame);
|
|
|
|
|
check(condition::protocol_violation, error::bad_size);
|
|
|
|
|
check(condition::protocol_violation, error::bad_frame_payload);
|
|
|
|
|
check(condition::protocol_violation, error::bad_close_code);
|
|
|
|
|
check(condition::protocol_violation, error::bad_close_size);
|
|
|
|
|
check(condition::protocol_violation, error::bad_close_payload);
|
2018-01-01 13:13:43 -08:00
|
|
|
|
2018-01-01 17:49:19 -08:00
|
|
|
check(condition::handshake_failed, error::bad_http_version);
|
|
|
|
|
check(condition::handshake_failed, error::bad_method);
|
|
|
|
|
check(condition::handshake_failed, error::no_host);
|
|
|
|
|
check(condition::handshake_failed, error::no_connection);
|
|
|
|
|
check(condition::handshake_failed, error::no_connection_upgrade);
|
|
|
|
|
check(condition::handshake_failed, error::no_upgrade);
|
|
|
|
|
check(condition::handshake_failed, error::no_upgrade_websocket);
|
|
|
|
|
check(condition::handshake_failed, error::no_sec_key);
|
|
|
|
|
check(condition::handshake_failed, error::bad_sec_key);
|
|
|
|
|
check(condition::handshake_failed, error::no_sec_version);
|
|
|
|
|
check(condition::handshake_failed, error::bad_sec_version);
|
|
|
|
|
check(condition::handshake_failed, error::no_sec_accept);
|
|
|
|
|
check(condition::handshake_failed, error::bad_sec_accept);
|
|
|
|
|
check(condition::handshake_failed, error::upgrade_declined);
|
2016-05-06 21:51:43 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-08-01 17:01:57 -07:00
|
|
|
BEAST_DEFINE_TESTSUITE(beast,websocket,error);
|
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
|