mirror of
https://github.com/XRPLF/rippled.git
synced 2026-01-19 06:05:25 +00:00
* XRPLF/develop: refactor: Rename `ripple` namespace to `xrpl` (5982) refactor: Move JobQueue and related classes into xrpl.core module (6121) refactor: Rename `rippled` binary to `xrpld` (5983)
85 lines
2.6 KiB
C++
85 lines
2.6 KiB
C++
#include <xrpld/overlay/detail/ProtocolVersion.h>
|
|
|
|
#include <xrpl/beast/unit_test.h>
|
|
|
|
namespace xrpl {
|
|
|
|
class ProtocolVersion_test : public beast::unit_test::suite
|
|
{
|
|
private:
|
|
void
|
|
check(std::string const& s, std::string const& answer)
|
|
{
|
|
auto join = [](auto first, auto last) {
|
|
std::string result;
|
|
if (first != last)
|
|
{
|
|
result = to_string(*first++);
|
|
|
|
while (first != last)
|
|
result += "," + to_string(*first++);
|
|
}
|
|
return result;
|
|
};
|
|
|
|
auto const result = parseProtocolVersions(s);
|
|
BEAST_EXPECT(join(result.begin(), result.end()) == answer);
|
|
}
|
|
|
|
public:
|
|
void
|
|
run() override
|
|
{
|
|
testcase("Convert protocol version to string");
|
|
BEAST_EXPECT(to_string(make_protocol(1, 3)) == "XRPL/1.3");
|
|
BEAST_EXPECT(to_string(make_protocol(2, 0)) == "XRPL/2.0");
|
|
BEAST_EXPECT(to_string(make_protocol(2, 1)) == "XRPL/2.1");
|
|
BEAST_EXPECT(to_string(make_protocol(10, 10)) == "XRPL/10.10");
|
|
|
|
{
|
|
testcase("Convert strings to protocol versions");
|
|
|
|
// Empty string
|
|
check("", "");
|
|
|
|
// clang-format off
|
|
check(
|
|
"RTXP/1.1,RTXP/1.2,RTXP/1.3,XRPL/2.1,XRPL/2.0,/XRPL/3.0",
|
|
"XRPL/2.0,XRPL/2.1");
|
|
check(
|
|
"RTXP/0.9,RTXP/1.01,XRPL/0.3,XRPL/2.01,websocket",
|
|
"");
|
|
check(
|
|
"XRPL/2.0,XRPL/2.0,XRPL/19.4,XRPL/7.89,XRPL/XRPL/3.0,XRPL/2.01",
|
|
"XRPL/2.0,XRPL/7.89,XRPL/19.4");
|
|
check(
|
|
"XRPL/2.0,XRPL/3.0,XRPL/4,XRPL/,XRPL,OPT XRPL/2.2,XRPL/5.67",
|
|
"XRPL/2.0,XRPL/3.0,XRPL/5.67");
|
|
// clang-format on
|
|
}
|
|
|
|
{
|
|
testcase("Protocol version negotiation");
|
|
|
|
BEAST_EXPECT(negotiateProtocolVersion("RTXP/1.2") == std::nullopt);
|
|
BEAST_EXPECT(
|
|
negotiateProtocolVersion("RTXP/1.2, XRPL/2.0, XRPL/2.1") ==
|
|
make_protocol(2, 1));
|
|
BEAST_EXPECT(
|
|
negotiateProtocolVersion("XRPL/2.2") == make_protocol(2, 2));
|
|
BEAST_EXPECT(
|
|
negotiateProtocolVersion(
|
|
"RTXP/1.2, XRPL/2.2, XRPL/2.3, XRPL/2.4, XRPL/999.999") ==
|
|
make_protocol(2, 3));
|
|
BEAST_EXPECT(
|
|
negotiateProtocolVersion("XRPL/999.999, WebSocket/1.0") ==
|
|
std::nullopt);
|
|
BEAST_EXPECT(negotiateProtocolVersion("") == std::nullopt);
|
|
}
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(ProtocolVersion, overlay, xrpl);
|
|
|
|
} // namespace xrpl
|