Moved invalid base64 implementation to another namespace

This commit is contained in:
Alex Zolotarev 2012-12-14 14:13:02 +01:00 committed by Alex Zolotarev
parent fc00349a4d
commit 98372ba583
5 changed files with 64 additions and 6 deletions

View file

@ -8,7 +8,9 @@ using namespace boost::archive::iterators;
typedef base64_from_binary<transform_width<string::const_iterator, 6, 8> > base64_t;
typedef transform_width<binary_from_base64<string::const_iterator>, 8, 6 > binary_t;
namespace base64
/// This namespace contains historically invalid implementation of base64,
/// but it's still needed for production code
namespace base64_for_user_ids
{
string encode(string rawBytes)
{

View file

@ -2,8 +2,12 @@
#include "../std/string.hpp"
namespace base64
/// This namespace contains historically invalid implementation of base64,
/// but it's still needed for production code
namespace base64_for_user_ids
{
string encode(string rawBytes);
string decode(string const & base64Chars);
string encode(string rawBytes);
string decode(string const & base64Chars);
}

View file

@ -0,0 +1,52 @@
#include "../../testing/testing.hpp"
#include "../../base/logging.hpp"
#include "../../base/pseudo_random.hpp"
#include "../base64.hpp"
using namespace base64_for_user_ids;
UNIT_TEST(Base64_Encode_User_Ids)
{
TEST_EQUAL(encode("Hello, world!"), "SGVsbG8sIHdvcmxkITAw", ());
TEST_EQUAL(encode(""), "", ());
TEST_EQUAL(encode("$"), "JDAw", ());
TEST_EQUAL(encode("MapsWithMe is an offline maps application for any device in the world."),
"TWFwc1dpdGhNZSBpcyBhbiBvZmZsaW5lIG1hcHMgYXBwbGljYXRpb24gZm9yIGFueSBkZXZpY2Ug"
"aW4gdGhlIHdvcmxkLjAw", ());
}
UNIT_TEST(Base64_Decode_User_Ids)
{
TEST_EQUAL(decode("SGVsbG8sIHdvcmxkIQ"), "Hello, world!", ());
TEST_EQUAL(decode(""), "", ());
TEST_EQUAL(decode("JA"), "$", ());
TEST_EQUAL(decode("TWFwc1dpdGhNZSBpcyBhbiBvZmZsaW5lIG1hcHMgYXBwbGljYXRpb24gZm9yIGFueSBkZXZpY2Ug"
"aW4gdGhlIHdvcmxkLg"),
"MapsWithMe is an offline maps application for any device in the world.", ());
}
UNIT_TEST(Base64_QualityTest_User_Ids)
{
size_t const NUMBER_OF_TESTS = 10000;
LCG32 generator(NUMBER_OF_TESTS);
for (size_t i = 0; i < NUMBER_OF_TESTS; ++i)
{
string randomBytes;
for (size_t j = 0 ; j < 8; ++j)
{
if (j == 4)
{
randomBytes.push_back('\0');
continue;
}
randomBytes.push_back(static_cast<char>(generator.Generate()));
}
string const result = encode(randomBytes);
TEST_GREATER_OR_EQUAL(result.size(), randomBytes.size(),
(randomBytes, result));
for (size_t i = 0; i < result.size(); ++i)
TEST_NOT_EQUAL(result[i], 0, ());
}
}

View file

@ -32,7 +32,7 @@ SOURCES += ../../testing/testingmain.cpp \
gzip_test.cpp \
coder_util_test.cpp \
bit_shift_test.cpp \
base64_test.cpp \
base64_for_user_id_test.cpp \
sha2_test.cpp \
value_opt_string_test.cpp \
multilang_utf8_string_test.cpp \

View file

@ -28,7 +28,7 @@ string Platform::HashUniqueID(string const & s)
for (size_t i = 0; i < offset; ++i)
xoredHash.push_back(hash[i] ^ hash[i + offset] ^ hash[i + offset * 2] ^ hash[i + offset * 3]);
// and use base64 encoding
return base64::encode(xoredHash);
return base64_for_user_ids::encode(xoredHash);
}
string Platform::ResourcesMetaServerUrl() const