mirror of
https://github.com/curl/curl.git
synced 2025-01-12 13:55:11 +08:00
3fd80c7b59
The threee tags `<name>`, `</name>` and `<command>` were frequently used with a leading space that this removes. The reason this habbit is so widespread in testcases is probably that they have been copy and pasted. Hence, fixing them all now might curb this practice from now on. Closes #12028
63 lines
918 B
Plaintext
63 lines
918 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
FTP
|
|
FTPS
|
|
PORT
|
|
STOR
|
|
</keywords>
|
|
</info>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
SSL
|
|
</features>
|
|
<server>
|
|
ftps
|
|
</server>
|
|
<name>
|
|
FTPS PORT upload with CWD
|
|
</name>
|
|
<command>
|
|
-k --ftp-ssl-control ftps://%HOSTIP:%FTPSPORT/CWD/STOR/RETR/%TESTNUMBER -T %LOGDIR/upload%TESTNUMBER -P -
|
|
</command>
|
|
<file name="%LOGDIR/upload%TESTNUMBER">
|
|
Moooooooooooo
|
|
upload this
|
|
</file>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# Strip all valid kinds of PORT and EPRT that curl can send
|
|
<strip>
|
|
^PORT \d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3}
|
|
^EPRT \|1\|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\|\d{1,5}\|
|
|
</strip>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS ftp@example.com
|
|
PBSZ 0
|
|
PROT C
|
|
PWD
|
|
CWD CWD
|
|
CWD STOR
|
|
CWD RETR
|
|
PORT 127,0,0,1,5,109
|
|
TYPE I
|
|
STOR %TESTNUMBER
|
|
QUIT
|
|
</protocol>
|
|
<upload>
|
|
Moooooooooooo
|
|
upload this
|
|
</upload>
|
|
</verify>
|
|
</testcase>
|