diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-02-08 16:40:34 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-02-09 14:06:28 +0100 |
commit | 528f71c2ecdbb03117af226978804148d69a1007 (patch) | |
tree | 1345d18162135945aff7657f539071c6b4019437 /tests/data/test1570 | |
parent | 115c9e27f53809a254fba44b023bea92f4d4dcd0 (diff) | |
download | curl-528f71c2ecdbb03117af226978804148d69a1007.tar.gz |
ftp: add 'list_only' to the transfer state struct
and rename it from 'ftp_list_only' since it is also used for SSH and
POP3. The state is updated internally for 'type=D' FTP URLs.
Added test case 1570 to verify.
Closes #6578
Diffstat (limited to 'tests/data/test1570')
-rw-r--r-- | tests/data/test1570 | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/data/test1570 b/tests/data/test1570 new file mode 100644 index 000000000..fd0c27395 --- /dev/null +++ b/tests/data/test1570 @@ -0,0 +1,73 @@ +<testcase> +<info> +<keywords> +FTP +PASV +RETR +</keywords> +</info> +# Server-side +<reply> +<data nocheck="yes"> +data + to + see +that FTP +works + so does it? +</data> +<servercmd> +REPLY EPSV 500 no such command +</servercmd> +</reply> + +# Client-side +<client> +<server> +ftp +</server> + <name> +FTP first type=D then regular URL + </name> +<tool> +lib1569 +</tool> +<command> +"ftp://%HOSTIP:%FTPPORT/1570;type=D" ftp://%HOSTIP:%FTPPORT/1570 +</command> + +</client> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS ftp@example.com
+PWD
+EPSV
+PASV
+TYPE A
+NLST
+PASV
+TYPE I
+SIZE 1570
+RETR 1570
+QUIT
+</protocol> +</verify> +<stdout> +data + to + see +that FTP +works + so does it? +data + to + see +that FTP +works + so does it? +</stdout> + +</testcase> |