mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Made util::fromHex and base32::decode function template
This commit is contained in:
parent
6ea1b68db1
commit
0c162dfbfb
19 changed files with 147 additions and 127 deletions
|
@ -28,18 +28,26 @@ void Base32Test::testEncode()
|
|||
CPPUNIT_ASSERT_EQUAL(std::string("GEZDG==="), base32::encode("123"));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("GEZDGNA="), base32::encode("1234"));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("GEZDGNBV"), base32::encode("12345"));
|
||||
std::string s = "248d0a1cd08284";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("ESGQUHGQQKCA===="),
|
||||
base32::encode(util::fromHex("248d0a1cd08284")));
|
||||
base32::encode(util::fromHex(s.begin(), s.end())));
|
||||
}
|
||||
|
||||
void Base32Test::testDecode()
|
||||
{
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(), base32::decode(""));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("1"), base32::decode("GE======"));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("12"), base32::decode("GEZA===="));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("123"), base32::decode("GEZDG==="));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("1234"), base32::decode("GEZDGNA="));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("12345"), base32::decode("GEZDGNBV"));
|
||||
std::string s = "";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string(), base32::decode(s.begin(), s.end()));
|
||||
s = "GE======";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("1"), base32::decode(s.begin(), s.end()));
|
||||
s = "GEZA====";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("12"), base32::decode(s.begin(), s.end()));
|
||||
s = "GEZDG===";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("123"), base32::decode(s.begin(), s.end()));
|
||||
s = "GEZDGNA=";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("1234"), base32::decode(s.begin(), s.end()));
|
||||
s = "GEZDGNBV";
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("12345"),
|
||||
base32::decode(s.begin(), s.end()));
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue