aria2/test/Sqlite3MozCookieParserTest.cc
Tatsuhiro Tsujikawa 398d53f5f5 2008-09-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Use CookieStorage class instead of CookieBox class.
	Now CookieStorage accepts cookies from numeric host such as 
192.168.1.1.
	* src/AbstractProxyRequestCommand.cc
	* src/CookieStorage.cc
	* src/DownloadEngine.cc
	* src/DownloadEngine.h
	* src/HttpConnection.cc
	* src/HttpConnection.h
	* src/HttpRequest.cc
	* src/HttpRequest.h
	* src/HttpRequestCommand.cc
	* src/HttpResponse.cc
	* src/HttpResponseCommand.cc
	* src/HttpSkipResponseCommand.cc
	* src/Makefile.am
	* src/MultiUrlRequestInfo.cc
	* src/Request.cc
	* src/Request.h
	* src/main.cc
	* test/AllTest.cc
	* test/CookieStorageTest.cc
	* test/CookieTest.cc
	* test/HttpRequestTest.cc
	* test/HttpResponseTest.cc
	* test/Makefile.am
	* test/NsCookieParserTest.cc
	* test/Sqlite3MozCookieParserTest.cc
	* test/nscookietest.txt
2008-09-01 13:46:03 +00:00

84 lines
2.5 KiB
C++

#include "Sqlite3MozCookieParser.h"
#include "RecoverableException.h"
#include "Util.h"
#include <iostream>
#include <cppunit/extensions/HelperMacros.h>
namespace aria2 {
class Sqlite3MozCookieParserTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(Sqlite3MozCookieParserTest);
CPPUNIT_TEST(testParse);
CPPUNIT_TEST(testParse_fileNotFound);
CPPUNIT_TEST(testParse_badfile);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void testParse();
void testParse_fileNotFound();
void testParse_badfile();
};
CPPUNIT_TEST_SUITE_REGISTRATION(Sqlite3MozCookieParserTest);
void Sqlite3MozCookieParserTest::testParse()
{
Sqlite3MozCookieParser parser;
std::deque<Cookie> cookies = parser.parse("cookies.sqlite");
CPPUNIT_ASSERT_EQUAL((size_t)3, cookies.size());
const Cookie& localhost = cookies[0];
CPPUNIT_ASSERT_EQUAL(std::string("localhost"), localhost.domain);
CPPUNIT_ASSERT_EQUAL(std::string("/"), localhost.path);
CPPUNIT_ASSERT_EQUAL(std::string("JSESSIONID"), localhost.name);
CPPUNIT_ASSERT_EQUAL(std::string("123456789"), localhost.value);
CPPUNIT_ASSERT_EQUAL((time_t)INT32_MAX, localhost.expires);
CPPUNIT_ASSERT_EQUAL(true, localhost.secure);
const Cookie& nullValue = cookies[1];
CPPUNIT_ASSERT_EQUAL(std::string("null_value"), nullValue.domain);
CPPUNIT_ASSERT_EQUAL(std::string("/path/to"), nullValue.path);
CPPUNIT_ASSERT_EQUAL(std::string("uid"), nullValue.name);
CPPUNIT_ASSERT_EQUAL(std::string(""), nullValue.value);
CPPUNIT_ASSERT_EQUAL((time_t)0, nullValue.expires);
CPPUNIT_ASSERT_EQUAL(false, nullValue.secure);
// See row id=3 has no name, so it is skipped.
const Cookie& overflowTime = cookies[2];
CPPUNIT_ASSERT_EQUAL(std::string("overflow_time_t"), overflowTime.domain);
CPPUNIT_ASSERT_EQUAL(std::string("/path/to"), overflowTime.path);
CPPUNIT_ASSERT_EQUAL(std::string("foo"), overflowTime.name);
CPPUNIT_ASSERT_EQUAL(std::string("bar"), overflowTime.value);
CPPUNIT_ASSERT_EQUAL((time_t)INT32_MAX, overflowTime.expires);
CPPUNIT_ASSERT_EQUAL(false, overflowTime.secure);
}
void Sqlite3MozCookieParserTest::testParse_fileNotFound()
{
Sqlite3MozCookieParser parser;
try {
parser.parse("fileNotFound");
CPPUNIT_FAIL("exception must be thrown.");
} catch(RecoverableException& e) {
// SUCCESS
}
}
void Sqlite3MozCookieParserTest::testParse_badfile()
{
Sqlite3MozCookieParser parser;
try {
parser.parse("badcookies.sqlite");
CPPUNIT_FAIL("exception must be thrown.");
} catch(RecoverableException& e) {
// SUCCESS
}
}
} // namespace aria2