Add some tests for cookies.
* Mostly extracted from Opera cookie testsuite. * Shows one bug with parsing expiration date of cookies in ExpirationTest.
This commit is contained in:
parent
258817720c
commit
295a23a4e3
440
src/tests/kits/net/url/CookieTest.cpp
Normal file
440
src/tests/kits/net/url/CookieTest.cpp
Normal file
@ -0,0 +1,440 @@
|
||||
/*
|
||||
* Copyright 2014, Haiku, inc.
|
||||
* Distributed under the terms of the MIT licence
|
||||
*/
|
||||
|
||||
|
||||
#include "CookieTest.h"
|
||||
|
||||
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
|
||||
#include <NetworkKit.h>
|
||||
|
||||
#include <cppunit/TestCaller.h>
|
||||
#include <cppunit/TestSuite.h>
|
||||
|
||||
|
||||
CookieTest::CookieTest()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
CookieTest::~CookieTest()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::SimpleTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
char buffer[256];
|
||||
BUrl url("http://www.chipchapin.com/WebTools/cookietest.php");
|
||||
|
||||
time_t t = time(NULL) + 6400; // Cookies expire in 1h45
|
||||
struct tm* now = gmtime(&t);
|
||||
status_t result;
|
||||
|
||||
// Add various cookies
|
||||
result = jar.AddCookie("testcookie1=present;", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
strftime(buffer, sizeof(buffer),
|
||||
"testcookie2=present; expires=%A, %d-%b-%Y %H:%M:%S", now);
|
||||
result = jar.AddCookie(buffer, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
strftime(buffer, sizeof(buffer),
|
||||
"testcookie3=present; expires=%A, %d-%b-%Y %H:%M:%S; path=/", now);
|
||||
result = jar.AddCookie(buffer, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
t += 3200; // expire in 2h40
|
||||
now = gmtime(&t);
|
||||
strftime(buffer, sizeof(buffer),
|
||||
"testcookie4=present; path=/; domain=www.chipchapin.com; "
|
||||
"expires=%A, %d-%b-%Y %H:%M:%S", now);
|
||||
result = jar.AddCookie(buffer, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
// Now check they were all properly added
|
||||
BNetworkCookieJar::Iterator it = jar.GetIterator();
|
||||
|
||||
int count = 0;
|
||||
while (it.HasNext()) {
|
||||
count ++;
|
||||
it.Next();
|
||||
}
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(4, count);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::StandardTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/001.php");
|
||||
result = jar.AddCookie("001=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/001-1.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "001");
|
||||
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
|
||||
CPPUNIT_ASSERT(cookie->HasValue());
|
||||
CPPUNIT_ASSERT_EQUAL(BString("1"), cookie->Value());
|
||||
CPPUNIT_ASSERT(cookie->IsSessionCookie());
|
||||
CPPUNIT_ASSERT(cookie->ShouldDeleteAtExit());
|
||||
|
||||
CPPUNIT_ASSERT(!cookie->HasExpirationDate());
|
||||
CPPUNIT_ASSERT(!cookie->Secure());
|
||||
CPPUNIT_ASSERT(!cookie->HttpOnly());
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::ExpireTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/003.php");
|
||||
result = jar.AddCookie("003=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/003-1.php");
|
||||
result = jar.AddCookie("003=1; expires=Thu, 01-Jan-1970 00:00:10 GMT", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/003-2.php");
|
||||
// The cookie should be expired.
|
||||
CPPUNIT_ASSERT(_GetCookie(jar, url, "003") == NULL);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::PathTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/004/004.php");
|
||||
result = jar.AddCookie("004=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
// Page in the same path can access the cookie
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/004/004-1.php");
|
||||
CPPUNIT_ASSERT(_GetCookie(jar, url, "004") != NULL);
|
||||
|
||||
// Page in parent directory cannot access the cookie
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/004-2.php");
|
||||
CPPUNIT_ASSERT(_GetCookie(jar, url, "004") == NULL);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::MaxSizeTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
static const char* bigdata = "XXXXXXXX10XXXXXXXX20XXXXXXXX30XXXXXXXX40"
|
||||
"XXXXXXXX50XXXXXXXX60XXXXXXXX70XXXXXXXX80XXXXXXXX90XXXXXXX100"
|
||||
"XXXXXXX110XXXXXXX120XXXXXXX130XXXXXXX140XXXXXXX150XXXXXXX160"
|
||||
"XXXXXXX170XXXXXXX180XXXXXXX190XXXXXXX200XXXXXXX210XXXXXXX220"
|
||||
"XXXXXXX230XXXXXXX240XXXXXXX250XXXXXXX260XXXXXXX270XXXXXXX280"
|
||||
"XXXXXXX290XXXXXXX300XXXXXXX310XXXXXXX320XXXXXXX330XXXXXXX340"
|
||||
"XXXXXXX350XXXXXXX360XXXXXXX370XXXXXXX380XXXXXXX390XXXXXXX400"
|
||||
"XXXXXXX410XXXXXXX420XXXXXXX430XXXXXXX440XXXXXXX450XXXXXXX460"
|
||||
"XXXXXXX470XXXXXXX480XXXXXXX490XXXXXXX500XXXXXXX510XXXXXXX520"
|
||||
"XXXXXXX530XXXXXXX540XXXXXXX550XXXXXXX560XXXXXXX570XXXXXXX580"
|
||||
"XXXXXXX590XXXXXXX600XXXXXXX610XXXXXXX620XXXXXXX630XXXXXXX640"
|
||||
"XXXXXXX650XXXXXXX660XXXXXXX670XXXXXXX680XXXXXXX690XXXXXXX700"
|
||||
"XXXXXXX710XXXXXXX720XXXXXXX730XXXXXXX740XXXXXXX750XXXXXXX760"
|
||||
"XXXXXXX770XXXXXXX780XXXXXXX790XXXXXXX800XXXXXXX810XXXXXXX820"
|
||||
"XXXXXXX830XXXXXXX840XXXXXXX850XXXXXXX860XXXXXXX870XXXXXXX880"
|
||||
"XXXXXXX890XXXXXXX900XXXXXXX910XXXXXXX920XXXXXXX930XXXXXXX940"
|
||||
"XXXXXXX950XXXXXXX960XXXXXXX970XXXXXXX980XXXXXXX990XXXXXX1000"
|
||||
"XXXXXX1010XXXXXX1020XXXXXX1030XXXXXX1040XXXXXX1050XXXXXX1060"
|
||||
"XXXXXX1070XXXXXX1080XXXXXX1090XXXXXX1100XXXXXX1110XXXXXX1120"
|
||||
"XXXXXX1130XXXXXX1140XXXXXX1150XXXXXX1160XXXXXX1170XXXXXX1180"
|
||||
"XXXXXX1190XXXXXX1200XXXXXX1210XXXXXX1220XXXXXX1230XXXXXX1240"
|
||||
"XXXXXX1250XXXXXX1260XXXXXX1270XXXXXX1280XXXXXX1290XXXXXX1300"
|
||||
"XXXXXX1310XXXXXX1320XXXXXX1330XXXXXX1340XXXXXX1350XXXXXX1360"
|
||||
"XXXXXX1370XXXXXX1380XXXXXX1390XXXXXX1400XXXXXX1410XXXXXX1420"
|
||||
"XXXXXX1430XXXXXX1440XXXXXX1450XXXXXX1460XXXXXX1470XXXXXX1480"
|
||||
"XXXXXX1490XXXXXX1500XXXXXX1510XXXXXX1520XXXXXX1530XXXXXX1540"
|
||||
"XXXXXX1550XXXXXX1560XXXXXX1570XXXXXX1580XXXXXX1590XXXXXX1600"
|
||||
"XXXXXX1610XXXXXX1620XXXXXX1630XXXXXX1640XXXXXX1650XXXXXX1660"
|
||||
"XXXXXX1670XXXXXX1680XXXXXX1690XXXXXX1700XXXXXX1710XXXXXX1720"
|
||||
"XXXXXX1730XXXXXX1740XXXXXX1750XXXXXX1760XXXXXX1770XXXXXX1780"
|
||||
"XXXXXX1790XXXXXX1800XXXXXX1810XXXXXX1820XXXXXX1830XXXXXX1840"
|
||||
"XXXXXX1850XXXXXX1860XXXXXX1870XXXXXX1880XXXXXX1890XXXXXX1900"
|
||||
"XXXXXX1910XXXXXX1920XXXXXX1930XXXXXX1940XXXXXX1950XXXXXX1960"
|
||||
"XXXXXX1970XXXXXX1980XXXXXX1990XXXXXX2000XXXXXX2010XXXXXX2020"
|
||||
"XXXXXX2030XXXXXX2040XXXXXX2050XXXXXX2060XXXXXX2070XXXXXX2080"
|
||||
"XXXXXX2090XXXXXX2100XXXXXX2110XXXXXX2120XXXXXX2130XXXXXX2140"
|
||||
"XXXXXX2150XXXXXX2160XXXXXX2170XXXXXX2180XXXXXX2190XXXXXX2200"
|
||||
"XXXXXX2210XXXXXX2220XXXXXX2230XXXXXX2240XXXXXX2250XXXXXX2260"
|
||||
"XXXXXX2270XXXXXX2280XXXXXX2290XXXXXX2300XXXXXX2310XXXXXX2320"
|
||||
"XXXXXX2330XXXXXX2340XXXXXX2350XXXXXX2360XXXXXX2370XXXXXX2380"
|
||||
"XXXXXX2390XXXXXX2400XXXXXX2410XXXXXX2420XXXXXX2430XXXXXX2440"
|
||||
"XXXXXX2450XXXXXX2460XXXXXX2470XXXXXX2480XXXXXX2490XXXXXX2500"
|
||||
"XXXXXX2510XXXXXX2520XXXXXX2530XXXXXX2540XXXXXX2550XXXXXX2560"
|
||||
"XXXXXX2570XXXXXX2580XXXXXX2590XXXXXX2600XXXXXX2610XXXXXX2620"
|
||||
"XXXXXX2630XXXXXX2640XXXXXX2650XXXXXX2660XXXXXX2670XXXXXX2680"
|
||||
"XXXXXX2690XXXXXX2700XXXXXX2710XXXXXX2720XXXXXX2730XXXXXX2740"
|
||||
"XXXXXX2750XXXXXX2760XXXXXX2770XXXXXX2780XXXXXX2790XXXXXX2800"
|
||||
"XXXXXX2810XXXXXX2820XXXXXX2830XXXXXX2840XXXXXX2850XXXXXX2860"
|
||||
"XXXXXX2870XXXXXX2880XXXXXX2890XXXXXX2900XXXXXX2910XXXXXX2920"
|
||||
"XXXXXX2930XXXXXX2940XXXXXX2950XXXXXX2960XXXXXX2970XXXXXX2980"
|
||||
"XXXXXX2990XXXXXX3000XXXXXX3010XXXXXX3020XXXXXX3030XXXXXX3040"
|
||||
"XXXXXX3050XXXXXX3060XXXXXX3070XXXXXX3080XXXXXX3090XXXXXX3100"
|
||||
"XXXXXX3110XXXXXX3120XXXXXX3130XXXXXX3140XXXXXX3150XXXXXX3160"
|
||||
"XXXXXX3170XXXXXX3180XXXXXX3190XXXXXX3200XXXXXX3210XXXXXX3220"
|
||||
"XXXXXX3230XXXXXX3240XXXXXX3250XXXXXX3260XXXXXX3270XXXXXX3280"
|
||||
"XXXXXX3290XXXXXX3300XXXXXX3310XXXXXX3320XXXXXX3330XXXXXX3340"
|
||||
"XXXXXX3350XXXXXX3360XXXXXX3370XXXXXX3380XXXXXX3390XXXXXX3400"
|
||||
"XXXXXX3410XXXXXX3420XXXXXX3430XXXXXX3440XXXXXX3450XXXXXX3460"
|
||||
"XXXXXX3470XXXXXX3480XXXXXX3490XXXXXX3500XXXXXX3510XXXXXX3520"
|
||||
"XXXXXX3530XXXXXX3540XXXXXX3550XXXXXX3560XXXXXX3570XXXXXX3580"
|
||||
"XXXXXX3590XXXXXX3600XXXXXX3610XXXXXX3620XXXXXX3630XXXXXX3640"
|
||||
"XXXXXX3650XXXXXX3660XXXXXX3670XXXXXX3680XXXXXX3690XXXXXX3700"
|
||||
"XXXXXX3710XXXXXX3720XXXXXX3730XXXXXX3740XXXXXX3750XXXXXX3760"
|
||||
"XXXXXX3770XXXXXX3780XXXXXX3790XXXXXX3800XXXXXX3810XXXXXX3820"
|
||||
"XXXXXX3830XXXXXX3840XXXXXX3850XXXXXX3860XXXXXX3870XXXXXX3880"
|
||||
"XXXXXX3890XXXXXX3900XXXXXX3910XXXXXX3920XXXXXX3930XXXXXX3940"
|
||||
"XXXXXX3950XXXXXX3960XXXXXX3970XXXXXX3980XXXXXX3990XXXXXX4000"
|
||||
"XXXXXX4010XXXXXX4020XXXXXX4030XXXXXX4040XXXXXX4050XXXXXX4060"
|
||||
"XXXXXX4070XXXXXX4080XXXXXX4090XX";
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/006.php");
|
||||
BString cookieString("006=");
|
||||
cookieString << bigdata;
|
||||
result = jar.AddCookie(cookieString, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/006-1.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "006");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == bigdata);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::MaxNumberTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/007.php");
|
||||
BString cookieString;
|
||||
|
||||
for (int i = 1; i <= 20; i++)
|
||||
{
|
||||
cookieString.SetToFormat("007-%d=1", i);
|
||||
result = jar.AddCookie(cookieString, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
}
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/007-1.php");
|
||||
for (int i = 1; i <= 20; i++)
|
||||
{
|
||||
cookieString.SetToFormat("007-%d", i);
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, cookieString.String());
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::UpdateTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/008.php");
|
||||
result = jar.AddCookie("008=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/008-1.php");
|
||||
result = jar.AddCookie("008=2", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/008-2.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "008");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "2");
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::HttpOnlyTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/010.php");
|
||||
result = jar.AddCookie("010=1; Httponly; Max-age=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/010-1.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "010");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
CPPUNIT_ASSERT(cookie->HttpOnly());
|
||||
CPPUNIT_ASSERT(cookie->HasExpirationDate());
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::EncodingTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/011.php");
|
||||
result = jar.AddCookie("011=UTF-8 \303\246\303\270\303\245 \346\227\245\346\234\254;", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/011-1.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "011");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT_EQUAL(
|
||||
BString("UTF-8 \303\246\303\270\303\245 \346\227\245\346\234\254"),
|
||||
cookie->Value());
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::DomainTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/012.php");
|
||||
result = jar.AddCookie("012-1=1; Domain=\"opera.com\"", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
result = jar.AddCookie("012-1=1; Domain=\"example.com\"", url);
|
||||
CPPUNIT_ASSERT(result != B_OK);
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/012-1.php");
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "012-1");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
|
||||
cookie = _GetCookie(jar, url, "012-2");
|
||||
CPPUNIT_ASSERT(cookie == NULL);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CookieTest::PersistentTest()
|
||||
{
|
||||
BNetworkCookieJar jar;
|
||||
status_t result;
|
||||
char buffer[256];
|
||||
|
||||
time_t t = time(NULL) + 100000;
|
||||
struct tm* now = gmtime(&t);
|
||||
|
||||
NextSubTest();
|
||||
|
||||
BUrl url("http://testsuites.opera.com/cookies/013.php");
|
||||
|
||||
strftime(buffer, sizeof(buffer),
|
||||
"013-1=1; Expires=%a, %d-%b-%Y %H:%M:%S", now);
|
||||
result = jar.AddCookie(buffer, url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
result = jar.AddCookie("013-2=1", url);
|
||||
CPPUNIT_ASSERT(result == B_OK);
|
||||
|
||||
NextSubTest();
|
||||
|
||||
url.SetUrlString("http://testsuites.opera.com/cookies/013-1.php");
|
||||
|
||||
BNetworkCookie* cookie = _GetCookie(jar, url, "013-1");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
CPPUNIT_ASSERT(cookie->HasExpirationDate());
|
||||
|
||||
cookie = _GetCookie(jar, url, "013-2");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
CPPUNIT_ASSERT(!cookie->HasExpirationDate());
|
||||
|
||||
// Simulate exit
|
||||
jar.PurgeForExit();
|
||||
|
||||
NextSubTest();
|
||||
|
||||
cookie = _GetCookie(jar, url, "013-1");
|
||||
CPPUNIT_ASSERT(cookie != NULL);
|
||||
CPPUNIT_ASSERT(cookie->Value() == "1");
|
||||
CPPUNIT_ASSERT(cookie->HasExpirationDate());
|
||||
|
||||
cookie = _GetCookie(jar, url, "013-2");
|
||||
CPPUNIT_ASSERT(cookie == NULL);
|
||||
}
|
||||
|
||||
|
||||
/* static */ void
|
||||
CookieTest::AddTests(BTestSuite& parent)
|
||||
{
|
||||
CppUnit::TestSuite& suite = *new CppUnit::TestSuite("CookieTest");
|
||||
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::SimpleTest",
|
||||
&CookieTest::SimpleTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>(
|
||||
"CookieTest::StandardTest", &CookieTest::StandardTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::ExpireTest",
|
||||
&CookieTest::ExpireTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::PathTest",
|
||||
&CookieTest::PathTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::MaxSizeTest",
|
||||
&CookieTest::MaxSizeTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>(
|
||||
"CookieTest::MaxNumberTest", &CookieTest::MaxNumberTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::UpdateTest",
|
||||
&CookieTest::UpdateTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>(
|
||||
"CookieTest::HttpOnlyTest", &CookieTest::HttpOnlyTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>(
|
||||
"CookieTest::EncodingTest", &CookieTest::EncodingTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>("CookieTest::DomainTest",
|
||||
&CookieTest::DomainTest));
|
||||
suite.addTest(new CppUnit::TestCaller<CookieTest>(
|
||||
"CookieTest::PersistentTest", &CookieTest::PersistentTest));
|
||||
|
||||
parent.addTest("CookieTest", &suite);
|
||||
}
|
||||
|
||||
|
||||
BNetworkCookie*
|
||||
CookieTest::_GetCookie(BNetworkCookieJar& jar, const BUrl& url,
|
||||
const char* name)
|
||||
{
|
||||
BNetworkCookieJar::UrlIterator it = jar.GetUrlIterator(url);
|
||||
BNetworkCookie* result = NULL;
|
||||
|
||||
while (it.HasNext()) {
|
||||
BNetworkCookie* cookie = it.Next();
|
||||
if (cookie->Name() == name) {
|
||||
// Make sure the cookie is found only once.
|
||||
CPPUNIT_ASSERT(result == NULL);
|
||||
|
||||
result = cookie;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
43
src/tests/kits/net/url/CookieTest.h
Normal file
43
src/tests/kits/net/url/CookieTest.h
Normal file
@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright 2014 Haiku, inc.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef COOKIE_TEST_H
|
||||
#define COOKIE_TEST_H
|
||||
|
||||
|
||||
#include <TestCase.h>
|
||||
#include <TestSuite.h>
|
||||
|
||||
|
||||
class BNetworkCookie;
|
||||
class BNetworkCookieJar;
|
||||
class BUrl;
|
||||
|
||||
|
||||
class CookieTest: public BTestCase {
|
||||
public:
|
||||
CookieTest();
|
||||
virtual ~CookieTest();
|
||||
|
||||
void SimpleTest();
|
||||
void StandardTest();
|
||||
void ExpireTest();
|
||||
void PathTest();
|
||||
void MaxSizeTest();
|
||||
void MaxNumberTest();
|
||||
void UpdateTest();
|
||||
void HttpOnlyTest();
|
||||
void EncodingTest();
|
||||
void DomainTest();
|
||||
void PersistentTest();
|
||||
|
||||
static void AddTests(BTestSuite& suite);
|
||||
|
||||
private:
|
||||
BNetworkCookie* _GetCookie(BNetworkCookieJar& jar, const BUrl& url,
|
||||
const char* name);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
@ -3,6 +3,7 @@ SubDir HAIKU_TOP src tests kits net url ;
|
||||
UnitTestLib servicekittest.so :
|
||||
ServiceKitTestAddon.cpp
|
||||
|
||||
CookieTest.cpp
|
||||
UrlTest.cpp
|
||||
|
||||
: be $(TARGET_NETWORK_LIBS) $(HAIKU_NETAPI_LIB) $(TARGET_LIBSTDC++)
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include <TestSuite.h>
|
||||
#include <TestSuiteAddon.h>
|
||||
|
||||
#include "CookieTest.h"
|
||||
#include "UrlTest.h"
|
||||
|
||||
|
||||
@ -15,6 +16,7 @@ getTestSuite()
|
||||
{
|
||||
BTestSuite* suite = new BTestSuite("ServicesKit");
|
||||
|
||||
CookieTest::AddTests(*suite);
|
||||
UrlTest::AddTests(*suite);
|
||||
|
||||
return suite;
|
||||
|
Loading…
Reference in New Issue
Block a user