summaryrefslogtreecommitdiff
path: root/tests/data/test565
Commit message (Collapse)AuthorAgeFilesLines
* tests: added missing keywords "chunked Transfer-Encoding"Dan Fandrich2017-05-131-0/+1
|
* 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
* tests: Don't run HTTP digest tests for SSPI based buildsSteve Holme2014-11-061-0/+1
| | | | | | | Added !SSPI to the features list of the HTTP digest tests, as SSPI based builds now use the Windows SSPI messaging API rather than the internal functions, and we can't control the random numbers that get used as part of the digest.
* tests: Made the crypto test feature usableDan Fandrich2014-02-171-0/+3
| | | | | This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
* Remove stray CRLF in chunk-encoded content-free request bodiesFabian Keil2012-11-261-1/+0
| | | | | | | | .. that are sent when auth-negotiating before a chunked upload or when setting the 'Transfer-Encoding: chunked' header and intentionally sending no content. Adjust test565 and test1333 accordingly.
* test565: Don't hardcode IP:PORTTor Arntsen2010-09-091-2/+2
| | | | | | Use %HOSTIP:%HTTPPORT instead of 127.0.0.1:8990 so that verification works if the baseport change option is used when executing runtests.pl.
* - Martin Storsjo made libcurl use the Expect: 100-continue header for postsDaniel Stenberg2009-12-071-0/+1
| | | | | with unknown size. Previously it was only used for posts with a known size larger than 1024 bytes.
* - "Tom" posted a bug report that mentioned how libcurl did wrong when doing aDaniel Stenberg2009-10-301-0/+104
| | | | | | | POST using a read callback, with Digest authentication and "Transfer-Encoding: chunked" enforced. I would then cause the first request to be wrongly sent and then basically hang until the server closed the connection. I fixed the problem and added test case 565 to verify it.
* Renumbered test565 to test1104 to move it out of the range reserved forDan Fandrich2009-09-111-83/+0
| | | | libcurl tests.
* - Claes Jakobsson fixed a problem with cookie expiry dates at exctly the epochDaniel Stenberg2009-09-101-0/+83
start second "Thu Jan 1 00:00:00 GMT 1970" as the date parser then returns 0 which internally then is treated as a session cookie. That particular date is now made to get the value of 1.