Lines Matching refs:url

41 	BUrl url("http://www.chipchapin.com/WebTools/cookietest.php");
48 result = jar.AddCookie("testcookie1=present;", url);
53 result = jar.AddCookie(buffer, url);
58 result = jar.AddCookie(buffer, url);
66 result = jar.AddCookie(buffer, url);
88 BUrl url("http://testsuites.opera.com/cookies/001.php");
89 result = jar.AddCookie("001=1", url);
92 url.SetUrlString("http://testsuites.opera.com/cookies/001-1.php");
93 const BNetworkCookie* cookie = _GetCookie(jar, url, "001");
114 BUrl url("http://testsuites.opera.com/cookies/003.php");
115 result = jar.AddCookie("003=1", url);
118 url.SetUrlString("http://testsuites.opera.com/cookies/003-1.php");
119 result = jar.AddCookie("003=1; expires=Thu, 01-Jan-1970 00:00:10 GMT", url);
122 url.SetUrlString("http://testsuites.opera.com/cookies/003-2.php");
124 CPPUNIT_ASSERT(_GetCookie(jar, url, "003") == NULL);
134 BUrl url("http://testsuites.opera.com/cookies/004/004.php");
135 result = jar.AddCookie("004=1", url);
139 url.SetUrlString("http://testsuites.opera.com/cookies/004/004-1.php");
140 CPPUNIT_ASSERT(_GetCookie(jar, url, "004") != NULL);
143 url.SetUrlString("http://testsuites.opera.com/cookies/004-2.php");
144 CPPUNIT_ASSERT(_GetCookie(jar, url, "004") == NULL);
154 BUrl url("http://testsuites.opera.com/cookies/006.php");
159 result = jar.AddCookie(cookieString, url);
162 url.SetUrlString("http://testsuites.opera.com/cookies/006-1.php");
163 const BNetworkCookie* cookie = _GetCookie(jar, url, "006");
175 BUrl url("http://testsuites.opera.com/cookies/007.php");
181 result = jar.AddCookie(cookieString, url);
185 url.SetUrlString("http://testsuites.opera.com/cookies/007-1.php");
189 const BNetworkCookie* cookie = _GetCookie(jar, url, cookieString.String());
202 BUrl url("http://testsuites.opera.com/cookies/008.php");
203 result = jar.AddCookie("008=1", url);
206 url.SetUrlString("http://testsuites.opera.com/cookies/008-1.php");
207 result = jar.AddCookie("008=2", url);
210 url.SetUrlString("http://testsuites.opera.com/cookies/008-2.php");
211 const BNetworkCookie* cookie = _GetCookie(jar, url, "008");
223 BUrl url("http://testsuites.opera.com/cookies/010.php");
224 result = jar.AddCookie("010=1; Httponly; Max-age=1", url);
227 url.SetUrlString("http://testsuites.opera.com/cookies/010-1.php");
228 const BNetworkCookie* cookie = _GetCookie(jar, url, "010");
242 BUrl url("http://testsuites.opera.com/cookies/011.php");
243 result = jar.AddCookie("011=UTF-8 \303\246\303\270\303\245 \346\227\245\346\234\254;", url);
246 url.SetUrlString("http://testsuites.opera.com/cookies/011-1.php");
247 const BNetworkCookie* cookie = _GetCookie(jar, url, "011");
261 BUrl url("http://testsuites.opera.com/cookies/012.php");
262 result = jar.AddCookie("012-1=1; Domain=\"opera.com\"", url);
264 result = jar.AddCookie("012-1=1; Domain=\"example.com\"", url);
267 url.SetUrlString("http://testsuites.opera.com/cookies/012-1.php");
268 const BNetworkCookie* cookie = _GetCookie(jar, url, "012-1");
272 cookie = _GetCookie(jar, url, "012-2");
289 BUrl url("http://testsuites.opera.com/cookies/013.php");
293 result = jar.AddCookie(buffer, url);
296 result = jar.AddCookie("013-2=1", url);
301 url.SetUrlString("http://testsuites.opera.com/cookies/013-1.php");
303 const BNetworkCookie* cookie = _GetCookie(jar, url, "013-1");
308 cookie = _GetCookie(jar, url, "013-2");
318 cookie = _GetCookie(jar, url, "013-1");
323 cookie = _GetCookie(jar, url, "013-2");
334 BUrl url("http://testsuites.opera.com/cookies/015/015.php");
335 result = jar.AddCookie("015-01=1", url);
338 url.SetUrlString("http://testsuites.opera.com/cookies/015-1.php");
339 result = jar.AddCookie("015-01=1", url);
340 result = jar.AddCookie("015-02=1", url);
343 url.SetUrlString("http://testsuites.opera.com/cookies/015/015-2.php");
344 result = jar.AddCookie("015-01=1", url);
345 result = jar.AddCookie("015-02=1", url);
348 url.SetUrlString("http://testsuites.opera.com/cookies/015/015-3.php");
349 BNetworkCookieJar::UrlIterator it = jar.GetUrlIterator(url);
367 BUrl url("http://testsuites.opera.com/cookies/016.php");
368 result = jar.AddCookie("016-01=1", url);
371 url.SetUrlString("http://testsuites.opera.com/cookies/016/016-1.php");
372 result = jar.AddCookie("016-02=1", url);
375 url.SetUrlString("http://testsuites.opera.com/cookies/016/016-2.php");
376 BNetworkCookieJar::UrlIterator it = jar.GetUrlIterator(url);
404 BUrl url("http://testsuites.opera.com/cookies/301.php");
512 result = cookie.ParseCookieString(tests[i].cookieString, url);
526 const BUrl url("http://testsuites.opera.com/cookies/302/302.php");
603 result = cookie.ParseCookieString(tests[i].cookieString, url);
719 const char* url;
770 BUrl url(tests[i].url);
771 cookie.ParseCookieString(tests[i].cookieString, url);
842 CookieTest::_GetCookie(BNetworkCookieJar& jar, const BUrl& url,
845 BNetworkCookieJar::UrlIterator it = jar.GetUrlIterator(url);