quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

test218 (825B)


      1 <testcase>
      2 <info>
      3 <keywords>
      4 HTTP
      5 HTTP PUT
      6 chunked Transfer-Encoding
      7 </keywords>
      8 </info>
      9 #
     10 # Server-side
     11 <reply>
     12 <data>
     13 HTTP/1.0 200 OK
     14 Server: test-server/fake
     15 Content-Type: text/html
     16 Content-Length: 6
     17 
     18 blaha
     19 </data>
     20 </reply>
     21 
     22 #
     23 # Client-side
     24 <client>
     25 <server>
     26 http
     27 </server>
     28 <name>
     29 HTTP PUT from a file but enforce chunked transfer-encoding
     30 </name>
     31 <command>
     32  -T %LOGDIR/file%TESTNUMBER -H "Transfer-Encoding: chunked" http://%HOSTIP:%HTTPPORT/%TESTNUMBER
     33 </command>
     34 <file name="%LOGDIR/file%TESTNUMBER">
     35 just some tiny teeny contents
     36 </file>
     37 </client>
     38 
     39 #
     40 # Verify data after the test has been "shot"
     41 <verify>
     42 <protocol>
     43 PUT /%TESTNUMBER HTTP/1.1
     44 Host: %HOSTIP:%HTTPPORT
     45 User-Agent: curl/%VERSION
     46 Accept: */*
     47 Transfer-Encoding: chunked
     48 
     49 1e
     50 just some tiny teeny contents
     51 
     52 0
     53 
     54 </protocol>
     55 </verify>
     56 </testcase>