2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2012-2018 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 06:11:00 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-01-29 07:38:33 -03:00
|
|
|
|
2018-10-22 19:51:11 -03:00
|
|
|
#include <util/strencodings.h>
|
2019-04-11 09:44:10 -04:00
|
|
|
#include <test/setup_common.h>
|
2012-01-29 07:38:33 -03:00
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2015-03-12 05:34:42 -03:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(base32_tests, BasicTestingSetup)
|
2012-01-29 07:38:33 -03:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base32_testvectors)
|
|
|
|
{
|
|
|
|
static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"};
|
2012-04-28 21:11:56 -03:00
|
|
|
static const std::string vstrOut[] = {"","my======","mzxq====","mzxw6===","mzxw6yq=","mzxw6ytb","mzxw6ytboi======"};
|
2012-01-29 07:38:33 -03:00
|
|
|
for (unsigned int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++)
|
|
|
|
{
|
|
|
|
std::string strEnc = EncodeBase32(vstrIn[i]);
|
2017-11-07 19:24:30 -03:00
|
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOut[i]);
|
2012-01-29 07:38:33 -03:00
|
|
|
std::string strDec = DecodeBase32(vstrOut[i]);
|
2017-11-07 19:24:30 -03:00
|
|
|
BOOST_CHECK_EQUAL(strDec, vstrIn[i]);
|
2012-01-29 07:38:33 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|