| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | #include "CookieParser.h"#include <fstream>#include <cppunit/extensions/HelperMacros.h>namespace aria2 {class CookieParserTest:public CppUnit::TestFixture {  CPPUNIT_TEST_SUITE(CookieParserTest);  CPPUNIT_TEST(testParse);  CPPUNIT_TEST(testParse_file);  CPPUNIT_TEST_SUITE_END();private:public:  void setUp() {  }  void testParse();    void testParse_file();};CPPUNIT_TEST_SUITE_REGISTRATION( CookieParserTest );void CookieParserTest::testParse(){  std::string str = "JSESSIONID=123456789; expires=Sun, 10-Jun-2007 11:00:00 GMT; path=/; domain=localhost; secure";  Cookie c = CookieParser().parse(str);  CPPUNIT_ASSERT(c.good());  CPPUNIT_ASSERT_EQUAL(std::string("JSESSIONID"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("123456789"), c.getValue());  CPPUNIT_ASSERT_EQUAL((time_t)1181473200, c.getExpiry());    CPPUNIT_ASSERT_EQUAL(std::string("/"), c.getPath());  CPPUNIT_ASSERT_EQUAL(std::string("localhost"), c.getDomain());  CPPUNIT_ASSERT_EQUAL(true, c.isSecureCookie());  CPPUNIT_ASSERT_EQUAL(false, c.isSessionCookie());  std::string str2 = "JSESSIONID=123456789";  c = CookieParser().parse(str2, "default.domain", "/default/path");  CPPUNIT_ASSERT(c.good());  CPPUNIT_ASSERT_EQUAL(std::string("JSESSIONID"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("123456789"), c.getValue());  CPPUNIT_ASSERT_EQUAL((time_t)0, c.getExpiry());  CPPUNIT_ASSERT_EQUAL(std::string("default.domain"), c.getDomain());  CPPUNIT_ASSERT_EQUAL(std::string("/default/path"), c.getPath());  CPPUNIT_ASSERT_EQUAL(false, c.isSecureCookie());  CPPUNIT_ASSERT_EQUAL(true, c.isSessionCookie());  std::string str3 = "";  c = CookieParser().parse(str3);  CPPUNIT_ASSERT(!c.good());  std::string str4 = "UID=300; expires=Wed, 01-Jan-1960 00:00:00 GMT";  c = CookieParser().parse(str4, "localhost", "/");  CPPUNIT_ASSERT(c.good());  CPPUNIT_ASSERT(!c.isSessionCookie());  CPPUNIT_ASSERT_EQUAL((time_t)-315619200, c.getExpiry());  std::string str5 = "k=v; expires=Sun, 10-Jun-07 11:00:00 GMT";  c = CookieParser().parse(str5);  CPPUNIT_ASSERT(c.good());  CPPUNIT_ASSERT_EQUAL(std::string("k"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("v"), c.getValue());  CPPUNIT_ASSERT_EQUAL((time_t)1181473200, c.getExpiry());  CPPUNIT_ASSERT_EQUAL(std::string(""), c.getDomain());  CPPUNIT_ASSERT_EQUAL(std::string(""), c.getPath());  CPPUNIT_ASSERT(!c.isSecureCookie());  CPPUNIT_ASSERT(!c.isSessionCookie());}void CookieParserTest::testParse_file(){  std::ifstream f("cookietest.txt");  Cookies cookies = CookieParser().parse(f);  CPPUNIT_ASSERT_EQUAL((int32_t)3, (int32_t)cookies.size());  Cookie c = cookies[0];  CPPUNIT_ASSERT_EQUAL(std::string("JSESSIONID"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("123456789"), c.getValue());  c = cookies[1];  CPPUNIT_ASSERT_EQUAL(std::string("user"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("me"), c.getValue());  c = cookies[2];  CPPUNIT_ASSERT_EQUAL(std::string("passwd"), c.getName());  CPPUNIT_ASSERT_EQUAL(std::string("secret"), c.getValue());}} // namespace aria2
 |