mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
cd4aee156f
- QUIT is not an important FTP command - curl only sends it "best effort", meaning it might not be sent - it is a known "flaky" thing in test output because of this Closes #14404
50 lines
596 B
Plaintext
50 lines
596 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
FTP
|
|
PASV
|
|
CWD
|
|
--ftp-method
|
|
singlecwd
|
|
</keywords>
|
|
</info>
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
bla bla bla
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
ftp
|
|
</server>
|
|
<name>
|
|
FTP CWD with --ftp-method singlecwd
|
|
</name>
|
|
<command>
|
|
--ftp-method singlecwd ftp://%HOSTIP:%FTPPORT/first/second/third/%TESTNUMBER
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
QUIT
|
|
</strip>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS ftp@example.com
|
|
PWD
|
|
CWD first/second/third
|
|
EPSV
|
|
TYPE I
|
|
SIZE %TESTNUMBER
|
|
RETR %TESTNUMBER
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|