summaryrefslogtreecommitdiff
path: root/tests/data/test206
Commit message (Collapse)AuthorAgeFilesLines
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-8/+8
| | | | | | | 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-2/+2
| | | | | | | | | | | | | | 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
* runtests: provide curl's version string as %VERSION for testsDaniel Stenberg2020-10-021-4/+3
| | | | | | | | ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
* 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/+2
| | | | This reverts commit 113f04e664b16b944e64498a73a4dab990fe9a68.
* Proxy-Connection: stop sending this header by defaultDaniel Stenberg2016-02-081-2/+0
| | | | | | | | | RFC 7230 says we should stop. Firefox already stopped. Bug: https://github.com/curl/curl/issues/633 Reported-By: Brad Fitzpatrick Closes #633
* 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: prevent test206, test1060, and test1061 from failingKamil Dudka2013-04-121-7/+7
| | | | | | ... in case runtests.pl is invoked with non-default -b option Fixes a regression caused by 1e29d275c643ef6aab7948f0f55a7a9397e56b42.
* test1509: verify proxy header response headers countDaniel Stenberg2013-03-271-11/+13
| | | | | | | | | | | | | Modified sws to support and use custom CONNECT responses instead of the previously naive hard-coded version. Made the HTTP test server able to extract test case number from the host name in a CONNECT request by finding the number after the last dot. It makes 'machine.moo.123' use test case 123. Adapted a larger amount of tests to the new <connect> style. Bug: http://curl.haxx.se/bug/view.cgi?id=1204 Reported by: Martin Jansen
* Test 206: Use a Content-Length header for the 407 responseFabian Keil2012-11-211-0/+2
| | | | Otherwise curl would have to guess where the body ends.
* Test 206: Don't respond to a succesful CONNECT request with a bodyFabian Keil2012-11-211-1/+0
| | | | | | It's against the spec and caused test failures when header and response were read from the network separately in which case bug #39 wasn't triggered.
* connection-monitor: always log disconnect when enabledDaniel Stenberg2012-07-121-0/+1
| | | | | | This makes verifying easier and makes us more sure curl closes the connection only at the correct point in time. Adjusted test 206 and 1008 accordingly and updated the docs for it.
* tests: use connection-monitor and verify resultsDaniel Stenberg2012-07-051-0/+3
| | | | | | Test 1008 and 206 don't show the disconnect since it happens when SWS awaits a new request, but 503 does and so the verify section needs that string added.
* Changed host name to be under the haxx.se domainYang Tse2009-05-081-7/+7
|
* - Craig A West brought us: libcurl now defaults to do CONNECT with HTTPDaniel Stenberg2009-02-021-2/+2
| | | | | | | | | | version 1.1 instead of 1.0 like before. This change also introduces the new proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0 option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0. I updated all test cases cases that use CONNECT and I tried to do some using --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
* Added HTTP CONNECT keywordsDan Fandrich2008-08-111-0/+1
|
* Added some <keywords> sections and use some key words more consistently.Dan Fandrich2007-10-121-0/+10
|
* Fixed some typos in the comments.Dan Fandrich2007-03-301-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-1/+4
| | | | | | | | | | | | | | | | 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"
* A minor "syntax error" in numerous test files correctedDaniel Stenberg2005-01-251-1/+1
|
* test 206 - HTTP proxy CONNECT auth DigestDaniel Stenberg2004-12-021-0/+81