summaryrefslogtreecommitdiff
path: root/tests/data/test62
Commit message (Collapse)AuthorAgeFilesLines
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-4/+4
| | | | | | | This makes the tests easier to copy and relocate to other test numbers without having to update content. Closes #6738
* tests: fixup several testsFabian Keil2021-02-091-1/+1
| | | | | | | | | | | | | | missing CRs and modified %hostip lib556/test556: use a real HTTP version to make test reuse more convenient make sure the weekday in Date headers matches the date test61: replace stray "^M" (5e 4d) at the end of a cookie with a '^M' (0d) Gets the test working with external proxies like Privoxy again. Closes #6463
* 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/+2
| | | | | | | | ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
* curl: create easy handles on-demand and not ahead of timeDaniel Stenberg2019-10-021-2/+2
| | | | | | | | | | This should again enable crazy-large download ranges of the style [1-10000000] that otherwise easily ran out of memory starting in 7.66.0 when this new handle allocating scheme was introduced. Reported-by: Peter Sumatra Fixes #4393 Closes #4438
* tests: allow tests to pass by 2037-02-12Bernhard M. Wiedemann2019-01-081-3/+3
| | | | | | similar to commit f508d29f3902104018 Closes #3443
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* http: always send Host: header as first headerDaniel Stenberg2015-03-121-2/+2
| | | | | | | | | | | | | | | ...after the method line: "Since the Host field-value is critical information for handling a request, a user agent SHOULD generate Host as the first header field following the request-line." / RFC 7230 section 5.4 Additionally, this will also make libcurl ignore multiple specified custom Host: headers and only use the first one. Test 1121 has been updated accordingly Bug: http://curl.haxx.se/bug/view.cgi?id=1491 Reported-by: Rainer Canavan
* cookies: follow-up fix for path checkingYAMADA Yasuharu2013-06-121-1/+6
| | | | | | | The initial fix to only compare full path names were done in commit 04f52e9b4db0 but found out to be incomplete. This takes should make the change more complete and there's now two additional tests to verify (test 31 and 62).
* cookies: change the URL in the cookie jar file headerDaniel Stenberg2012-07-031-1/+1
|
* made the cookie tests 61 and 62 test httponly cookies, both receiving inDaniel Stenberg2009-05-101-1/+2
| | | | headers and reading from cookie-jar
* - 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/+2
|
* Year 2038 has its own problems (32 bit integer overflow).Yang Tse2007-02-051-3/+3
| | | | So cookie expiration date is lowered to expire at most in 2035.
* fix test case 62 which was failing due to cookies expiring 1 Feb 2007Yang Tse2007-02-021-3/+3
|
* 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.
* Venkat Akella found out that libcurl did not like HTTP responses that simplyDaniel Stenberg2006-11-251-1/+1
| | | | | | | | | | | | | responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring.
* 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"
* keywords addedDaniel Stenberg2005-04-221-0/+7
|
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-1/+1
| | | | | | 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.
* Modified the default HTTP Accept: header to only be Accept: */*Daniel Stenberg2004-02-091-1/+1
|
* modified to work fine with the new persistant connection working test suiteDaniel Stenberg2003-07-191-1/+1
| | | | HTTP server
* send correct cookies when using a custom Host:Daniel Stenberg2003-05-021-0/+49