aboutsummaryrefslogtreecommitdiff
path: root/tests/data/test1362
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-06-04 20:58:46 +0200
committerYang Tse <yangsita@gmail.com>2012-06-04 20:59:45 +0200
commit04a6f0a1a4e6e22dbedd3db4920ea2f77bd5da11 (patch)
tree4d86fe5d52b30a130a36bdac6507527849362eca /tests/data/test1362
parent1fc89eb87f317369a2d2a576867edd3ce7210d4a (diff)
downloadgnurl-04a6f0a1a4e6e22dbedd3db4920ea2f77bd5da11.tar.gz
gnurl-04a6f0a1a4e6e22dbedd3db4920ea2f77bd5da11.tar.bz2
gnurl-04a6f0a1a4e6e22dbedd3db4920ea2f77bd5da11.zip
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/test1362')
-rw-r--r--tests/data/test136299
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/data/test1362 b/tests/data/test1362
new file mode 100644
index 000000000..7d603f622
--- /dev/null
+++ b/tests/data/test1362
@@ -0,0 +1,99 @@
+<testcase>
+<info>
+<keywords>
+FTP
+RETR
+</keywords>
+</info>
+
+# Server-side
+<reply>
+# file1362 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=name1362; 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 C-D inside, using -O -i -D stdout
+</name>
+<setenv>
+CURL_TESTDIR=%PWD/log
+</setenv>
+<command option="no-output,no-include">
+ftp://%HOSTIP:%FTPPORT/path/file1362 -O -i -D -
+</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 file1362
+RETR file1362
+QUIT
+</protocol>
+
+<file1 name="log/file1362">
+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=name1362; charset=funny; option=strange
+
+MOOOO
+</file1>
+
+<file2 name="log/heads1362">
+</file2>
+
+<file3 name="log/stdout1362">
+220- _ _ ____ _
+220- ___| | | | _ \| |
+220- / __| | | | |_) | |
+220- | (__| |_| | _ <| |___
+220 \___|\___/|_| \_\_____|
+331 We are happy you popped in!
+230 Welcome you silly person
+257 "/" is current directory
+250 CWD command successful.
+229 Entering Passive Mode (stripped)
+200 I modify TYPE as you wanted
+213 214
+150 Binary data connection for 1362 () (214 bytes).
+226 File transfer complete
+</file3>
+<stripfile3>
+s/^(229 Entering Passive Mode \().*(\).*)/${1}stripped${2}/
+</stripfile3>
+
+<file4 name="log/name1362">
+</file4>
+
+</verify>
+</testcase>