rippled
Loading...
Searching...
No Matches
WSClient_test.cpp
1//------------------------------------------------------------------------------
2/*
3 This file is part of rippled: https://github.com/ripple/rippled
4 Copyright (c) 2016 Ripple Labs Inc.
5
6 Permission to use, copy, modify, and/or distribute this software for any
7 purpose with or without fee is hereby granted, provided that the above
8 copyright notice and this permission notice appear in all copies.
9
10 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*/
18//==============================================================================
19
20#include <test/jtx.h>
21#include <test/jtx/WSClient.h>
22
23#include <xrpl/beast/unit_test.h>
24
25namespace ripple {
26namespace test {
27
29{
30public:
31 void
32 run() override
33 {
34 using namespace jtx;
35 Env env(*this);
36 auto wsc = makeWSClient(env.app().config());
37 {
38 Json::Value jv;
39 jv["streams"] = Json::arrayValue;
40 jv["streams"].append("ledger");
41 }
42 env.fund(XRP(10000), "alice");
43 env.close();
44 auto jv = wsc->getMsg(std::chrono::seconds(1));
45 pass();
46 }
47};
48
49BEAST_DEFINE_TESTSUITE(WSClient, jtx, ripple);
50
51} // namespace test
52} // namespace ripple
Represents a JSON value.
Definition json_value.h:149
Value & append(Value const &value)
Append value to array at the end.
A testsuite class.
Definition suite.h:55
void pass()
Record a successful test condition.
Definition suite.h:511
virtual Config & config()=0
void run() override
Runs the suite.
A transaction testing environment.
Definition Env.h:121
bool close(NetClock::time_point closeTime, std::optional< std::chrono::milliseconds > consensusDelay=std::nullopt)
Close and advance the ledger.
Definition Env.cpp:121
Application & app()
Definition Env.h:261
void fund(bool setDefaultRipple, STAmount const &amount, Account const &account)
Definition Env.cpp:289
@ arrayValue
array value (ordered list)
Definition json_value.h:44
XRP_t const XRP
Converts to XRP Issue or STAmount.
Definition amount.cpp:111
std::unique_ptr< WSClient > makeWSClient(Config const &cfg, bool v2, unsigned rpc_version, std::unordered_map< std::string, std::string > const &headers)
Returns a client operating through WebSockets/S.
Definition WSClient.cpp:323
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:25