| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | #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)1200000000, 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
 |