diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-01-22 16:00:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-01-22 16:00:28 +0000 |
commit | 3d6fcbf97bc6d4029e35e7d2edb8d0aebb0b0e4f (patch) | |
tree | 960cd34ea551bb2ad99fb3bd196fe3a3bf6848dc | |
parent | 609be218c2a1e4bdc2f7fcd3d62a291d7401576a (diff) |
Added test case 120, ftp with '-Q -'
-rw-r--r-- | tests/data/Makefile.am | 3 | ||||
-rw-r--r-- | tests/data/command120.txt | 3 | ||||
-rw-r--r-- | tests/data/name120.txt | 1 | ||||
-rw-r--r-- | tests/data/prot120.txt | 6 | ||||
-rw-r--r-- | tests/data/reply120.txt | 6 |
5 files changed, 18 insertions, 1 deletions
diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 107f5af20..57ef282f8 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -54,4 +54,5 @@ command9.txt name15.txt prot6.txt \ error111.txt name16.txt prot7.txt \ command26.txt prot26.txt command27.txt prot27.txt \ name26.txt reply26.txt name27.txt stdout27.txt \ -command28.txt name28.txt prot28.txt reply28.txt
\ No newline at end of file +command28.txt name28.txt prot28.txt reply28.txt \ +command120.txt name120.txt prot120.txt reply120.txt diff --git a/tests/data/command120.txt b/tests/data/command120.txt new file mode 100644 index 000000000..e35c13d68 --- /dev/null +++ b/tests/data/command120.txt @@ -0,0 +1,3 @@ +ftp://%HOSTIP:%FTPPORT/106 -Q "-DELE file" + + diff --git a/tests/data/name120.txt b/tests/data/name120.txt new file mode 100644 index 000000000..83b565d00 --- /dev/null +++ b/tests/data/name120.txt @@ -0,0 +1 @@ +ftp download with post-quote delete operation diff --git a/tests/data/prot120.txt b/tests/data/prot120.txt new file mode 100644 index 000000000..c0b6ae4e1 --- /dev/null +++ b/tests/data/prot120.txt @@ -0,0 +1,6 @@ +USER anonymous
+PASS curl_by_daniel@haxx.se
+PASV
+TYPE I
+RETR 106
+DELE file
diff --git a/tests/data/reply120.txt b/tests/data/reply120.txt new file mode 100644 index 000000000..0cfa203dd --- /dev/null +++ b/tests/data/reply120.txt @@ -0,0 +1,6 @@ +data + to + see +that FTP +works + so does it? |