Commit 63cac69c authored by Steve Holme's avatar Steve Holme
Browse files

tests: Added tests for IMAP CLOSE and EXPUNGE commands

parent f77d9b65
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 \

tests/data/test815

0 → 100644
+45 −0
Original line number Diff line number Diff line
<testcase>
<info>
<keywords>
IMAP
STORE
CLOSE
CUSTOMREQUEST
</keywords>
</info>

#
# Server-side
<reply>
<data1>
* 123 FETCH (FLAGS (\Seen \Deleted))
</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
A002 LOGIN user secret
A003 SELECT 815
A004 STORE 123 +Flags \Deleted
A005 CLOSE
A006 LOGOUT
</protocol>
</verify>
</testcase>

tests/data/test816

0 → 100644
+48 −0
Original line number Diff line number Diff line
<testcase>
<info>
<keywords>
IMAP
STORE
EXPUNGE
CUSTOMREQUEST
</keywords>
</info>

#
# Server-side
<reply>
<data1>
* 123 FETCH (FLAGS (\Seen \Deleted))
</data1>
<data2>
* 123 EXPUNGE
</data2>
</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
A002 LOGIN user secret
A003 SELECT 816
A004 STORE 123 +Flags \Deleted
A005 EXPUNGE
A006 LOGOUT
</protocol>
</verify>
</testcase>