1<testcase>
2<info>
3<keywords>
4HTTP
5HTTP POST
6cookies
7cookiejar
8</keywords>
9</info>
10
11# Server-side
12<reply>
13<data>
14HTTP/1.1 200 OK
15Date: Thu, 09 Nov 2010 14:49:00 GMT
16Server: test-server/fake
17Content-Type: text/html
18Funny-head: yesyes swsclose
19Set-Cookie: foobar=name;
20Set-Cookie: mismatch=this; domain=127.0.0.1; path="/silly/";
21Set-Cookie: partmatch=present; domain=.0.0.1; path=/;
22
23</data>
24</reply>
25
26# Client-side
27<client>
28<server>
29http
30</server>
31 <name>
32HTTP with cookie parser and header recording
33 </name>
34 <command>
35"http://%HOSTIP:%HTTPPORT/we/want/1105?parm1=this*that/other/thing&parm2=foobar/1105" -c log/cookie1105.txt -d "userid=myname&password=mypassword"
36</command>
37<precheck>
38perl -e 'if ("%HOSTIP" !~ /127\.0\.0\.1$/) {print "Test only works for HOSTIP 127.0.0.1"; exit(1)}'
39</precheck>
40</client>
41
42# Verify data after the test has been "shot"
43<verify>
44<strip>
45^User-Agent:.*
46</strip>
47<protocol nonewline="yes">
48POST /we/want/1105?parm1=this*that/other/thing&parm2=foobar/1105 HTTP/1.1
49Host: %HOSTIP:%HTTPPORT
50Accept: */*
51Content-Length: 33
52Content-Type: application/x-www-form-urlencoded
53
54userid=myname&password=mypassword
55</protocol>
56<file name="log/cookie1105.txt" mode="text">
57# Netscape HTTP Cookie File
58# http://curl.haxx.se/docs/http-cookies.html
59# This file was generated by libcurl! Edit at your own risk.
60
61127.0.0.1	FALSE	/we/want/	FALSE	0	foobar	name
62.127.0.0.1	TRUE	"/silly/"	FALSE	0	mismatch	this
63.0.0.1	TRUE	/	FALSE	0	partmatch	present
64</file>
65</verify>
66</testcase>
67