mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-14 22:02:37 -03:00
e829c9afbf
Removes the macro ARRAYLEN and also substitutes all other uses of the same "sizeof(a)/sizeof(a[0])" pattern by std::size, available since C++17.
42 lines
1.6 KiB
C++
42 lines
1.6 KiB
C++
// Copyright (c) 2012-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <test/util/setup_common.h>
|
|
#include <util/strencodings.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <string>
|
|
|
|
using namespace std::literals;
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(base32_tests, BasicTestingSetup)
|
|
|
|
BOOST_AUTO_TEST_CASE(base32_testvectors)
|
|
{
|
|
static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"};
|
|
static const std::string vstrOut[] = {"","my======","mzxq====","mzxw6===","mzxw6yq=","mzxw6ytb","mzxw6ytboi======"};
|
|
static const std::string vstrOutNoPadding[] = {"","my","mzxq","mzxw6","mzxw6yq","mzxw6ytb","mzxw6ytboi"};
|
|
for (unsigned int i=0; i<std::size(vstrIn); i++)
|
|
{
|
|
std::string strEnc = EncodeBase32(vstrIn[i]);
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOut[i]);
|
|
strEnc = EncodeBase32(vstrIn[i], false);
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOutNoPadding[i]);
|
|
std::string strDec = DecodeBase32(vstrOut[i]);
|
|
BOOST_CHECK_EQUAL(strDec, vstrIn[i]);
|
|
}
|
|
|
|
// Decoding strings with embedded NUL characters should fail
|
|
bool failure;
|
|
(void)DecodeBase32("invalid\0"s, &failure); // correct size, invalid due to \0
|
|
BOOST_CHECK(failure);
|
|
(void)DecodeBase32("AWSX3VPP"s, &failure); // valid
|
|
BOOST_CHECK(!failure);
|
|
(void)DecodeBase32("AWSX3VPP\0invalid"s, &failure); // correct size, invalid due to \0
|
|
BOOST_CHECK(failure);
|
|
(void)DecodeBase32("AWSX3VPPinvalid"s, &failure); // invalid size
|
|
BOOST_CHECK(failure);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|