summaryrefslogtreecommitdiff
path: root/tests/data/test56
Commit message (Collapse)AuthorAgeFilesLines
* http: always send Host: header as first headerDaniel Stenberg2015-03-121-1/+1
| | | | | | | | | | | | | | | ...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
* Edited some test keywords for consistencyDan Fandrich2008-06-211-0/+1
|
* Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich2007-09-141-1/+1
|
* There's no need to ignore the User-Agent for this test.Dan Fandrich2007-08-091-3/+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. & => & ). 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.
* 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/+8
|
* A minor "syntax error" in numerous test files correctedDaniel Stenberg2005-01-251-1/+1
|
* 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.
* Modified the default HTTP Accept: header to only be Accept: */*Daniel Stenberg2004-02-091-1/+1
|
* Chunked-transfers should have an additional CRLF after the final 0 CRLFDaniel Stenberg2004-01-281-0/+1
| | | | sequence.
* modified to work fine with the new persistant connection working test suiteDaniel Stenberg2003-07-191-1/+1
| | | | HTTP server
* Each test case now specifies which server(s) it needs, without relying on theDaniel Stenberg2003-04-301-0/+3
| | | | test number.
* Test case for sending insanely big HTTP requests. Mainly done this way toDaniel Stenberg2002-12-101-0/+49
make sure that it isn't all sent off in one single send() but instead really tests the multiple-part-send logic.