summaryrefslogtreecommitdiff
path: root/tests/data/test258
Commit message (Collapse)AuthorAgeFilesLines
* tests: use proxy featureMarcel Raad2019-10-151-0/+1
| | | | | | This makes the tests succeed when using --disable-proxy. Closes https://github.com/curl/curl/pull/4488
* Revert "Proxy-Connection: stop sending this header by default"Daniel Stenberg2016-08-161-0/+4
| | | | This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
* Proxy-Connection: stop sending this header by defaultDaniel Stenberg2016-02-081-4/+0
| | | | | | | | | RFC 7230 says we should stop. Firefox already stopped. Bug: https://github.com/curl/curl/issues/633 Reported-By: Brad Fitzpatrick Closes #633
* 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
* 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.
* - I removed the default use of "Pragma: no-cache" from libcurl when a proxy isDaniel Stenberg2008-11-191-2/+0
| | | | | used. It has been used since forever but it was never a good idea to use unless explicitly asked for.
* Edited some test keywords for consistencyDan Fandrich2008-06-211-0/+1
|
* Added some <keywords> sections and use some key words more consistently.Dan Fandrich2007-10-121-0/+1
|
* Use double quotes in command lines for consistency.Dan Fandrich2007-09-181-1/+1
|
* Updated the test harness to add a new "crypto" feature check and updated theDan Fandrich2007-03-091-0/+3
| | | | | appropriate test case to use it. For now, this is treated the same as the "SSL" feature because curl doesn't list it separately.
* 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.
* Modified the default HTTP headers used by libcurl:Daniel Stenberg2005-05-111-0/+2
| | | | | | | | | | | | | | | | 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"
* Added two test cases for multipart formpost over a proxy with --anyauth. OurDaniel Stenberg2005-05-061-0/+127
HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)...