2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2011-2020 The Bitcoin Core developers
|
2014-12-13 12:09:33 +08: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 00:13:08 -05:00
|
|
|
|
2020-04-16 13:11:54 -04:00
|
|
|
#include <util/strencodings.h>
|
2011-09-27 19:46:57 +02:00
|
|
|
|
2013-04-13 00:13:08 -05:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2020-09-23 08:40:38 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std::literals;
|
2013-04-13 00:13:08 -05:00
|
|
|
|
2021-05-26 20:01:54 +08:00
|
|
|
BOOST_AUTO_TEST_SUITE(base64_tests)
|
2011-09-27 19:46:57 +02:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base64_testvectors)
|
|
|
|
{
|
2011-10-11 19:50:06 -04:00
|
|
|
static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"};
|
|
|
|
static const std::string vstrOut[] = {"","Zg==","Zm8=","Zm9v","Zm9vYg==","Zm9vYmE=","Zm9vYmFy"};
|
2020-11-20 00:14:32 +01:00
|
|
|
for (unsigned int i=0; i<std::size(vstrIn); i++)
|
2011-09-27 19:46:57 +02:00
|
|
|
{
|
2011-10-11 19:50:06 -04:00
|
|
|
std::string strEnc = EncodeBase64(vstrIn[i]);
|
2017-11-07 14:24:30 -08:00
|
|
|
BOOST_CHECK_EQUAL(strEnc, vstrOut[i]);
|
2011-10-11 19:50:06 -04:00
|
|
|
std::string strDec = DecodeBase64(strEnc);
|
2017-11-07 14:24:30 -08:00
|
|
|
BOOST_CHECK_EQUAL(strDec, vstrIn[i]);
|
2011-09-27 19:46:57 +02:00
|
|
|
}
|
2019-12-16 09:09:17 +00:00
|
|
|
|
2021-11-04 09:03:04 +01:00
|
|
|
{
|
|
|
|
const std::vector<uint8_t> in_u{0xff, 0x01, 0xff};
|
|
|
|
const std::vector<std::byte> in_b{std::byte{0xff}, std::byte{0x01}, std::byte{0xff}};
|
|
|
|
const std::string in_s{"\xff\x01\xff"};
|
|
|
|
const std::string out_exp{"/wH/"};
|
|
|
|
BOOST_CHECK_EQUAL(EncodeBase64(in_u), out_exp);
|
|
|
|
BOOST_CHECK_EQUAL(EncodeBase64(in_b), out_exp);
|
|
|
|
BOOST_CHECK_EQUAL(EncodeBase64(in_s), out_exp);
|
|
|
|
}
|
|
|
|
|
2019-12-16 09:09:17 +00:00
|
|
|
// Decoding strings with embedded NUL characters should fail
|
|
|
|
bool failure;
|
2020-09-23 08:40:38 +02:00
|
|
|
(void)DecodeBase64("invalid\0"s, &failure);
|
|
|
|
BOOST_CHECK(failure);
|
|
|
|
(void)DecodeBase64("nQB/pZw="s, &failure);
|
|
|
|
BOOST_CHECK(!failure);
|
|
|
|
(void)DecodeBase64("nQB/pZw=\0invalid"s, &failure);
|
|
|
|
BOOST_CHECK(failure);
|
|
|
|
(void)DecodeBase64("nQB/pZw=invalid\0"s, &failure);
|
|
|
|
BOOST_CHECK(failure);
|
2011-09-27 19:46:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|