diff options
| author | Gregory Maxwell <[email protected]> | 2012-06-23 19:21:13 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-06-23 19:21:13 -0700 |
| commit | 817ee0d826087d418b5f0bffcdd92429574284e2 (patch) | |
| tree | 6918d60b6fe3d56d4142ce1d59fc966320dd97a2 /src/test/base32_tests.cpp | |
| parent | Merge pull request #1503 from gmaxwell/testnet_tweaks (diff) | |
| parent | Some documentation about tor (diff) | |
| download | discoin-817ee0d826087d418b5f0bffcdd92429574284e2.tar.xz discoin-817ee0d826087d418b5f0bffcdd92429574284e2.zip | |
Merge pull request #1174 from sipa/torhs
Tor hidden service support
Diffstat (limited to 'src/test/base32_tests.cpp')
| -rw-r--r-- | src/test/base32_tests.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/base32_tests.cpp b/src/test/base32_tests.cpp new file mode 100644 index 000000000..fdf328591 --- /dev/null +++ b/src/test/base32_tests.cpp @@ -0,0 +1,20 @@ +#include <boost/test/unit_test.hpp> + +#include "util.h" + +BOOST_AUTO_TEST_SUITE(base32_tests) + +BOOST_AUTO_TEST_CASE(base32_testvectors) +{ + static const std::string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"}; + static const std::string vstrOut[] = {"","my======","mzxq====","mzxw6===","mzxw6yq=","mzxw6ytb","mzxw6ytboi======"}; + 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() |