//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2024 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 #include #include #include #include #include namespace ripple { struct STNumber_test : public beast::unit_test::suite { void testCombo(Number number) { STNumber const before{sfNumber, number}; BEAST_EXPECT(number == before); Serializer s; before.add(s); BEAST_EXPECT(s.size() == 12); SerialIter sit(s.slice()); STNumber const after{sit, sfNumber}; BEAST_EXPECT(after.isEquivalent(before)); BEAST_EXPECT(number == after); } void run() override { static_assert(!std::is_convertible_v); { STNumber const stnum{sfNumber}; BEAST_EXPECT(stnum.getSType() == STI_NUMBER); BEAST_EXPECT(stnum.getText() == "0"); BEAST_EXPECT(stnum.isDefault() == true); BEAST_EXPECT(stnum.value() == Number{0}); } std::initializer_list const mantissas = { std::numeric_limits::min(), -1, 0, 1, std::numeric_limits::max()}; for (std::int64_t mantissa : mantissas) testCombo(Number{mantissa}); std::initializer_list const exponents = { Number::minExponent, -1, 0, 1, Number::maxExponent - 1}; for (std::int32_t exponent : exponents) testCombo(Number{123, exponent}); { STAmount const strikePrice{noIssue(), 100}; STNumber const factor{sfNumber, 100}; auto const iouValue = strikePrice.iou(); IOUAmount totalValue{iouValue * factor}; STAmount const totalAmount{totalValue, strikePrice.issue()}; BEAST_EXPECT(totalAmount == Number{10'000}); } } }; BEAST_DEFINE_TESTSUITE(STNumber, protocol, ripple); void testCompile(std::ostream& out) { STNumber number{sfNumber, 42}; out << number; } } // namespace ripple