//------------------------------------------------------------------------------ /* This file is part of clio: https://github.com/XRPLF/clio Copyright (c) 2023, the clio developers. Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #pragma once #include "util/TestHttpClient.hpp" #include #include #include #include #include #include #include #include #include #include #include class WebSocketSyncClient { boost::asio::io_context ioc_; boost::asio::ip::tcp::resolver resolver_{ioc_}; boost::beast::websocket::stream ws_{ioc_}; public: void connect(std::string const& host, std::string const& port, std::vector additionalHeaders = {}); void disconnect(); std::string syncPost(std::string const& body); }; class WebSocketAsyncClient { boost::beast::websocket::stream stream_; public: WebSocketAsyncClient(boost::asio::io_context& ioContext); std::optional connect( std::string const& host, std::string const& port, boost::asio::yield_context yield, std::chrono::steady_clock::duration timeout, std::vector additionalHeaders = {} ); std::optional send(boost::asio::yield_context yield, std::string_view message, std::chrono::steady_clock::duration timeout); std::expected receive(boost::asio::yield_context yield, std::chrono::steady_clock::duration timeout); void gracefulClose(boost::asio::yield_context yield, std::chrono::steady_clock::duration timeout); void close(); }; class WebServerSslSyncClient { boost::asio::io_context ioc_; std::optional>> ws_; public: void connect(std::string const& host, std::string const& port); void disconnect(); std::string syncPost(std::string const& body); };