1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00
curl/tests/data/test1514
Balazs Kovacsics 802aa5ae27
HTTP: use chunked Transfer-Encoding for HTTP_POST if size unknown
If using the read callback for HTTP_POST, and POSTFIELDSIZE is not set,
automatically add a Transfer-Encoding: chunked header, same as it is
already done for HTTP_PUT, HTTP_POST_FORM and HTTP_POST_MIME.  Update
test 1514 according to the new behaviour.

Closes #4138
2019-07-29 13:18:53 +02:00

64 lines
856 B
Plaintext

<testcase>
<info>
<keywords>
HTTP
HTTP POST
Content-Length
chunked Transfer-Encoding
</keywords>
</info>
# Server-side
<reply>
<data nocheck="yes">
HTTP/1.1 200 OK
Date: Sun, 19 Jan 2014 18:50:58 GMT
Server: test-server/fake swsclose
Connection: close
</data>
</reply>
# Client-side
<client>
<server>
http
</server>
<tool>
lib1514
</tool>
<name>
HTTP POST with read callback and unknown data size
</name>
<command>
http://%HOSTIP:%HTTPPORT/1514
</command>
</client>
# Verify data after the test has been "shot"
<verify>
# Content-Length header is not present
# Transfer-Encoding header is added automatically
<protocol>
POST /1514 HTTP/1.1
Host: %HOSTIP:%HTTPPORT
Accept: */*
Transfer-Encoding: chunked
Content-Type: application/x-www-form-urlencoded
Expect: 100-continue
1
d
1
u
1
m
1
m
1
y
0
</protocol>
</verify>
</testcase>