• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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^(Content-Type: multipart/form-data;|------------).*
40</strip>
41<protocol>
42POST /we/want/186 HTTP/1.1
43Host: %HOSTIP:%HTTPPORT
44User-Agent: curl/%VERSION
45Accept: */*
46Content-Length: 320
47Content-Type: multipart/form-data; boundary=----------------------------212d9006ceb5
48
49------------------------------212d9006ceb5
50Content-Disposition: form-data; name="name"
51Content-Type: moo/foo
52
53daniel
54------------------------------212d9006ceb5
55Content-Disposition: form-data; name="html"
56Content-Type: text/html;charset=verymoo
57
58<body>hello</body>
59------------------------------212d9006ceb5--
60</protocol>
61</verify>
62</testcase>
63