diff options
| author | Pieter Wuille <[email protected]> | 2011-09-27 19:46:57 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2011-09-27 19:48:10 +0200 |
| commit | e93bf37e86488e481136ca66cd0b6b17b2c2e05e (patch) | |
| tree | 2aba5c9b5286f3ac47379d360e5a95edc8928619 /src/test/base64_tests.cpp | |
| parent | Inline base64 encoder/decoder (diff) | |
| download | discoin-e93bf37e86488e481136ca66cd0b6b17b2c2e05e.tar.xz discoin-e93bf37e86488e481136ca66cd0b6b17b2c2e05e.zip | |
Test case for base64 encode/decode
Diffstat (limited to 'src/test/base64_tests.cpp')
| -rw-r--r-- | src/test/base64_tests.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/base64_tests.cpp b/src/test/base64_tests.cpp new file mode 100644 index 000000000..f30f7f893 --- /dev/null +++ b/src/test/base64_tests.cpp @@ -0,0 +1,20 @@ +#include <boost/test/unit_test.hpp> + +#include "../util.h" + +BOOST_AUTO_TEST_SUITE(base64_tests) + +BOOST_AUTO_TEST_CASE(base64_testvectors) +{ + static const string vstrIn[] = {"","f","fo","foo","foob","fooba","foobar"}; + static const string vstrOut[] = {"","Zg==","Zm8=","Zm9v","Zm9vYg==","Zm9vYmE=","Zm9vYmFy"}; + for (int i=0; i<sizeof(vstrIn)/sizeof(vstrIn[0]); i++) + { + string strEnc = EncodeBase64(vstrIn[i]); + BOOST_CHECK(strEnc == vstrOut[i]); + string strDec = DecodeBase64(strEnc); + BOOST_CHECK(strDec == vstrIn[i]); + } +} + +BOOST_AUTO_TEST_SUITE_END() |