curl/tests/data/test216
Dan Fandrich e7a021e135 tests: use %LOGDIR to refer to the log directory
This will allow it be set dynamically.

Ref: #10818
2023-03-30 09:53:57 -07:00

46 lines
721 B
Plaintext

<testcase>
<info>
<keywords>
FTP
</keywords>
</info>
# Server-side
<reply>
</reply>
# Client-side
<client>
<server>
ftp
</server>
<name>
FTP upload two files to the same dir
</name>
<command>
-T %LOGDIR/upload.%TESTNUMBER ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER/ -T %LOGDIR/upload.%TESTNUMBER ftp://%HOSTIP:%FTPPORT/a/path/%TESTNUMBER/%2e%2eanotherup.%TESTNUMBER
</command>
<file name="%LOGDIR/upload.%TESTNUMBER">
upload this file twice
</file>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol>
USER anonymous
PASS ftp@example.com
PWD
CWD a
CWD path
CWD %TESTNUMBER
EPSV
TYPE I
STOR upload.%TESTNUMBER
EPSV
STOR ..anotherup.%TESTNUMBER
QUIT
</protocol>
</verify>
</testcase>