2019-04-11 09:53:04 -04:00
|
|
|
// Copyright (c) 2011-2019 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.
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2018-10-22 19:51:11 -03:00
|
|
|
#include <util/strencodings.h>
|
2019-11-05 17:18:59 -03:00
|
|
|
#include <test/util/setup_common.h>
|
2011-09-27 14:46:57 -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(base64_tests, BasicTestingSetup)
|
2011-09-27 14:46:57 -03:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base64_testvectors)
|
|
|
|
{
|
2011-10-11 20:50:06 -03: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-08 21:48:14 -04:00
|
|
|
for (unsigned int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++)
|
2011-09-27 14:46:57 -03:00
|
|
|
{
|
2011-10-11 20:50:06 -03:00
|
|
|
std::string strEnc = EncodeBase64(vstrIn[i]);
|
2017-11-07 19:24:30 -03:00
|
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOut[i]);
|
2011-10-11 20:50:06 -03:00
|
|
|
std::string strDec = DecodeBase64(strEnc);
|
2017-11-07 19:24:30 -03:00
|
|
|
BOOST_CHECK_EQUAL(strDec, vstrIn[i]);
|
2011-09-27 14:46:57 -03:00
|
|
|
}
|
2019-12-16 06:09:17 -03:00
|
|
|
|
|
|
|
// Decoding strings with embedded NUL characters should fail
|
|
|
|
bool failure;
|
|
|
|
(void)DecodeBase64(std::string("invalid", 7), &failure);
|
|
|
|
BOOST_CHECK_EQUAL(failure, true);
|
|
|
|
(void)DecodeBase64(std::string("nQB/pZw=", 8), &failure);
|
|
|
|
BOOST_CHECK_EQUAL(failure, false);
|
|
|
|
(void)DecodeBase64(std::string("nQB/pZw=\0invalid", 16), &failure);
|
|
|
|
BOOST_CHECK_EQUAL(failure, true);
|
|
|
|
(void)DecodeBase64(std::string("nQB/pZw=invalid", 15), &failure);
|
|
|
|
BOOST_CHECK_EQUAL(failure, true);
|
2011-09-27 14:46:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|