2008-02-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Removed "using namespace std;" from all sources. Appended std:: 
prefix to c++
	standard classes.
	Included string.h where mem* function are used.
This commit is contained in:
Tatsuhiro Tsujikawa 2008-02-08 15:53:45 +00:00
parent d82e183d34
commit 1b7c198289
801 changed files with 12024 additions and 8627 deletions

View file

@ -1,6 +1,8 @@
#include "Base64.h"
#include <cppunit/extensions/HelperMacros.h>
namespace aria2 {
class Base64Test:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(Base64Test);
@ -29,53 +31,53 @@ CPPUNIT_TEST_SUITE_REGISTRATION( Base64Test );
void Base64Test::testEncode() {
unsigned char* buf = 0;
size_t len;
string s1 = "Hello World!";
std::string s1 = "Hello World!";
Base64::encode(buf, len, s1.c_str(), s1.size());
CPPUNIT_ASSERT_EQUAL(string("SGVsbG8gV29ybGQh"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("SGVsbG8gV29ybGQh"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s2 = "Hello World";
std::string s2 = "Hello World";
Base64::encode(buf, len, s2.c_str(), s2.size());
CPPUNIT_ASSERT_EQUAL(string("SGVsbG8gV29ybGQ="), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("SGVsbG8gV29ybGQ="), std::string(&buf[0], &buf[len]));
delete [] buf;
string s3 = "Hello Worl";
std::string s3 = "Hello Worl";
Base64::encode(buf, len, s3.c_str(), s3.size());
CPPUNIT_ASSERT_EQUAL(string("SGVsbG8gV29ybA=="), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("SGVsbG8gV29ybA=="), std::string(&buf[0], &buf[len]));
delete [] buf;
string s4 = "Man";
std::string s4 = "Man";
Base64::encode(buf, len, s4.c_str(), s4.size());
CPPUNIT_ASSERT_EQUAL(string("TWFu"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("TWFu"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s5 = "M";
std::string s5 = "M";
Base64::encode(buf, len, s5.c_str(), s5.size());
CPPUNIT_ASSERT_EQUAL(string("TQ=="), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("TQ=="), std::string(&buf[0], &buf[len]));
delete [] buf;
buf = 0;
string s6 = "";
std::string s6 = "";
Base64::encode(buf, len, s6.c_str(), s6.size());
CPPUNIT_ASSERT_EQUAL(string(""), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string(""), std::string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL((size_t)0, len);
CPPUNIT_ASSERT(0 == buf);
{
const char temp[] = { -1 };
Base64::encode(buf, len, temp, 1);
CPPUNIT_ASSERT_EQUAL(string("/w=="), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("/w=="), std::string(&buf[0], &buf[len]));
delete [] buf;
}
}
void Base64Test::testEncode_string()
{
string s1 = "Hello World!";
CPPUNIT_ASSERT_EQUAL(string("SGVsbG8gV29ybGQh"), Base64::encode(s1));
std::string s1 = "Hello World!";
CPPUNIT_ASSERT_EQUAL(std::string("SGVsbG8gV29ybGQh"), Base64::encode(s1));
string s2 = "";
CPPUNIT_ASSERT_EQUAL(string(""), Base64::encode(s2));
std::string s2 = "";
CPPUNIT_ASSERT_EQUAL(std::string(""), Base64::encode(s2));
@ -86,52 +88,52 @@ void Base64Test::testDecode()
unsigned char* buf;
size_t len;
string s1 = "SGVsbG8gV29ybGQh";
std::string s1 = "SGVsbG8gV29ybGQh";
Base64::decode(buf, len, s1.c_str(), s1.size());
CPPUNIT_ASSERT_EQUAL(string("Hello World!"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("Hello World!"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s2 = "SGVsbG8gV29ybGQ=";
std::string s2 = "SGVsbG8gV29ybGQ=";
Base64::decode(buf, len, s2.c_str(), s2.size());
CPPUNIT_ASSERT_EQUAL(string("Hello World"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("Hello World"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s3 = "SGVsbG8gV29ybA==";
std::string s3 = "SGVsbG8gV29ybA==";
Base64::decode(buf, len, s3.c_str(), s3.size());
CPPUNIT_ASSERT_EQUAL(string("Hello Worl"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("Hello Worl"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s4 = "TWFu";
std::string s4 = "TWFu";
Base64::decode(buf, len, s4.c_str(), s4.size());
CPPUNIT_ASSERT_EQUAL(string("Man"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("Man"), std::string(&buf[0], &buf[len]));
delete [] buf;
string s5 = "TQ==";
std::string s5 = "TQ==";
Base64::decode(buf, len, s5.c_str(), s5.size());
CPPUNIT_ASSERT_EQUAL(string("M"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("M"), std::string(&buf[0], &buf[len]));
delete [] buf;
buf = 0;
string s6 = "";
std::string s6 = "";
Base64::decode(buf, len, s6.c_str(), s6.size());
CPPUNIT_ASSERT_EQUAL(string(""), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string(""), std::string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL((size_t)0, len);
CPPUNIT_ASSERT(!buf);
string s7 = "SGVsbG8\ngV2*9ybGQ=";
std::string s7 = "SGVsbG8\ngV2*9ybGQ=";
Base64::decode(buf, len, s7.c_str(), s7.size());
CPPUNIT_ASSERT_EQUAL(string("Hello World"), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string("Hello World"), std::string(&buf[0], &buf[len]));
delete [] buf;
buf = 0;
string s8 = "SGVsbG8\ngV2*9ybGQ";
std::string s8 = "SGVsbG8\ngV2*9ybGQ";
Base64::decode(buf, len, s8.c_str(), s8.size());
CPPUNIT_ASSERT_EQUAL(string(""), string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL(std::string(""), std::string(&buf[0], &buf[len]));
CPPUNIT_ASSERT_EQUAL((size_t)0, len);
CPPUNIT_ASSERT(!buf);
{
string s = "/w==";
std::string s = "/w==";
Base64::decode(buf, len, s.c_str(), s.size());
CPPUNIT_ASSERT_EQUAL((unsigned char)-1, buf[0]);
delete [] buf;
@ -141,16 +143,16 @@ void Base64Test::testDecode()
void Base64Test::testDecode_string()
{
string s1 = "SGVsbG8gV29ybGQh";
CPPUNIT_ASSERT_EQUAL(string("Hello World!"), Base64::decode(s1));
std::string s1 = "SGVsbG8gV29ybGQh";
CPPUNIT_ASSERT_EQUAL(std::string("Hello World!"), Base64::decode(s1));
string s2 = "";
CPPUNIT_ASSERT_EQUAL(string(""), Base64::decode(s2));
std::string s2 = "";
CPPUNIT_ASSERT_EQUAL(std::string(""), Base64::decode(s2));
}
void Base64Test::testLongString()
{
string s =
std::string s =
"LyogPCEtLSBjb3B5cmlnaHQgKi8KLyoKICogYXJpYTIgLSBUaGUgaGlnaCBzcGVlZCBkb3dubG9h"
"ZCB1dGlsaXR5CiAqCiAqIENvcHlyaWdodCAoQykgMjAwNiBUYXRzdWhpcm8gVHN1amlrYXdhCiAq"
"CiAqIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBp"
@ -180,7 +182,7 @@ void Base64Test::testLongString()
"dGhpcyBleGNlcHRpb24gc3RhdGVtZW50IGZyb20gYWxsIHNvdXJjZQogKiBmaWxlcyBpbiB0aGUg"
"cHJvZ3JhbSwgdGhlbiBhbHNvIGRlbGV0ZSBpdCBoZXJlLgogKi8KLyogY29weXJpZ2h0IC0tPiAq"
"Lwo=";
string d =
std::string d =
"/* <!-- copyright */\n"
"/*\n"
" * aria2 - The high speed download utility\n"
@ -215,8 +217,8 @@ void Base64Test::testLongString()
" * files in the program, then also delete it here.\n"
" */\n"
"/* copyright --> */\n";
CPPUNIT_ASSERT_EQUAL(d,
Base64::decode(s));
CPPUNIT_ASSERT_EQUAL(s,
Base64::encode(d));
CPPUNIT_ASSERT_EQUAL(d, Base64::decode(s));
CPPUNIT_ASSERT_EQUAL(s, Base64::encode(d));
}
} // namespace aria2