mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
8e4fb01e64
Added CURLOPT_TRANSFER_ENCODING as the option to set to request Transfer Encoding in HTTP requests (if built zlib enabled). I also renamed CURLOPT_ENCODING to CURLOPT_ACCEPT_ENCODING (while keeping the old name around) to reduce the confusion when we have to encoding options for HTTP. --tr-encoding is now the new command line option for curl to request this, and thus I updated the test cases accordingly.
70 lines
1.2 KiB
Plaintext
70 lines
1.2 KiB
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
compressed
|
|
Transfer-Encoding
|
|
chunked
|
|
</keywords>
|
|
</info>
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data base64="yes">
|
|
SFRUUC8xLjEgMjAwIE9LDQpEYXRlOiBNb24sIDI5IE5vdiAyMDI0IDIxOjU2OjUzIEdNVA0KU2Vy
|
|
dmVyOiBTb21ldGhpbmctVEUtZnJpZW5kbHkvMC4xDQpWYXJ5OiBBY2NlcHQtRW5jb2RpbmcNCkNv
|
|
bnRlbnQtVHlwZTogdGV4dC9odG1sOyBjaGFyc2V0PUlTTy04ODU5LTENClRyYW5zZmVyLUVuY29k
|
|
aW5nOiBnemlwLCBjaHVua2VkDQoNCjE0DQofiwgIeZ6rQQADbGFsYWxhAMvJzA0KMTgNCktVMORS
|
|
yAHRRlwKEIYxFwAKAnFgGAAAAA0KMA0KDQo=
|
|
</data>
|
|
|
|
<datacheck>
|
|
HTTP/1.1 200 OK
|
|
Date: Mon, 29 Nov 2024 21:56:53 GMT
|
|
Server: Something-TE-friendly/0.1
|
|
Vary: Accept-Encoding
|
|
Content-Type: text/html; charset=ISO-8859-1
|
|
Transfer-Encoding: gzip, chunked
|
|
|
|
line 1
|
|
line 2
|
|
line 3
|
|
</datacheck>
|
|
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
libz
|
|
</features>
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
HTTP GET gzip+chunked transfer-encoded content
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/1124 --tr-encoding
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^User-Agent:.*
|
|
</strip>
|
|
<protocol>
|
|
GET /1124 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
Connection: TE
|
|
TE: gzip
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|