diff options
author | Yang Tse <yangsita@gmail.com> | 2012-06-04 20:58:46 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-06-04 20:59:45 +0200 |
commit | 04a6f0a1a4e6e22dbedd3db4920ea2f77bd5da11 (patch) | |
tree | 4d86fe5d52b30a130a36bdac6507527849362eca /tests/data/test1356 | |
parent | 1fc89eb87f317369a2d2a576867edd3ce7210d4a (diff) |
tests 1356 to 1363: several -O -J -i -D combinations with FTP protocol
Currently 1356 to 1362 succeed but a write failure is logged in traceNNNN.
Currently 1363 fails, so disabled for now.
Diffstat (limited to 'tests/data/test1356')
-rw-r--r-- | tests/data/test1356 | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/tests/data/test1356 b/tests/data/test1356 new file mode 100644 index 000000000..177395ea2 --- /dev/null +++ b/tests/data/test1356 @@ -0,0 +1,82 @@ +<testcase> +<info> +<keywords> +FTP +RETR +</keywords> +</info> + +# Server-side +<reply> +# file1356 contents... +<data nocheck="yes"> +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Content-Length: 6 +Connection: close +Content-Type: text/html +Content-Disposition: filename=name1356; charset=funny; option=strange + +MOOOO +</data> +</reply> + +# Client-side +<client> +# this relies on the debug feature to allow us to set directory to store the +# -O output in, using the CURL_TESTDIR variable +<features> +debug +</features> +<server> +ftp +</server> +<name> +FTP download file with Content-Disposition inside, using -O +</name> +<setenv> +CURL_TESTDIR=%PWD/log +</setenv> +<command option="no-output,no-include"> +ftp://%HOSTIP:%FTPPORT/path/file1356 -O +</command> +</client> + +# Verify data after the test has been "shot" +<verify> +<protocol> +USER anonymous
+PASS ftp@example.com
+PWD
+CWD path
+EPSV
+TYPE I
+SIZE file1356
+RETR file1356
+QUIT
+</protocol> + +<file1 name="log/file1356"> +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Content-Length: 6 +Connection: close +Content-Type: text/html +Content-Disposition: filename=name1356; charset=funny; option=strange + +MOOOO +</file1> + +<file2 name="log/heads1356"> +</file2> + +<file3 name="log/stdout1356"> +</file3> + +<file4 name="log/name1356"> +</file4> + +</verify> +</testcase> |