mirror of
https://github.com/curl/curl.git
synced 2026-04-12 00:11:42 +08:00
tests: 46, 265, 304, 316, 397, 443, 551, 552, 559, 651, 742, 775, 1003,
1005, 1006, 1008, 1062, 1070, 1086, 1112, 1151, 1160, 1178, 1192, 1193,
1205, 1237, 3207.
Total `test*` size reduction: 2,395,537 -> 2,165,631 bytes.
Follow-up to 55d4767876 #19279
Closes #19281
73 lines
1.4 KiB
Plaintext
73 lines
1.4 KiB
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTPS
|
|
HTTP POST
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Server: test-server/fake
|
|
Content-Length: 10
|
|
|
|
blablabla
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
Mime
|
|
SSL
|
|
</features>
|
|
<server>
|
|
https
|
|
</server>
|
|
<name>
|
|
HTTPS multipart formpost
|
|
</name>
|
|
<command>
|
|
--insecure https://%HOSTIP:%HTTPSPORT/we/want/%TESTNUMBER -F name=daniel -F tool=curl -F file=@%LOGDIR/test%TESTNUMBER.txt
|
|
</command>
|
|
# We create this file before the command is invoked!
|
|
<file name="%LOGDIR/test%TESTNUMBER.txt">
|
|
%repeat[1000 x a]%
|
|
</file>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^(Content-Type: multipart/form-data;|------).*
|
|
</strip>
|
|
<protocol>
|
|
POST /we/want/%TESTNUMBER HTTP/1.1
|
|
Host: %HOSTIP:%HTTPSPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
Content-Length: 1410
|
|
Content-Type: multipart/form-data; boundary=----------------------------qrstuvwxyz0123456789AB
|
|
|
|
------------------------------qrstuvwxyz0123456789AB
|
|
Content-Disposition: form-data; name="name"
|
|
|
|
daniel
|
|
------------------------------qrstuvwxyz0123456789AB
|
|
Content-Disposition: form-data; name="tool"
|
|
|
|
curl
|
|
------------------------------qrstuvwxyz0123456789AB
|
|
Content-Disposition: form-data; name="file"; filename="test%TESTNUMBER.txt"
|
|
Content-Type: text/plain
|
|
|
|
%repeat[1000 x a]%
|
|
|
|
------------------------------qrstuvwxyz0123456789AB--
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|