summaryrefslogtreecommitdiff
path: root/tests/data/test1073
Commit message (Collapse)AuthorAgeFilesLines
* tests: ignore case of chunked hex numbers in testsDavid Cook2021-05-041-0/+4
| | | | | | | | | When hyper is used, it emits uppercase hexadecimal numbers for chunked encoding lengths. Without hyper, lowercase hexadecimal numbers are used. This change adds preprocessor statements to tests where this is an issue, and adapts the fixtures to match. Closes #6987
* tests: use %TESTNUMBER instead of fixed numberDaniel Stenberg2021-03-191-3/+3
| | | | | | | This makes the tests easier to copy and relocate to other test numbers without having to update content. Closes #6738
* runtests: provide curl's version string as %VERSION for testsDaniel Stenberg2020-10-021-3/+1
| | | | | | | | ... so that we can check HTTP requests for User-Agent: curl/%VERSION Update 600+ test cases accordingly. Closes #6037
* Fixed misleading test messageDan Fandrich2010-03-311-1/+1
|
* Improved the logic the decides whether to use HTTP 1.1 features or not in aDan Fandrich2008-09-051-0/+1
| | | | | | | request. Detect cases where an upload must be sent chunked and the server supports only HTTP 1.0 and return CURLE_UPLOAD_FAILED.
* Added tests 1071 through 1074 to test automatic downgrading from HTTP 1.1Dan Fandrich2008-08-291-0/+71
to HTTP 1.0 upon receiving a response from the HTTP server. Tests 1072 and 1073 are similar to test 1069 in that they involve the impossible scenario of sending chunked data to a HTTP 1.0 server. All these currently fail and are added to DISABLED. Added test 1075 to test --anyauth with Basic authentication.