mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
a8e751a51a
... like when a HTTP/0.9 response comes back without any headers at all and just a body this now prevents that body from being sent to the callback etc. Adapted test 1144 to verify. Fixes #973 Assisted-by: Ray Satiro
70 lines
687 B
Plaintext
70 lines
687 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP HEAD
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
No headers at all, just data swsclose
|
|
|
|
Let's get
|
|
|
|
a little
|
|
|
|
so that
|
|
|
|
we
|
|
|
|
have
|
|
|
|
some
|
|
|
|
test
|
|
|
|
data to
|
|
|
|
verify
|
|
</data>
|
|
# make sure no data is written
|
|
<datacheck nonewline="yes">
|
|
|
|
</datacheck>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
HTTP HEAD, receive no headers only body
|
|
</name>
|
|
<command>
|
|
-I http://%HOSTIP:%HTTPPORT/1144
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^User-Agent:.*
|
|
</strip>
|
|
<protocol>
|
|
HEAD /1144 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
<errorcode>
|
|
8
|
|
</errorcode>
|
|
</verify>
|
|
</testcase>
|