mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
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
This commit is contained in:
parent
f670cdbba9
commit
398d53f5f5
29 changed files with 258 additions and 136 deletions
|
@ -65,6 +65,11 @@ void CookieStorageTest::testStore()
|
|||
CPPUNIT_ASSERT(!st.store(badCookie));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1, st.size());
|
||||
CPPUNIT_ASSERT(std::find(st.begin(), st.end(), anotherCookie) != st.end());
|
||||
|
||||
Cookie fromNumericHost("k", "v", "/", "192.168.1.1", false);
|
||||
CPPUNIT_ASSERT(st.store(fromNumericHost));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)2, st.size());
|
||||
CPPUNIT_ASSERT(std::find(st.begin(), st.end(), fromNumericHost) != st.end());
|
||||
}
|
||||
|
||||
void CookieStorageTest::testParseAndStore()
|
||||
|
@ -81,6 +86,11 @@ void CookieStorageTest::testParseAndStore()
|
|||
|
||||
CPPUNIT_ASSERT(!st.parseAndStore(localhostCookieStr,
|
||||
"127.0.0.1", "/downloads"));
|
||||
|
||||
std::string numericHostCookieStr = "k=v;"
|
||||
" expires=Fri, 2038-01-01 00:00:00 GMT; path=/; domain=192.168.1.1;";
|
||||
CPPUNIT_ASSERT(st.parseAndStore(numericHostCookieStr, "192.168.1.1", "/"));
|
||||
|
||||
}
|
||||
|
||||
void CookieStorageTest::testCriteriaFind()
|
||||
|
@ -94,12 +104,15 @@ void CookieStorageTest::testCriteriaFind()
|
|||
Cookie delta("delta", "DELTA", "/foo/bar", ".aria2.org", false);
|
||||
Cookie echo("echo", "ECHO", "/", "www.aria2.org", false);
|
||||
Cookie foxtrot("foxtrot", "FOXTROT", "/", ".sf.net", false);
|
||||
Cookie golf("golf", "GOLF", "/", "192.168.1.1", false);
|
||||
|
||||
CPPUNIT_ASSERT(st.store(alpha));
|
||||
CPPUNIT_ASSERT(st.store(bravo));
|
||||
CPPUNIT_ASSERT(st.store(charlie));
|
||||
CPPUNIT_ASSERT(st.store(delta));
|
||||
CPPUNIT_ASSERT(st.store(echo));
|
||||
CPPUNIT_ASSERT(st.store(foxtrot));
|
||||
CPPUNIT_ASSERT(st.store(golf));
|
||||
|
||||
std::deque<Cookie> aria2Slash = st.criteriaFind("www.aria2.org", "/",
|
||||
0, false);
|
||||
|
@ -130,6 +143,11 @@ void CookieStorageTest::testCriteriaFind()
|
|||
std::deque<Cookie> dlAria2 = st.criteriaFind("dl.aria2.org", "/", 0, false);
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1, dlAria2.size());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("alpha"), dlAria2[0].name);
|
||||
|
||||
std::deque<Cookie> numericHostCookies = st.criteriaFind("192.168.1.1", "/", 0,
|
||||
false);
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1, numericHostCookies.size());
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("golf"), numericHostCookies[0].name);
|
||||
}
|
||||
|
||||
void CookieStorageTest::testLoad()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue