mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 08:46:46 +00:00
This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
#include <xrpl/beast/unit_test.h>
|
|
#include <xrpl/beast/unit_test/suite.h>
|
|
#include <xrpl/protocol/ApiVersion.h>
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <limits>
|
|
#include <optional>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
struct ApiVersion_test : beast::unit_test::suite
|
|
{
|
|
void
|
|
run() override
|
|
{
|
|
{
|
|
testcase("API versions invariants");
|
|
|
|
static_assert(
|
|
RPC::apiMinimumSupportedVersion <=
|
|
RPC::apiMaximumSupportedVersion);
|
|
static_assert(
|
|
RPC::apiMinimumSupportedVersion <= RPC::apiMaximumValidVersion);
|
|
static_assert(
|
|
RPC::apiMaximumSupportedVersion <= RPC::apiMaximumValidVersion);
|
|
static_assert(RPC::apiBetaVersion <= RPC::apiMaximumValidVersion);
|
|
|
|
BEAST_EXPECT(true);
|
|
}
|
|
|
|
{
|
|
// Update when we change versions
|
|
testcase("API versions");
|
|
|
|
static_assert(RPC::apiMinimumSupportedVersion >= 1);
|
|
static_assert(RPC::apiMinimumSupportedVersion < 2);
|
|
static_assert(RPC::apiMaximumSupportedVersion >= 2);
|
|
static_assert(RPC::apiMaximumSupportedVersion < 3);
|
|
static_assert(RPC::apiMaximumValidVersion >= 3);
|
|
static_assert(RPC::apiMaximumValidVersion < 4);
|
|
static_assert(RPC::apiBetaVersion >= 3);
|
|
static_assert(RPC::apiBetaVersion < 4);
|
|
|
|
BEAST_EXPECT(true);
|
|
}
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(ApiVersion, protocol, xrpl);
|
|
|
|
} // namespace test
|
|
} // namespace xrpl
|