2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <utilstrencodings.h>
|
|
|
|
#include <test/test_bitcoin.h>
|
2011-09-27 19:46:57 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2015-03-12 09:34:42 +01:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(base64_tests, BasicTestingSetup)
|
2011-09-27 19:46:57 +02:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base64_testvectors)
|
|
|
|
{
|
2011-10-12 01:50:06 +02:00
|
|
|
static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"};
|
|
|
|
static const std::string vstrOut[] = {"","Zg==","Zm8=","Zm9v","Zm9vYg==","Zm9vYmE=","Zm9vYmFy"};
|
2012-05-09 03:48:14 +02:00
|
|
|
for (unsigned int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++)
|
2011-09-27 19:46:57 +02:00
|
|
|
{
|
2011-10-12 01:50:06 +02:00
|
|
|
std::string strEnc = EncodeBase64(vstrIn[i]);
|
2017-11-07 23:24:30 +01:00
|
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOut[i]);
|
2011-10-12 01:50:06 +02:00
|
|
|
std::string strDec = DecodeBase64(strEnc);
|
2017-11-07 23:24:30 +01:00
|
|
|
BOOST_CHECK_EQUAL(strDec, vstrIn[i]);
|
2011-09-27 19:46:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|