mirror of
https://github.com/XRPLF/rippled.git
synced 2026-01-13 03:05:28 +00:00
This change adds `STInt32` as a new `SType` under the `STInteger` umbrella, with `SType` value `12`. This is the first and only `STInteger` type that supports negative values.
164 lines
5.9 KiB
C++
164 lines
5.9 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2025 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or 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.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <xrpl/beast/unit_test.h>
|
|
#include <xrpl/protocol/LedgerFormats.h>
|
|
#include <xrpl/protocol/Permissions.h>
|
|
#include <xrpl/protocol/STInteger.h>
|
|
#include <xrpl/protocol/TxFormats.h>
|
|
|
|
namespace ripple {
|
|
|
|
struct STInteger_test : public beast::unit_test::suite
|
|
{
|
|
void
|
|
testUInt8()
|
|
{
|
|
testcase("UInt8");
|
|
STUInt8 u8(255);
|
|
BEAST_EXPECT(u8.value() == 255);
|
|
BEAST_EXPECT(u8.getText() == "255");
|
|
BEAST_EXPECT(u8.getSType() == STI_UINT8);
|
|
BEAST_EXPECT(u8.getJson(JsonOptions::none) == 255);
|
|
|
|
// there is some special handling for sfTransactionResult
|
|
STUInt8 tr(sfTransactionResult, 0);
|
|
BEAST_EXPECT(tr.value() == 0);
|
|
BEAST_EXPECT(
|
|
tr.getText() ==
|
|
"The transaction was applied. Only final in a validated ledger.");
|
|
BEAST_EXPECT(tr.getSType() == STI_UINT8);
|
|
BEAST_EXPECT(tr.getJson(JsonOptions::none) == "tesSUCCESS");
|
|
|
|
// invalid transaction result
|
|
STUInt8 tr2(sfTransactionResult, 255);
|
|
BEAST_EXPECT(tr2.value() == 255);
|
|
BEAST_EXPECT(tr2.getText() == "255");
|
|
BEAST_EXPECT(tr2.getSType() == STI_UINT8);
|
|
BEAST_EXPECT(tr2.getJson(JsonOptions::none) == 255);
|
|
}
|
|
|
|
void
|
|
testUInt16()
|
|
{
|
|
testcase("UInt16");
|
|
STUInt16 u16(65535);
|
|
BEAST_EXPECT(u16.value() == 65535);
|
|
BEAST_EXPECT(u16.getText() == "65535");
|
|
BEAST_EXPECT(u16.getSType() == STI_UINT16);
|
|
BEAST_EXPECT(u16.getJson(JsonOptions::none) == 65535);
|
|
|
|
// there is some special handling for sfLedgerEntryType
|
|
STUInt16 let(sfLedgerEntryType, ltACCOUNT_ROOT);
|
|
BEAST_EXPECT(let.value() == ltACCOUNT_ROOT);
|
|
BEAST_EXPECT(let.getText() == "AccountRoot");
|
|
BEAST_EXPECT(let.getSType() == STI_UINT16);
|
|
BEAST_EXPECT(let.getJson(JsonOptions::none) == "AccountRoot");
|
|
|
|
// there is some special handling for sfTransactionType
|
|
STUInt16 tlt(sfTransactionType, ttPAYMENT);
|
|
BEAST_EXPECT(tlt.value() == ttPAYMENT);
|
|
BEAST_EXPECT(tlt.getText() == "Payment");
|
|
BEAST_EXPECT(tlt.getSType() == STI_UINT16);
|
|
BEAST_EXPECT(tlt.getJson(JsonOptions::none) == "Payment");
|
|
}
|
|
|
|
void
|
|
testUInt32()
|
|
{
|
|
testcase("UInt32");
|
|
STUInt32 u32(4'294'967'295u);
|
|
BEAST_EXPECT(u32.value() == 4'294'967'295u);
|
|
BEAST_EXPECT(u32.getText() == "4294967295");
|
|
BEAST_EXPECT(u32.getSType() == STI_UINT32);
|
|
BEAST_EXPECT(u32.getJson(JsonOptions::none) == 4'294'967'295u);
|
|
|
|
// there is some special handling for sfPermissionValue
|
|
STUInt32 pv(sfPermissionValue, ttPAYMENT + 1);
|
|
BEAST_EXPECT(pv.value() == ttPAYMENT + 1);
|
|
BEAST_EXPECT(pv.getText() == "Payment");
|
|
BEAST_EXPECT(pv.getSType() == STI_UINT32);
|
|
BEAST_EXPECT(pv.getJson(JsonOptions::none) == "Payment");
|
|
STUInt32 pv2(sfPermissionValue, PaymentMint);
|
|
BEAST_EXPECT(pv2.value() == PaymentMint);
|
|
BEAST_EXPECT(pv2.getText() == "PaymentMint");
|
|
BEAST_EXPECT(pv2.getSType() == STI_UINT32);
|
|
BEAST_EXPECT(pv2.getJson(JsonOptions::none) == "PaymentMint");
|
|
}
|
|
|
|
void
|
|
testUInt64()
|
|
{
|
|
testcase("UInt64");
|
|
STUInt64 u64(0xFFFFFFFFFFFFFFFFull);
|
|
BEAST_EXPECT(u64.value() == 0xFFFFFFFFFFFFFFFFull);
|
|
BEAST_EXPECT(u64.getText() == "18446744073709551615");
|
|
BEAST_EXPECT(u64.getSType() == STI_UINT64);
|
|
|
|
// By default, getJson returns hex string
|
|
auto jsonVal = u64.getJson(JsonOptions::none);
|
|
BEAST_EXPECT(jsonVal.isString());
|
|
BEAST_EXPECT(jsonVal.asString() == "ffffffffffffffff");
|
|
|
|
STUInt64 u64_2(sfMaximumAmount, 0xFFFFFFFFFFFFFFFFull);
|
|
BEAST_EXPECT(u64_2.value() == 0xFFFFFFFFFFFFFFFFull);
|
|
BEAST_EXPECT(u64_2.getText() == "18446744073709551615");
|
|
BEAST_EXPECT(u64_2.getSType() == STI_UINT64);
|
|
BEAST_EXPECT(
|
|
u64_2.getJson(JsonOptions::none) == "18446744073709551615");
|
|
}
|
|
|
|
void
|
|
testInt32()
|
|
{
|
|
testcase("Int32");
|
|
{
|
|
int const minInt32 = -2147483648;
|
|
STInt32 i32(minInt32);
|
|
BEAST_EXPECT(i32.value() == minInt32);
|
|
BEAST_EXPECT(i32.getText() == "-2147483648");
|
|
BEAST_EXPECT(i32.getSType() == STI_INT32);
|
|
BEAST_EXPECT(i32.getJson(JsonOptions::none) == minInt32);
|
|
}
|
|
|
|
{
|
|
int const maxInt32 = 2147483647;
|
|
STInt32 i32(maxInt32);
|
|
BEAST_EXPECT(i32.value() == maxInt32);
|
|
BEAST_EXPECT(i32.getText() == "2147483647");
|
|
BEAST_EXPECT(i32.getSType() == STI_INT32);
|
|
BEAST_EXPECT(i32.getJson(JsonOptions::none) == maxInt32);
|
|
}
|
|
}
|
|
|
|
void
|
|
run() override
|
|
{
|
|
testUInt8();
|
|
testUInt16();
|
|
testUInt32();
|
|
testUInt64();
|
|
testInt32();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(STInteger, protocol, ripple);
|
|
|
|
} // namespace ripple
|