2014-03-18 10:11:00 +01:00
|
|
|
// Copyright (c) 2012-2013 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-01-29 11:38:33 +01:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2012-01-29 11:38:33 +01:00
|
|
|
BOOST_AUTO_TEST_SUITE(base32_tests)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(base32_testvectors)
|
|
|
|
{
|
|
|
|
static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"};
|
2012-04-29 02:11:56 +02:00
|
|
|
static const std::string vstrOut[] = {"","my======","mzxq====","mzxw6===","mzxw6yq=","mzxw6ytb","mzxw6ytboi======"};
|
2012-01-29 11:38:33 +01:00
|
|
|
for (unsigned int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++)
|
|
|
|
{
|
|
|
|
std::string strEnc = EncodeBase32(vstrIn[i]);
|
|
|
|
BOOST_CHECK(strEnc == vstrOut[i]);
|
|
|
|
std::string strDec = DecodeBase32(vstrOut[i]);
|
|
|
|
BOOST_CHECK(strDec == vstrIn[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|