Home | History | Annotate | Download | only in data
      1 <testcase>
      2 <info>
      3 <keywords>
      4 HTTP
      5 HTTP FORMPOST
      6 </keywords>
      7 </info>
      8 # Server-side
      9 <reply>
     10 <data>
     11 HTTP/1.1 200 OK
     12 Date: Thu, 09 Nov 2010 14:49:00 GMT
     13 Server: test-server/fake
     14 Content-Length: 10
     15 
     16 blablabla
     17 </data>
     18 </reply>
     19 
     20 # Client-side
     21 <client>
     22 <server>
     23 http
     24 </server>
     25  <name>
     26 HTTP RFC1867-type formposting with filename= and type=
     27  </name>
     28  <command>
     29 http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;type=moo/foobar;filename=fakerfile" -F file2=@log/test39.txt -F "file3=@\"log/test39.txt\";type=mo/foo;filename=\"f\\\\\\\\ak\\\\\\er,\\\\an\\d;.t\\\"xt\"" -F 'file4=@"log/test39.txt"; filename="A\\AA\"\"\\\"ZZZ"'
     30 </command>
     31 # We create this file before the command is invoked!
     32 <file name="log/test39.txt">
     33 foo bar
     34 This is a bar foo
     35 bar
     36 foo
     37 </file>
     38 </client>
     39 
     40 # Verify data after the test has been "shot"
     41 <verify>
     42 <strip>
     43 ^(User-Agent:|Content-Type: multipart/form-data;|-------).*
     44 </strip>
     45 <protocol>
     46 POST /we/want/39 HTTP/1.1
     47 User-Agent: curl/7.10.4 (i686-pc-linux-gnu) libcurl/7.10.4 OpenSSL/0.9.7a ipv6 zlib/1.1.3
     48 Host: %HOSTIP:%HTTPPORT
     49 Accept: */*
     50 Content-Length: 1184
     51 Expect: 100-continue
     52 Content-Type: multipart/form-data; boundary=----------------------------24e78000bd32
     53 
     54 ------------------------------24e78000bd32
     55 Content-Disposition: form-data; name="name"
     56 
     57 daniel
     58 ------------------------------24e78000bd32
     59 Content-Disposition: form-data; name="tool"
     60 
     61 curl
     62 ------------------------------24e78000bd32
     63 Content-Disposition: form-data; name="str1"
     64 
     65 @literal
     66 ------------------------------24e78000bd32
     67 Content-Disposition: form-data; name="str2"
     68 
     69 <verbatim;type=xxx/yyy
     70 ------------------------------24e78000bd32
     71 Content-Disposition: form-data; name="file"; filename="fakerfile"
     72 Content-Type: moo/foobar
     73 
     74 foo bar
     75 This is a bar foo
     76 bar
     77 foo
     78 
     79 ------------------------------24e78000bd32
     80 Content-Disposition: form-data; name="file2"; filename="test39.txt"
     81 Content-Type: text/plain
     82 
     83 foo bar
     84 This is a bar foo
     85 bar
     86 foo
     87 
     88 ------------------------------24e78000bd32
     89 Content-Disposition: form-data; name="file3"; filename="f\\\\ak\\\\er,\\an\\d;.t\"xt"
     90 Content-Type: mo/foo
     91 
     92 foo bar
     93 This is a bar foo
     94 bar
     95 foo
     96 
     97 ------------------------------24e78000bd32
     98 Content-Disposition: form-data; name="file4"; filename="A\\AA\"\"\\\"ZZZ"
     99 Content-Type: text/plain
    100 
    101 foo bar
    102 This is a bar foo
    103 bar
    104 foo
    105 
    106 ------------------------------24e78000bd32--
    107 </protocol>
    108 </verify>
    109 </testcase>
    110