Skip to content

Commit

Permalink
Add test for monetary value parsing
Browse files Browse the repository at this point in the history
Just-in-case sanity test for JSON spirit and AmountFromValue.
Also update rpc_format_monetary_values test to use ValueFromAmount,
so that ValueFromAmount is also tested.
  • Loading branch information
laanwj committed Oct 23, 2013
1 parent 9bd5b0b commit 840905a
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions src/test/rpc_tests.cpp
Expand Up @@ -170,12 +170,33 @@ BOOST_AUTO_TEST_CASE(rpc_rawsign)

BOOST_AUTO_TEST_CASE(rpc_format_monetary_values)
{
BOOST_CHECK(write_string(Value(0.0), false) == "0.00000000");
BOOST_CHECK(write_string(Value(1.0), false) == "1.00000000");
BOOST_CHECK(write_string(Value(0.5), false) == "0.50000000");
BOOST_CHECK(write_string(Value(0.00000001), false) == "0.00000001");
BOOST_CHECK(write_string(Value(0.17622195), false) == "0.17622195");
BOOST_CHECK(write_string(Value(0.89898989), false) == "0.89898989");
BOOST_CHECK(write_string(ValueFromAmount(0LL), false) == "0.00000000");
BOOST_CHECK(write_string(ValueFromAmount(1LL), false) == "0.00000001");
BOOST_CHECK(write_string(ValueFromAmount(17622195LL), false) == "0.17622195");
BOOST_CHECK(write_string(ValueFromAmount(50000000LL), false) == "0.50000000");
BOOST_CHECK(write_string(ValueFromAmount(89898989LL), false) == "0.89898989");
BOOST_CHECK(write_string(ValueFromAmount(100000000LL), false) == "1.00000000");
BOOST_CHECK(write_string(ValueFromAmount(2099999999999990LL), false) == "20999999.99999990");
BOOST_CHECK(write_string(ValueFromAmount(2099999999999999LL), false) == "20999999.99999999");
}

static Value ValueFromString(const std::string &str)
{
Value value;
BOOST_CHECK(read_string(str, value));
return value;
}

BOOST_AUTO_TEST_CASE(rpc_parse_monetary_values)
{
BOOST_CHECK(AmountFromValue(ValueFromString("0.00000001")) == 1LL);
BOOST_CHECK(AmountFromValue(ValueFromString("0.17622195")) == 17622195LL);
BOOST_CHECK(AmountFromValue(ValueFromString("0.5")) == 50000000LL);
BOOST_CHECK(AmountFromValue(ValueFromString("0.50000000")) == 50000000LL);
BOOST_CHECK(AmountFromValue(ValueFromString("0.89898989")) == 89898989LL);
BOOST_CHECK(AmountFromValue(ValueFromString("1.00000000")) == 100000000LL);
BOOST_CHECK(AmountFromValue(ValueFromString("20999999.9999999")) == 2099999999999990LL);
BOOST_CHECK(AmountFromValue(ValueFromString("20999999.99999999")) == 2099999999999999LL);
}

BOOST_AUTO_TEST_SUITE_END()

0 comments on commit 840905a

Please sign in to comment.