1<testcase>
2<info>
3<keywords>
4HTTP
5HTTP POST
6</keywords>
7</info>
8
9# Server-side
10<reply>
11<data>
12HTTP/1.1 200 OK swsclose
13Date: Thu, 09 Nov 2010 14:49:00 GMT
14Server: test-server/fake
15Content-Length: 11
16
17blablabla
18
19</data>
20</reply>
21
22# Client-side
23<client>
24<server>
25http
26</server>
27 <name>
28HTTP RFC1867-type formposting with types on text fields
29 </name>
30 <command>
31http://%HOSTIP:%HTTPPORT/we/want/186 -F "name=daniel;type=moo/foo" -F "html= <body>hello</body>;type=text/html;charset=verymoo"
32</command>
33# We create this file before the command is invoked!
34</client>
35
36# Verify data after the test has been "shot"
37<verify>
38<strip>
39^(User-Agent:|Content-Type: multipart/form-data;|------------).*
40</strip>
41<protocol>
42POST /we/want/186 HTTP/1.1
43User-Agent: curl/7.12.2-CVS (i686-pc-linux-gnu) libcurl/7.12.2-CVS OpenSSL/0.9.7d zlib/1.2.1.1 c-ares/1.2.0 libidn/0.5.2
44Host: %HOSTIP:%HTTPPORT
45Accept: */*
46Content-Length: 321
47Expect: 100-continue
48Content-Type: multipart/form-data; boundary=----------------------------212d9006ceb5
49
50------------------------------212d9006ceb5
51Content-Disposition: form-data; name="name"
52Content-Type: moo/foo
53
54daniel
55------------------------------212d9006ceb5
56Content-Disposition: form-data; name="html"
57Content-Type: text/html;charset=verymoo
58
59 <body>hello</body>
60------------------------------212d9006ceb5--
61</protocol>
62</verify>
63</testcase>
64