curl-curl/tests/data/test164
Viktor Szakats 904e7ecb66
tests: replace remaining CR bytes with the new macro %CR
There is no more mixed-newline file in the repository after this patch.
Except for`.bat` and `.sln` files (4 in total), all files use LF
newlines.

Also:
- `spacecheck.pl`: drop mixed-EOL exception for test data.
- runtests: add option `-w` to check if test data has stray CR bytes in
  them.
- build: enable the option above in test targets, except the CI-specific
  one where `spacecheck.pl` does this job already.
- tested OK (with expected failures) in CI with stray CRs added.
- cmake: enable option `-a` for the `tests` target. To continue testing
  after a failed test.

Follow-up to 63e9721b63 #19313
Follow-up to 6cf3d7b1b1 #19318
Follow-up to 4d2a05d3fe #19284

Closes #19347
2025-11-06 20:45:45 +01:00

67 lines
1.2 KiB
Plaintext

<testcase>
<info>
<keywords>
HTTP
HTTP GET
</keywords>
</info>
# Server-side
# This particular response is an exact excerpt from an actual Apache
# server when asked for a 0-10,12-15 range (except gt/lt changed to {}
# to avoid XML escaping problems).
<reply>
<data>
HTTP/1.1 206 Partial Content swsclose%CR
Date: Sat, 24 Apr 2004 09:24:49 GMT%CR
Server: Apache/1.3.29 (Unix) mod_throttle/3.1.2 PHP/4.3.4 mod_fastcgi/2.4.0%CR
Last-Modified: Tue, 23 Mar 2004 08:23:14 GMT%CR
ETag: "53814a-ec5-405ff3f2"%CR
Accept-Ranges: bytes%CR
Content-Length: 187%CR
Content-Type: multipart/byteranges; boundary=408a326132c%CR
%CR
--408a326132c%CR
Content-type: text/html%CR
Content-range: bytes 0-10/3781%CR
%CR
{html}
{hea
%CR
--408a326132c%CR
Content-type: text/html%CR
Content-range: bytes 12-15/3781%CR
%CR
}
{t
%CR
--408a326132c--%CR
</data>
</reply>
# Client-side
<client>
<server>
http
</server>
<name>
HTTP range with multiple ranges
</name>
<command>
http://%HOSTIP:%HTTPPORT/want/%TESTNUMBER -r 0-10,12-15
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="headers">
GET /want/%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
Range: bytes=0-10,12-15
User-Agent: curl/%VERSION
Accept: */*
</protocol>
</verify>
</testcase>