Skip to content

Commit

Permalink
tests: Add tests for base58-decoding of std::string:s containing non-…
Browse files Browse the repository at this point in the history
…base58 characters
  • Loading branch information
practicalswift authored and furszy committed Jun 28, 2021
1 parent 9d481be commit 70c480c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/test/base58_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,24 @@ BOOST_AUTO_TEST_CASE(base58_DecodeBase58)
}

BOOST_CHECK(!DecodeBase58("invalid", result, 100));
BOOST_CHECK(!DecodeBase58(std::string("invalid"), result, 100));
BOOST_CHECK(!DecodeBase58(std::string("\0invalid", 8), result, 100));

BOOST_CHECK(DecodeBase58(std::string("good", 4), result, 100));
BOOST_CHECK(!DecodeBase58(std::string("bad0IOl", 7), result, 100));
BOOST_CHECK(!DecodeBase58(std::string("goodbad0IOl", 11), result, 100));
BOOST_CHECK(!DecodeBase58(std::string("good\0bad0IOl", 12), result, 100));

// check that DecodeBase58 skips whitespace, but still fails with unexpected non-whitespace at the end.
BOOST_CHECK(!DecodeBase58(" \t\n\v\f\r skip \r\f\v\n\t a", result, 3));
BOOST_CHECK( DecodeBase58(" \t\n\v\f\r skip \r\f\v\n\t ", result, 3));
std::vector<unsigned char> expected = ParseHex("971a55");
BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());

BOOST_CHECK(DecodeBase58Check(std::string("3vQB7B6MrGQZaxCuFg4oh", 21), result, 100));
BOOST_CHECK(!DecodeBase58Check(std::string("3vQB7B6MrGQZaxCuFg4oi", 21), result, 100));
BOOST_CHECK(!DecodeBase58Check(std::string("3vQB7B6MrGQZaxCuFg4oh0IOl", 25), result, 100));
BOOST_CHECK(!DecodeBase58Check(std::string("3vQB7B6MrGQZaxCuFg4oh\00IOl", 26), result, 100));
}

// Visitor to check address type
Expand Down

0 comments on commit 70c480c

Please sign in to comment.