|
| void | run () override |
| | Runs the suite.
|
| |
| template<class = void> |
| void | operator() (runner &r) |
| | Invokes the test using the specified runner.
|
| |
| template<class = void> |
| void | pass () |
| | Record a successful test condition.
|
| |
| template<class F , class String > |
| bool | except (F &&f, String const &reason) |
| |
| template<class F > |
| bool | except (F &&f) |
| |
| template<class E , class F , class String > |
| bool | except (F &&f, String const &reason) |
| |
| template<class E , class F > |
| bool | except (F &&f) |
| |
| template<class F , class String > |
| bool | unexcept (F &&f, String const &reason) |
| |
| template<class F > |
| bool | unexcept (F &&f) |
| |
| std::string const & | arg () const |
| | Return the argument associated with the runner.
|
| |
| template<class Condition , class String > |
| bool | unexpected (Condition shouldBeFalse, String const &reason) |
| |
| template<class Condition > |
| bool | unexpected (Condition shouldBeFalse) |
| |
| boost::asio::io_context & | get_io_context () |
| | Return the io_context associated with the object.
|
| |
| template<class F0 , class... FN> |
| void | yield_to (F0 &&f0, FN &&... fn) |
| | Run one or more functions, each in a coroutine.
|
| |
|
| template<class String > |
| void | fail (String const &reason, char const *file, int line) |
| | Record a failure.
|
| |
| template<class = void> |
| void | fail (std::string const &reason="") |
| |
|
| template<class Condition > |
| bool | expect (Condition const &shouldBeTrue) |
| | Evaluate a test condition.
|
| |
| template<class Condition , class String > |
| bool | expect (Condition const &shouldBeTrue, String const &reason) |
| |
| template<class Condition > |
| bool | expect (Condition const &shouldBeTrue, char const *file, int line) |
| |
| template<class Condition , class String > |
| bool | expect (Condition const &shouldBeTrue, String const &reason, char const *file, int line) |
| |
|
| auto | makeConfig (std::string const &proto, bool admin=true, bool credentials=false) |
| |
| auto | makeWSUpgrade (std::string const &host, uint16_t port) |
| |
| auto | makeHTTPRequest (std::string const &host, uint16_t port, std::string const &body, myFields const &fields) |
| |
| void | doRequest (boost::asio::yield_context &yield, boost::beast::http::request< boost::beast::http::string_body > &&req, std::string const &host, uint16_t port, bool secure, boost::beast::http::response< boost::beast::http::string_body > &resp, boost::system::error_code &ec) |
| |
| void | doWSRequest (test::jtx::Env &env, boost::asio::yield_context &yield, bool secure, boost::beast::http::response< boost::beast::http::string_body > &resp, boost::system::error_code &ec) |
| |
| void | doHTTPRequest (test::jtx::Env &env, boost::asio::yield_context &yield, bool secure, boost::beast::http::response< boost::beast::http::string_body > &resp, boost::system::error_code &ec, std::string const &body="", myFields const &fields={}) |
| |
| auto | makeAdminRequest (jtx::Env &env, std::string const &proto, std::string const &user, std::string const &password, bool subobject=false) |
| |
| void | testAdminRequest (std::string const &proto, bool admin, bool credentials) |
| |
| void | testWSClientToHttpServer (boost::asio::yield_context &yield) |
| |
| void | testStatusRequest (boost::asio::yield_context &yield) |
| |
| void | testTruncatedWSUpgrade (boost::asio::yield_context &yield) |
| |
| void | testCantConnect (std::string const &client_protocol, std::string const &server_protocol, boost::asio::yield_context &yield) |
| |
| void | testAuth (bool secure, boost::asio::yield_context &yield) |
| |
| void | testLimit (boost::asio::yield_context &yield, int limit) |
| |
| void | testWSHandoff (boost::asio::yield_context &yield) |
| |
| void | testNoRPC (boost::asio::yield_context &yield) |
| |
| void | testWSRequests (boost::asio::yield_context &yield) |
| |
| void | testAmendmentWarning (boost::asio::yield_context &yield) |
| |
| void | testAmendmentBlock (boost::asio::yield_context &yield) |
| |
| void | testRPCRequests (boost::asio::yield_context &yield) |
| |
| void | testStatusNotOkay (boost::asio::yield_context &yield) |
| |
| void | propagate_abort () |
| |
| void | spawn () |
| |
| template<class F0 , class... FN> |
| void | spawn (F0 &&f, FN &&... fn) |
| |
Definition at line 30 of file ServerStatus_test.cpp.
template<class Condition >
| bool beast::unit_test::suite::expect |
( |
Condition const & |
shouldBeTrue | ) |
|
|
inherited |
Evaluate a test condition.
This function provides improved logging by incorporating the file name and line number into the reported output on failure, as well as additional text specified by the caller.
- Parameters
-
| shouldBeTrue | The condition to test. The condition is evaluated in a boolean context. |
| reason | Optional added text to output on a failure. |
| file | The source code file where the test failed. |
| line | The source code line number where the test failed. |
- Returns
true if the test condition indicates success.
Definition at line 226 of file suite.h.
template<class F0 , class... FN>
| void beast::test::enable_yield_to::yield_to |
( |
F0 && |
f0, |
|
|
FN &&... |
fn |
|
) |
| |
|
inherited |
Run one or more functions, each in a coroutine.
This call will block until all coroutines terminate.
Each functions should have this signature:
boost::asio::yield_context yield_context
The type of yield context passed to functions.
- Parameters
-
| fn... | One or more functions to invoke. |
Definition at line 102 of file yield_to.h.