summaryrefslogtreecommitdiff
path: root/tests/data/test172
Commit message (Collapse)AuthorAgeFilesLines
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* runtests: provide curl's version string as %VERSION for testsDaniel Stenberg2020-10-021-3/+1
| | | | | | | | ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* tests: Fixed test172 cookie expirySteve Holme2014-02-021-1/+1
| | | | | | | | | | The test contains a cookie jar file where one of the cookies has an expiry date of 1391252187 -- Sat, 1 Feb 2014 10:56:27 GMT which has now expired. Updated to Wed, 14 Oct 2037 16:36:33 GMT as per test 179. Reported-by: Adam Sampson Bug: http://curl.haxx.se/bug/view.cgi?id=1330
* cookies: change the URL in the cookie jar file headerDaniel Stenberg2012-07-031-1/+1
|
* - I'm abandoning the system with the web site mirrors (but keeping downloadDaniel Stenberg2008-08-281-1/+1
| | | | | files bing mirrored) and thus I've changed the URL in the cookiejar header to no longer use curlm.haxx.se but instead use the main site curl.haxx.se
* Added some <keywords> sections and use some key words more consistently.Dan Fandrich2007-10-121-0/+8
|
* Added variable substitution to the <verify><file> section.Dan Fandrich2007-09-201-3/+3
| | | | Made a few more tests work remotely.
* Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich2007-09-141-1/+1
|
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-0/+2
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => &amp; ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* As reported in bug: #1566077 the former URL mentioned in the generated cookieDaniel Stenberg2006-09-271-1/+1
| | | | jar has died and we now instead point out our own version of that
* Modified the default HTTP headers used by libcurl:Daniel Stenberg2005-05-111-1/+0
| | | | | | | | | | | | | | | | A) Normal non-proxy HTTP: - no more "Pragma: no-cache" (this only makes sense to proxies) B) Non-CONNECT HTTP request over proxy: - "Pragma: no-cache" is used (like before) - "Proxy-Connection: Keep-alive" (for older style 1.0-proxies) C) CONNECT HTTP request over proxy: - "Host: [name]:[port]" - "Proxy-Connection: Keep-alive"
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-2/+2
| | | | | | no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script.
* Robert D. Young reported that CURLOPT_COOKIEFILE and CURLOPT_COOKIE couldDaniel Stenberg2004-05-241-0/+47
not be used both in one request. Fixed it and added test case 172 to verify.