Home | History | Annotate | Download | only in data
      1 <testcase>
      2 <info>
      3 <keywords>
      4 HTTP
      5 HTTP POST
      6 </keywords>
      7 </info>
      8 
      9 # Server-side
     10 <reply>
     11 <data>
     12 HTTP/1.1 200 OK swsclose
     13 Date: Thu, 09 Nov 2010 14:49:00 GMT
     14 Server: test-server/fake
     15 Content-Length: 11
     16 
     17 blablabla
     18 
     19 </data>
     20 </reply>
     21 
     22 # Client-side
     23 <client>
     24 <server>
     25 http
     26 </server>
     27  <name>
     28 HTTP RFC1867-type formposting with types on text fields
     29  </name>
     30  <command>
     31 http://%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>
     42 POST /we/want/186 HTTP/1.1
     43 User-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
     44 Host: %HOSTIP:%HTTPPORT
     45 Accept: */*
     46 Content-Length: 321
     47 Expect: 100-continue
     48 Content-Type: multipart/form-data; boundary=----------------------------212d9006ceb5
     49 
     50 ------------------------------212d9006ceb5
     51 Content-Disposition: form-data; name="name"
     52 Content-Type: moo/foo
     53 
     54 daniel
     55 ------------------------------212d9006ceb5
     56 Content-Disposition: form-data; name="html"
     57 Content-Type: text/html;charset=verymoo
     58 
     59  <body>hello</body>
     60 ------------------------------212d9006ceb5--
     61 </protocol>
     62 </verify>
     63 </testcase>
     64