diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-12-16 22:22:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-12-16 22:22:11 +0000 |
commit | b7acdbcb4c86367b17e6c18fb53637cd14309ac1 (patch) | |
tree | 5084bcf2fa7d45b1b04fbfdfd62568e5baac1509 | |
parent | 6e1e9caa32da099569bb95e64faf0b5f3cf103b5 (diff) |
two more ftp directory re-use tests added
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | tests/data/Makefile.am | 2 | ||||
-rw-r--r-- | tests/data/test215 | 49 | ||||
-rw-r--r-- | tests/data/test216 | 38 |
4 files changed, 92 insertions, 1 deletions
@@ -8,6 +8,10 @@ Daniel (16 December 2004) +- Gisle found and fixed a problem in the directory re-use for FTP. + + I added test case 215 and 216 to better verify the functionality. + - Dinar in bug report #1086121, found a file handle leak when a multipart formpost (including a file upload part) was aborted before the whole file was sent. diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 3e866023d..41a9366a3 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -30,7 +30,7 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test193 test194 test195 test196 test197 test198 test515 test516 \ test517 test518 test210 test211 test212 test220 test221 test222 \ test223 test224 test206 test207 test208 test209 test213 test240 \ - test241 test242 test519 test214 + test241 test242 test519 test214 test215 test216 # The following tests have been removed from the dist since they no longer # work. We need to fix the test suite's FTPS server first, then bring them diff --git a/tests/data/test215 b/tests/data/test215 new file mode 100644 index 000000000..677d6e6c3 --- /dev/null +++ b/tests/data/test215 @@ -0,0 +1,49 @@ +# Server-side +<reply> +<datacheck> +total 20
+drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
+drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
+drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
+-r--r--r-- 1 0 1 35 Jul 16 1996 README
+lrwxrwxrwx 1 0 1 7 Dec 9 1999 bin -> usr/bin
+dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
+drwxrwxrwx 2 98 98 512 May 29 16:04 download.html
+dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
+drwxrwxrwx 2 98 1 512 Oct 30 14:33 pub
+dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
+</datacheck> + +</reply> + +# Client-side +<client> +<server> +ftp +</server> + <name> +Get two FTP dir listings from the same remote dir: no second CWD + </name> + <command> +ftp://%HOSTIP:%FTPPORT/a/path/215/ ftp://%HOSTIP:%FTPPORT/a/path/215/ +</command> +</client> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+CWD a
+CWD path
+CWD 215
+EPSV
+TYPE A
+LIST
+EPSV
+TYPE A
+LIST
+QUIT
+</protocol> +</verify> diff --git a/tests/data/test216 b/tests/data/test216 new file mode 100644 index 000000000..236364260 --- /dev/null +++ b/tests/data/test216 @@ -0,0 +1,38 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> +<server> +ftp +</server> + <name> +FTP upload two files to the same dir + </name> + <command> +-T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/path/216/ -T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/path/216/%2e%2eanotherup +</command> +<file name="log/upload.216"> +upload this file twice +</file> +</client> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+CWD a
+CWD path
+CWD 216
+EPSV
+TYPE I
+STOR upload.216
+EPSV
+TYPE I
+STOR ..anotherup
+QUIT
+</protocol> +</verify> |