1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
package tests
import (
"os"
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestDeleted(t *testing.T) {
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, _ *testSession) {
// Create two mailboxes.
c.C("b001 CREATE mbox1")
c.S("b001 OK CREATE")
c.C("b001 CREATE mbox2")
c.S("b001 OK CREATE")
// Create a message in mbox1.
c.doAppend(`mbox1`, buildRFC5322TestLiteral(`To: 1@pm.me`), `\Seen`).expect("OK")
c.doAppend(`mbox1`, buildRFC5322TestLiteral(`To: 2@pm.me`), `\Seen`).expect("OK")
c.C(`A002 SELECT mbox1`)
c.Se(`A002 OK [READ-WRITE] SELECT`)
// Copy messages 1 to mbox2 and flag it as deleted in mbox 1.
c.C(`A003 COPY 1 mbox2`)
c.Sx(`A003 OK .*`)
c.C(`A004 STORE 1 +FLAGS (\Deleted)`)
c.S(`* 1 FETCH (FLAGS (\Deleted \Recent \Seen))`)
c.OK("A004")
c.C(`B001 FETCH 1 (FLAGS)`)
c.S(`* 1 FETCH (FLAGS (\Deleted \Recent \Seen))`)
c.OK("B001")
c.C(`B002 FETCH 2 (FLAGS)`)
c.S(`* 2 FETCH (FLAGS (\Recent \Seen))`)
c.OK("B002")
// Check that the copy in mbox2 does not have the flag \Deleted.
c.C(`A005 SELECT mbox2`)
c.Se(`* 1 EXISTS`)
c.Se(`A005 OK [READ-WRITE] SELECT`)
c.C(`A006 FETCH 1 (FLAGS)`)
c.S(`* 1 FETCH (FLAGS (\Recent \Seen))`)
c.OK(`A006`)
// Expunge the copy in mbox1.
// The message no longer has the recent flag.
c.C(`A007 SELECT mbox1`)
c.Se(`* 2 EXISTS`)
c.Se(`A007 OK [READ-WRITE] SELECT`)
c.C(`A008 EXPUNGE`)
c.S(`* 1 EXPUNGE`)
c.OK(`A008`)
c.C(`A009 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.OK(`A009`)
// Check that the message is still in mbox2
// The message no longer has the recent flag.
c.C(`A00A SELECT mbox2`)
c.Se(`* 1 EXISTS`)
c.Se(`A00A OK [READ-WRITE] SELECT`)
// Flag, unflag, expunge and check the message is still there.
c.C(`A00B STORE 1 +FLAGS (\Deleted)`)
c.S(`* 1 FETCH (FLAGS (\Deleted \Seen))`)
c.OK(`A00B`)
c.C(`A00C STORE 1 -FLAGS (\Deleted)`)
c.S(`* 1 FETCH (FLAGS (\Seen))`)
c.OK(`A00C`)
c.C(`A00D EXPUNGE`)
c.S(`A00D OK EXPUNGE`)
c.C(`A00E STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A00E OK STATUS`)
})
}
func TestUIDDeleted(t *testing.T) {
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, _ *testSession) {
// Create two mailboxes
c.C("b001 CREATE mbox1")
c.S("b001 OK CREATE")
c.C("b001 CREATE mbox2")
c.S("b001 OK CREATE")
// Create a message in mbox1
c.doAppend(`mbox1`, buildRFC5322TestLiteral(`To: 1@pm.me`), `\Seen`).expect("OK")
c.doAppend(`mbox1`, buildRFC5322TestLiteral(`To: 2@pm.me`), `\Seen`).expect("OK")
c.C(`A002 SELECT mbox1`)
c.Se(`A002 OK [READ-WRITE] SELECT`)
// Copy message 2 to mbox2 and flag it as deleted in mbox 1
c.C(`A003 UID COPY 2 mbox2`)
c.Sx(`A003 OK .*`)
c.C(`A004 UID STORE 2 +FLAGS (\Deleted)`)
c.S(`* 2 FETCH (FLAGS (\Deleted \Recent \Seen) UID 2)`)
c.OK(`A004`)
// Check that the copy in mbox2 is does not have the flag \Deleted
c.C(`A005 SELECT mbox2`)
c.Se(`* 1 EXISTS`)
c.Se(`A005 OK [READ-WRITE] SELECT`)
c.C(`A006 UID FETCH 1 (FLAGS)`)
c.S(`* 1 FETCH (FLAGS (\Recent \Seen) UID 1)`)
c.OK(`A006`)
// Expunge the copy in mbox1
c.C(`A007 SELECT mbox1`)
c.Se(`* 2 EXISTS`)
c.Se(`A007 OK [READ-WRITE] SELECT`)
c.C(`A008 EXPUNGE`)
c.S(`* 2 EXPUNGE`)
c.Sx(`A008 OK .*`)
c.C(`A009 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A009 OK STATUS`)
// Check that the message is still in mbox2
c.C(`A00A SELECT mbox2`)
c.Se(`* 1 EXISTS`)
c.Se(`A00A OK [READ-WRITE] SELECT`)
// Flag,unflag, expunge and check the message is still there.
c.C(`A00B UID STORE 1 +FLAGS (\Deleted)`)
c.S(`* 1 FETCH (FLAGS (\Deleted \Seen) UID 1)`)
c.OK(`A00B`)
c.C(`A00C UID STORE 1 -FLAGS (\Deleted)`)
c.S(`* 1 FETCH (FLAGS (\Seen) UID 1)`)
c.OK(`A00C`)
c.C(`A00D EXPUNGE`)
c.S(`A00D OK EXPUNGE`)
c.C(`A00E STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A00E OK STATUS`)
})
}
func TestRemoteDeleteOnSelectedMailboxRemoveMessageFromMailbox(t *testing.T) {
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, s *testSession) {
mailboxID := s.mailboxCreated("user", []string{"mbox1"})
messageID1 := s.messageCreated("user", mailboxID, []byte("To: 3@3.pm"), time.Now())
s.messageCreated("user", mailboxID, []byte("To: 4@4.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 2)`)
c.S(`A002 OK STATUS`)
c.C("A003 SELECT mbox1").OK("A003")
s.messageDeleted("user", messageID1)
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* 1 EXPUNGE`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
})
}
func TestRemoteDeleteOnNonSelectedMailboxRemoveMessageFromMailbox(t *testing.T) {
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, s *testSession) {
mailboxID := s.mailboxCreated("user", []string{"mbox1"})
messageID1 := s.messageCreated("user", mailboxID, []byte("To: 3@3.pm"), time.Now())
s.messageCreated("user", mailboxID, []byte("To: 4@4.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 2)`)
c.S(`A002 OK STATUS`)
s.messageDeleted("user", messageID1)
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
})
}
func TestRemoteMessageUpdate(t *testing.T) {
// Test that a sequence of delete followed by create with the same message ID results in an updated message.
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, s *testSession) {
mailboxID := s.mailboxCreated("user", []string{"mbox1"})
messageID := s.messageCreated("user", mailboxID, []byte("To: 3@3.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
s.messageUpdatedWithID("user", messageID, mailboxID, []byte("To: 4@4.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
c.C(`A00X SELECT mbox1`).OK(`A00X`)
c.C(`A005 FETCH 1 (BODY[HEADER.FIELDS (TO)])`)
c.S("* 1 FETCH (BODY[HEADER.FIELDS (TO)] {10}\r\nTo: 4@4.pm FLAGS (\\Recent \\Seen))")
c.OK("A005")
})
}
func TestRemoteMessageUpdateSucceedsIfLiteralIsMissing(t *testing.T) {
dataDir := filepath.Join(t.TempDir(), "test_store")
// Test that missing cache literal does not block an update.
runOneToOneTestWithAuth(t, defaultServerOptions(t, withDataDir(dataDir)), func(c *testConnection, s *testSession) {
mailboxID := s.mailboxCreated("user", []string{"mbox1"})
messageID := s.messageCreated("user", mailboxID, []byte("To: 3@3.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
// delete the literals
{
err := os.RemoveAll(dataDir)
require.NoError(t, err)
}
s.messageUpdatedWithID("user", messageID, mailboxID, []byte("To: 4@4.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
c.C(`A00X SELECT mbox1`).OK(`A00X`)
c.C(`A005 FETCH 1 (BODY[HEADER.FIELDS (TO)])`)
c.S("* 1 FETCH (BODY[HEADER.FIELDS (TO)] {10}\r\nTo: 4@4.pm FLAGS (\\Recent \\Seen))")
c.OK("A005")
})
}
func TestRemoteMessageUpdateChangesMailboxesOnly(t *testing.T) {
// Test that a sequence of delete followed by create with the same message ID results in an updated message.
runOneToOneTestWithAuth(t, defaultServerOptions(t), func(c *testConnection, s *testSession) {
mailboxID1 := s.mailboxCreated("user", []string{"mbox1"})
mailboxID2 := s.mailboxCreated("user", []string{"mbox2"})
messageID := s.messageCreated("user", mailboxID1, []byte("To: 3@3.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
s.messageUpdatedWithID("user", messageID, mailboxID2, []byte("To: 3@3.pm"), time.Now())
s.flush("user")
c.C(`A002 STATUS mbox1 (MESSAGES)`)
c.S(`* STATUS "mbox1" (MESSAGES 0)`)
c.S(`A002 OK STATUS`)
c.C(`A002 STATUS mbox2 (MESSAGES)`)
c.S(`* STATUS "mbox2" (MESSAGES 1)`)
c.S(`A002 OK STATUS`)
c.C(`A00X SELECT mbox2`).OK(`A00X`)
c.C(`A005 FETCH 1 (BODY[HEADER.FIELDS (TO)])`)
c.S("* 1 FETCH (BODY[HEADER.FIELDS (TO)] {10}\r\nTo: 3@3.pm FLAGS (\\Recent \\Seen))")
c.OK("A005")
})
}
|