mirror of
https://github.com/curl/curl.git
synced 2026-04-14 00:51:42 +08:00
- fix regex to not catch CR (from CRLF), in `PORT`, `EPRT`
commands, allowing to use `crlf="yes"` more.
- add `crlf="headers"` mode for `protocol` sections.
To call `subnewlines()` without its force option.
This is the mode used in `data` sections when `crlf="yes"`.
(This confusion may be subject to a future commit.)
- subnewlines: apply CRLF to `HEAD` and `CONNECT` HTTP requests.
- subnewlines: apply CRLF to RTSP requests.
- delete remaining empty `protocol` sections.
Reducing the number of `tests/data/test*`:
- CRLF newlines from 11325 to 10295. (119984 lines total)
- files with mixed newlines from 707 to 656. (1890 files total)
Follow-up to 4d2a05d3fe #19284
Closes #19318
91 lines
1.6 KiB
Plaintext
91 lines
1.6 KiB
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
HTTP CONNECT
|
|
HTTP Basic auth
|
|
HTTP proxy
|
|
HTTP proxy Basic auth
|
|
proxytunnel
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<connect>
|
|
HTTP/1.1 200 OK
|
|
Connected-fine: sure
|
|
|
|
</connect>
|
|
|
|
<data>
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
Content-Type: text/html
|
|
Content-Length: 9
|
|
|
|
contents
|
|
</data>
|
|
<datacheck>
|
|
HTTP/1.1 200 OK
|
|
Connected-fine: sure
|
|
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
Content-Type: text/html
|
|
Content-Length: 9
|
|
|
|
contents
|
|
</datacheck>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
http-proxy
|
|
</server>
|
|
<name>
|
|
HTTP CONNECT with proxytunnel getting two URLs from the same host
|
|
</name>
|
|
<command>
|
|
http://remotesite.com.%TESTNUMBER:%HTTPPORT/we/want/that/page/%TESTNUMBER -p -x %HOSTIP:%PROXYPORT --user iam:myself --proxy-user youare:yourself http://remotesite.com.%TESTNUMBER:%HTTPPORT/we/want/that/page/%TESTNUMBER
|
|
</command>
|
|
<features>
|
|
proxy
|
|
</features>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<proxy>
|
|
CONNECT remotesite.com.%TESTNUMBER:%HTTPPORT HTTP/1.1
|
|
Host: remotesite.com.%TESTNUMBER:%HTTPPORT
|
|
Proxy-Authorization: Basic %b64[youare:yourself]b64%
|
|
User-Agent: curl/%VERSION
|
|
Proxy-Connection: Keep-Alive
|
|
|
|
</proxy>
|
|
<protocol crlf="yes">
|
|
GET /we/want/that/page/%TESTNUMBER HTTP/1.1
|
|
Host: remotesite.com.%TESTNUMBER:%HTTPPORT
|
|
Authorization: Basic %b64[iam:myself]b64%
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
|
|
GET /we/want/that/page/%TESTNUMBER HTTP/1.1
|
|
Host: remotesite.com.%TESTNUMBER:%HTTPPORT
|
|
Authorization: Basic %b64[iam:myself]b64%
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|