curl-curl/tests/data/test8
Viktor Szakats 63e9721b63
tests: avoid hard-coded CRLFs in more sections
- `reply/data*`, `verify/stdout`, `verify/stderr`, `verify/file*`,
  `verify/proxy`:
  - make `crlf="yes"` force CRLF to all lines, instead of just applying
    to HTTP protocol headers.
  - add support for `crlf="headers"` that only converts HTTP protocol
    header lines to CRLF. (previously done via `crlf="yes"`.)
  - use `crlf="headers"` where possible.

- `reply/connect*`:
  - add support for `crlf="yes"` and `crlf="headers"`.
  - use them where possible.

- `client/file*`, `client/stdin`:
  - add support for `crlf="yes"`.
  - use it where possible.

- `reply/data*`, `verify/protocol`:
  - replace existing uses of `crlf="yes"` with `crlf="headers`" where it
    does not change the result.

Reducing the number of `tests/data/test*`:
- CRLF newlines from 10295 to 1985. (119985 lines total)
- files with mixed newlines from 656 to 113. (1890 files total)

After this patch there remain 141 sections with mixed newlines, where
the mixing is not split between headers/non-headers. There is no obvious
pattern here. Some of the CRLF uses might be accidental, or
non-significant. They will be tackled in a future patch.

Follow-up to 6cf3d7b1b1 #19318
Follow-up to 4d2a05d3fe #19284

Closes #19313
2025-11-03 21:15:12 +01:00

101 lines
2.9 KiB
Plaintext

<testcase>
<info>
<keywords>
HTTP
HTTP GET
cookies
</keywords>
</info>
# Server-side
<reply>
<data>
HTTP/1.1 200 OK swsclose
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
</data>
</reply>
# Client-side
<client>
<server>
http
</server>
<name>
HTTP with cookie parsing from header file
</name>
<command>
http://%HOSTIP:%HTTPPORT/we/want/%TESTNUMBER -b %LOGDIR/heads%TESTNUMBER.txt
</command>
# We create this file before the command is invoked!
<file name="%LOGDIR/heads%TESTNUMBER.txt">
HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Content-Type: text/html
Funny-head: yesyes
Set-Cookie: foobar=name; domain=%HOSTIP; path=/;
Set-Cookie: mismatch=this; domain=%HOSTIP; path="/silly/";
Set-Cookie: partmatch=present; domain=.0.0.1; path=/w;
Set-Cookie: duplicate=test; domain=.0.0.1; domain=.0.0.1; path=/donkey;
Set-Cookie: cookie=yes; path=/we;
Set-Cookie: cookie=perhaps; path=/we/want;
Set-Cookie: name with space=is weird but; path=/we/want;
Set-Cookie: trailingspace = removed; path=/we/want;
Set-Cookie: nocookie=yes; path=/WE;
Set-Cookie: blexp=yesyes; domain=%HOSTIP; domain=%HOSTIP; expiry=totally bad;
Set-Cookie: partialip=nono; domain=.0.0.1;
Set-Cookie: cookie1=%hex[%01-junk]hex%
Set-Cookie: cookie2=%hex[%02-junk]hex%
Set-Cookie: cookie3=%hex[%03-junk]hex%
Set-Cookie: cookie4=%hex[%04-junk]hex%
Set-Cookie: cookie5=%hex[%05-junk]hex%
Set-Cookie: cookie6=%hex[%06-junk]hex%
Set-Cookie: cookie7=%hex[%07-junk]hex%
Set-Cookie: cookie8=%hex[%08-junk]hex%
Set-Cookie: cookie9=%hex[junk--%09]hex%
Set-Cookie: cookie11=%hex[%0b-junk]hex%
Set-Cookie: cookie12=%hex[%0c-junk]hex%
Set-Cookie: cookie14=%hex[%0e-junk]hex%
Set-Cookie: cookie15=%hex[%0f-junk]hex%
Set-Cookie: cookie16=%hex[%10-junk]hex%
Set-Cookie: cookie17=%hex[%11-junk]hex%
Set-Cookie: cookie18=%hex[%12-junk]hex%
Set-Cookie: cookie19=%hex[%13-junk]hex%
Set-Cookie: cookie20=%hex[%14-junk]hex%
Set-Cookie: cookie21=%hex[%15-junk]hex%
Set-Cookie: cookie22=%hex[%16-junk]hex%
Set-Cookie: cookie23=%hex[%17-junk]hex%
Set-Cookie: cookie24=%hex[%18-junk]hex%
Set-Cookie: cookie25=%hex[%19-junk]hex%
Set-Cookie: cookie26=%hex[%1a-junk]hex%
Set-Cookie: cookie27=%hex[%1b-junk]hex%
Set-Cookie: cookie28=%hex[%1c-junk]hex%
Set-Cookie: cookie29=%hex[%1d-junk]hex%
Set-Cookie: cookie30=%hex[%1e-junk]hex%
Set-Cookie: cookie31=%hex[%1f-junk]hex%
Set-Cookie: cookie31=%hex[%7f-junk]hex%
</file>
<precheck>
%PERL -e 'if("%HOSTIP" !~ /\.0\.0\.1$/) {print "Test only works for HOSTIPs ending with .0.0.1"; exit(1)}'
</precheck>
<features>
cookies
</features>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="headers">
GET /we/want/%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
Cookie: name with space=is weird but; trailingspace=removed; cookie=perhaps; cookie=yes; foobar=name; blexp=yesyes; cookie9=junk--
</protocol>
</verify>
</testcase>