diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-14 12:03:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-14 12:03:33 +0000 |
commit | 86367d675a805d8685ae27239216944439bd9a49 (patch) | |
tree | edf2195f6206629e94eb0f8129b59dbe54c7f4d7 /tests | |
parent | bd8cef5a702d9a83e373809168f449728261da3b (diff) | |
download | curl-86367d675a805d8685ae27239216944439bd9a49.tar.gz |
new FTP tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/Makefile.am | 14 | ||||
-rw-r--r-- | tests/data/test112 | 37 | ||||
-rw-r--r-- | tests/data/test113 | 26 | ||||
-rw-r--r-- | tests/data/test114 | 27 | ||||
-rw-r--r-- | tests/data/test115 | 29 | ||||
-rw-r--r-- | tests/data/test116 | 31 | ||||
-rw-r--r-- | tests/data/test117 | 30 | ||||
-rw-r--r-- | tests/data/test118 | 31 | ||||
-rw-r--r-- | tests/data/test119 | 33 | ||||
-rw-r--r-- | tests/data/test120 | 34 | ||||
-rw-r--r-- | tests/data/test121 | 35 | ||||
-rw-r--r-- | tests/data/test122 | 28 | ||||
-rw-r--r-- | tests/data/test123 | 27 | ||||
-rw-r--r-- | tests/data/test124 | 31 | ||||
-rw-r--r-- | tests/data/test125 | 29 |
15 files changed, 436 insertions, 6 deletions
diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index ac625474c..bcb33bd2b 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -5,9 +5,11 @@ test: [ -f test1 ] || ln -s $(srcdir)/test* . EXTRA_DIST = \ -test1 test104 test11 test15 test20 test23 test33 test6 \ -test10 test105 test110 test16 test200 test24 test4 test7 \ -test100 test106 test111 test17 test201 test25 test400 test8 \ -test101 test107 test12 test18 test202 test26 test43 test9 \ -test102 test108 test13 test19 test21 test3 test44 \ -test103 test109 test14 test2 test22 test300 test5 +test1 test106 test113 test120 test15 test201 test3 test6 \ +test10 test107 test114 test121 test16 test202 test300 test7 \ +test100 test108 test115 test122 test17 test21 test33 test8 \ +test101 test109 test116 test123 test18 test22 test4 test9 \ +test102 test11 test117 test124 test19 test23 test400 \ +test103 test110 test118 test125 test2 test24 test43 \ +test104 test111 test119 test13 test20 test25 test44 \ +test105 test112 test12 test14 test200 test26 test5 diff --git a/tests/data/test112 b/tests/data/test112 new file mode 100644 index 000000000..712a16cec --- /dev/null +++ b/tests/data/test112 @@ -0,0 +1,37 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP PASV upload resume + </name> + <command> +ftp://%HOSTIP:%FTPPORT/112 -T log/upload112 -C 40 +</command> +<file name="log/upload112"> +this is the *****crap******** that we're gonna upload + +worx? +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<strip> +</strip> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+APPE 112
+</protocol> +<upload> + gonna upload + +worx? +</upload> +</verify> diff --git a/tests/data/test113 b/tests/data/test113 new file mode 100644 index 000000000..5dcc6afaf --- /dev/null +++ b/tests/data/test113 @@ -0,0 +1,26 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed login: USER not valid + </name> + <command> +ftp://%HOSTIP:%FTPPORT/113 +</command> +<file name="log/ftpserver.cmd"> +REPLY USER 314 bluah you fewl! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +12 +</errorcode> +<protocol> +USER anonymous
+</protocol> +</verify> diff --git a/tests/data/test114 b/tests/data/test114 new file mode 100644 index 000000000..52f4378b2 --- /dev/null +++ b/tests/data/test114 @@ -0,0 +1,27 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed login: PASS not valid + </name> + <command> +ftp://%HOSTIP:%FTPPORT/114 +</command> +<file name="log/ftpserver.cmd"> +REPLY PASS 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +11 +</errorcode> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+</protocol> +</verify> diff --git a/tests/data/test115 b/tests/data/test115 new file mode 100644 index 000000000..a480f9117 --- /dev/null +++ b/tests/data/test115 @@ -0,0 +1,29 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed PASV + </name> + <command> +ftp://%HOSTIP:%FTPPORT/115 +</command> +<file name="log/ftpserver.cmd"> +REPLY PASV 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +13 +</errorcode> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+</protocol> +</verify> diff --git a/tests/data/test116 b/tests/data/test116 new file mode 100644 index 000000000..690fd8b3d --- /dev/null +++ b/tests/data/test116 @@ -0,0 +1,31 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed PORT + </name> + <command> +ftp://%HOSTIP:%FTPPORT/116 -P 127.0.0.1 +</command> +<file name="log/ftpserver.cmd"> +REPLY PORT 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +30 +</errorcode> +<strip> +^PORT 127,0,0,1,.* +</strip> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+</protocol> +</verify> diff --git a/tests/data/test117 b/tests/data/test117 new file mode 100644 index 000000000..617fc9149 --- /dev/null +++ b/tests/data/test117 @@ -0,0 +1,30 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed TYPE + </name> + <command> +ftp://%HOSTIP:%FTPPORT/117 +</command> +<file name="log/ftpserver.cmd"> +REPLY TYPE 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +17 +</errorcode> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+</protocol> +</verify> diff --git a/tests/data/test118 b/tests/data/test118 new file mode 100644 index 000000000..42dca01db --- /dev/null +++ b/tests/data/test118 @@ -0,0 +1,31 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed RETR + </name> + <command> +ftp://%HOSTIP:%FTPPORT/118 +</command> +<file name="log/ftpserver.cmd"> +REPLY RETR 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +19 +</errorcode> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+RETR 118
+</protocol> +</verify> diff --git a/tests/data/test119 b/tests/data/test119 new file mode 100644 index 000000000..6c4953273 --- /dev/null +++ b/tests/data/test119 @@ -0,0 +1,33 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed RETR with PORT + </name> + <command> +ftp://%HOSTIP:%FTPPORT/119 -P - +</command> +<file name="log/ftpserver.cmd"> +REPLY RETR 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +19 +</errorcode> +<strip> +^PORT.* +</strip> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+TYPE I
+RETR 119
+</protocol> +</verify> diff --git a/tests/data/test120 b/tests/data/test120 new file mode 100644 index 000000000..095d03bd1 --- /dev/null +++ b/tests/data/test120 @@ -0,0 +1,34 @@ +# Server-side +<reply> +<data> +data + to + see +that FTP +works + so does it? +</data> +</reply> + +# Client-side +<client> + <name> +ftp download with post-quote delete operation + </name> + <command> +ftp://%HOSTIP:%FTPPORT/120 -Q "-DELE file" +</command> +</test> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+RETR 120
+DELE file
+</protocol> +</verify> diff --git a/tests/data/test121 b/tests/data/test121 new file mode 100644 index 000000000..3ac985c6a --- /dev/null +++ b/tests/data/test121 @@ -0,0 +1,35 @@ +# Server-side +<reply> +<data> +data + to + see +that FTP +works + so does it? +</data> +</reply> + +# Client-side +<client> + <name> +ftp download with post- and pre-transfer delete operations + </name> + <command> +ftp://%HOSTIP:%FTPPORT/121 -Q "-DELE after_transfer" -Q "DELE before_transfer" +</command> +</test> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+DELE before_transfer
+PASV
+TYPE I
+RETR 121
+DELE after_transfer
+</protocol> +</verify> diff --git a/tests/data/test122 b/tests/data/test122 new file mode 100644 index 000000000..b9990d982 --- /dev/null +++ b/tests/data/test122 @@ -0,0 +1,28 @@ +# Server-side +<reply> +<size> +5 +</size> +</reply> + +# Client-side +<client> + <name> +FTP download resume with whole file already downloaded + </name> + <command> +ftp://%HOSTIP:%FTPPORT/122 -C 5 +</command> +</test> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+SIZE 122
+</protocol> +</verify> diff --git a/tests/data/test123 b/tests/data/test123 new file mode 100644 index 000000000..c2e81646c --- /dev/null +++ b/tests/data/test123 @@ -0,0 +1,27 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP upload resume with whole file already downloaded + </name> + <command> +ftp://%HOSTIP:%FTPPORT/123 -T log/upload123 -C 51 +</command> +<file name="log/upload123"> +-------------------------------------------------- +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+</protocol> +</verify> diff --git a/tests/data/test124 b/tests/data/test124 new file mode 100644 index 000000000..106291fd4 --- /dev/null +++ b/tests/data/test124 @@ -0,0 +1,31 @@ +# Server-side +<reply> +<data> +we can still send data even if pwd fails! +</data> +</reply> + +# Client-side +<client> + <name> +FTP download, failed PWD + </name> + <command> +ftp://%HOSTIP:%FTPPORT/124 +</command> +<file name="log/ftpserver.cmd"> +REPLY PWD 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+PASV
+TYPE I
+RETR 124
+</protocol> +</verify> diff --git a/tests/data/test125 b/tests/data/test125 new file mode 100644 index 000000000..7581d6e8e --- /dev/null +++ b/tests/data/test125 @@ -0,0 +1,29 @@ +# Server-side +<reply> +</reply> + +# Client-side +<client> + <name> +FTP download, failed CWD + </name> + <command> +ftp://%HOSTIP:%FTPPORT/path/to/file/125 +</command> +<file name="log/ftpserver.cmd"> +REPLY CWD 314 bluah you f00l! +</file> +</test> + +# Verify data after the test has been "shot" +<verify> +<errorcode> +9 +</errorcode> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+CWD path/to/file
+</protocol> +</verify> |