File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / curl / tests / data / test668
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 10:01:16 2020 UTC (5 years ago) by misho
Branches: curl, MAIN
CVS tags: v7_70_0p4, HEAD
curl

    1: <testcase>
    2: <info>
    3: <keywords>
    4: HTTP
    5: HTTP POST
    6: HTTP MIME POST
    7: </keywords>
    8: </info>
    9: 
   10: #
   11: # Server-side
   12: <reply>
   13: <data>
   14: HTTP/1.1 200 OK
   15: Date: Thu, 09 Nov 2010 14:49:00 GMT
   16: Server: test-server/fake swsclose
   17: Connection: close
   18: Content-Type: text/html
   19: 
   20: hello
   21: </data>
   22: <datacheck>
   23: HTTP/1.1 200 OK
   24: Date: Thu, 09 Nov 2010 14:49:00 GMT
   25: Server: test-server/fake swsclose
   26: Connection: close
   27: Content-Type: text/html
   28: 
   29: hello
   30: </datacheck>
   31: </reply>
   32: 
   33: # Client-side
   34: <client>
   35: <server>
   36: http
   37: </server>
   38: # tool is what to use instead of 'curl'
   39: <tool>
   40: lib668
   41: </tool>
   42: 
   43:  <name>
   44: HTTP mimepost early end of data detection
   45:  </name>
   46:  <command>
   47: http://%HOSTIP:%HTTPPORT/668
   48: </command>
   49: <file name="log/file668.txt">
   50: This is data from a file
   51: </file>
   52: </client>
   53: 
   54: #
   55: # Verify data after the test has been "shot"
   56: <verify>
   57: <strippart>
   58: s/^--------------------------[a-z0-9]*/------------------------------/
   59: s/boundary=------------------------[a-z0-9]*/boundary=----------------------------/
   60: </strippart>
   61: # Note that the stripping above removes 12 bytes from every occurrence of the
   62: # boundary string and since 5 of them are in the body contents, we see
   63: # (5*12) == 60 bytes less
   64: <protocol>
   65: POST /668 HTTP/1.1
   66: Host: %HOSTIP:%HTTPPORT
   67: Accept: */*
   68: Transfer-Encoding: chunked
   69: Content-Type: multipart/form-data; boundary=----------------------------
   70: Expect: 100-continue
   71: 
   72: c1
   73: ------------------------------
   74: Content-Disposition: form-data; name="field1"
   75: 
   76: dummy
   77: ------------------------------
   78: Content-Disposition: form-data; name="field2"
   79: 
   80: 
   81: 5
   82: dummy
   83: 91
   84: 
   85: ------------------------------
   86: Content-Disposition: form-data; name="field3"; filename="file668.txt"
   87: Content-Type: text/plain
   88: 
   89: 
   90: 49
   91: This is data from a file
   92: 
   93: --------------------------------
   94: 
   95: 0
   96: 
   97: </protocol>
   98: </verify>
   99: </testcase>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>