mirror of
https://github.com/curl/curl.git
synced 2024-12-21 06:50:10 +08:00
3fd80c7b59
The threee tags `<name>`, `</name>` and `<command>` were frequently used with a leading space that this removes. The reason this habbit is so widespread in testcases is probably that they have been copy and pasted. Hence, fixing them all now might curb this practice from now on. Closes #12028
101 lines
2.8 KiB
Plaintext
101 lines
2.8 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>
|
|
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>
|