summaryrefslogtreecommitdiff
path: root/tests/data/test1316
Commit message (Collapse)AuthorAgeFilesLines
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-1/+1
| | | | | | | This makes the tests easier to copy and relocate to other test numbers without having to update content. Closes #6738
* FTP tests: enable text-mode for more datacheck sectionsMarc Hoersken2014-02-011-4/+4
|
* tests: added missing <features> http to a number of testsDan Fandrich2014-01-251-0/+3
|
* FTP: make the data connection work when going through proxyDaniel Stenberg2013-10-261-3/+3
| | | | | | | | | | | This is a regression since the switch to always-multi internally c43127414d89c. Test 1316 was modified since we now clearly call the Curl_client_write() function when doing the LIST transfer part and then the handler->protocol says FTP and ftpc.transfertype is 'A' which implies text converting even though that the response is initially a HTTP CONNECT response in this case.
* test1509: verify proxy header response headers countDaniel Stenberg2013-03-271-1/+15
| | | | | | | | | | | | | 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
* tests #1316 #1319 #1320 #1321: add missing keywordsYang Tse2012-03-231-0/+2
|
* test proxy supports CONNECTDaniel Stenberg2012-01-031-0/+62
There's a new 'http-proxy' server for tests that runs on a separate port and lets clients do HTTP CONNECT to other ports on the same host to allow us to test HTTP "tunneling" properly. Test cases now have a <proxy> section in <verify> to check that the proxy protocol part matches correctly. Test case 80, 83, 95, 275, 503 and 1078 have been converted. Test 1316 was added.