curl/tests/data/test1144
Viktor Szakats d229055549
tidy-up: miscellaneous
- drop more uses of the word "just". (not enforced here)
- drop some uses of the "will" word.
- "then" -> "than".
- tests/http/testenv/curl.py: fix copy-paste typo in error message.
- pytest: replace `shutdownh` with `shutdown` in test names.
  Spotted by GitHub Code Quality.
- comment typos.
- whitespace and newlines fixes.

Closes #21830
2026-06-01 22:33:57 +02:00

66 lines
758 B
XML

<?xml version="1.0" encoding="US-ASCII"?>
<testcase>
<info>
<keywords>
HTTP
HTTP HEAD
HTTP/0.9
</keywords>
</info>
# Server-side
<reply>
<data>
No headers at all, only 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/%TESTNUMBER --http0.9
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="headers">
HEAD /%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
</protocol>
<errorcode>
8
</errorcode>
</verify>
</testcase>