2011-09-27 19:46:57 +02:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2011-10-12 01:50:06 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "wallet.h"
|
|
|
|
#include "util.h"
|
2011-09-27 19:46:57 +02:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(base64_tests)
|
|
|
|
|
|
|
|
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]);
|
2011-09-27 19:46:57 +02:00
|
|
|
BOOST_CHECK(strEnc == vstrOut[i]);
|
2011-10-12 01:50:06 +02:00
|
|
|
std::string strDec = DecodeBase64(strEnc);
|
2011-09-27 19:46:57 +02:00
|
|
|
BOOST_CHECK(strDec == vstrIn[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|