]> granicus.if.org Git - curl/commitdiff
tests: Added tests for IMAP CLOSE and EXPUNGE commands
authorSteve Holme <steve_holme@hotmail.com>
Sun, 3 Nov 2013 20:34:35 +0000 (20:34 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Sun, 3 Nov 2013 20:37:34 +0000 (20:37 +0000)
tests/data/Makefile.am
tests/data/test815 [new file with mode: 0644]
tests/data/test816 [new file with mode: 0644]

index b32bb0abb21c4e52a14e2cb23272310cc91e928b..c1bb105a52b8725aca1b84ebc34b29090ac20dfd 100644 (file)
@@ -64,7 +64,7 @@ test700 test701 test702 test703 test704 test705 test706 test707 test708 \
 test709 test710 test711 test712 \
 \
 test800 test801 test802 test803 test804 test805 test806 test807 test808 \
-test809 test810 test811 test812 test813 test814 \
+test809 test810 test811 test812 test813 test814 test815 test816 \
 \
 test850 test851 test852 test853 test854 test855 test856 test857 test858 \
 test859 test860 test861 test862 test863 test864 test865 test866 test867 \
diff --git a/tests/data/test815 b/tests/data/test815
new file mode 100644 (file)
index 0000000..b7f5f49
--- /dev/null
@@ -0,0 +1,45 @@
+<testcase>
+<info>
+<keywords>
+IMAP
+STORE
+CLOSE\r
+CUSTOMREQUEST
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+<data1>
+* 123 FETCH (FLAGS (\Seen \Deleted))\r
+</data1>
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+imap
+</server>
+ <name>
+IMAP delete message (CUSTOMREQUEST)
+ </name>
+ <command>
+imap://%HOSTIP:%IMAPPORT/815 -X 'STORE 123 +Flags \Deleted' -Q -CLOSE -u user:secret
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+A001 CAPABILITY\r
+A002 LOGIN user secret\r
+A003 SELECT 815\r
+A004 STORE 123 +Flags \Deleted\r
+A005 CLOSE\r
+A006 LOGOUT\r
+</protocol>
+</verify>
+</testcase>
diff --git a/tests/data/test816 b/tests/data/test816
new file mode 100644 (file)
index 0000000..a5ff2b3
--- /dev/null
@@ -0,0 +1,48 @@
+<testcase>
+<info>
+<keywords>
+IMAP
+STORE
+EXPUNGE\r
+CUSTOMREQUEST
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+<data1>
+* 123 FETCH (FLAGS (\Seen \Deleted))\r
+</data1>
+<data2>\r
+* 123 EXPUNGE\r
+</data2>\r
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+imap
+</server>
+ <name>
+IMAP delete message with confirmation (CUSTOMREQUEST)
+ </name>
+ <command>
+imap://%HOSTIP:%IMAPPORT/816 -X 'STORE 123 +Flags \Deleted' -Q -EXPUNGE -u user:secret 
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+A001 CAPABILITY\r
+A002 LOGIN user secret\r
+A003 SELECT 816\r
+A004 STORE 123 +Flags \Deleted\r
+A005 EXPUNGE\r
+A006 LOGOUT\r
+</protocol>
+</verify>
+</testcase>