diff options
author | Justin Ehlert <ehlertjd@gmail.com> | 2015-10-13 08:55:05 -0500 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-11-08 12:12:33 +0000 |
commit | 23b8fc15c8653133b2ea664b8f894c74d8862a3c (patch) | |
tree | fc4318da78b5cbcfd2190e8edcf887aa15657996 /tests/data/test841 | |
parent | e3c85405d09c32f19c902e7050210ebbb7f6878c (diff) |
imap: Don't check for continuation when executing a CUSTOMREQUEST
Bug: https://github.com/bagder/curl/issues/486
Closes https://github.com/bagder/curl/pull/487
Diffstat (limited to 'tests/data/test841')
-rw-r--r-- | tests/data/test841 | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/data/test841 b/tests/data/test841 new file mode 100644 index 000000000..839bfe3d0 --- /dev/null +++ b/tests/data/test841 @@ -0,0 +1,51 @@ +<testcase> +<info> +<keywords> +IMAP +Clear Text +FETCH +CUSTOMREQUEST +</keywords> +</info> + +# +# Server-side +<reply> +<data> +body
+
++ Curl did not used to like this line
+--
+ yours sincerely
+</data> +<datacheck> +* 123 FETCH (BODY[1] {70}
+</datacheck> +</reply> + +# +# Client-side +<client> +<server> +imap +</server> + <name> +IMAP custom request doesn't check continuation data + </name> + <command> + imap://%HOSTIP:%IMAPPORT/841/ -u user:secret -X 'FETCH 123 BODY[1]' +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<protocol> +A001 CAPABILITY
+A002 LOGIN user secret
+A003 SELECT 841
+A004 FETCH 123 BODY[1]
+A005 LOGOUT
+</protocol> +</verify> +</testcase> |