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
|
package tests
import (
"testing"
"time"
imap2 "github.com/ProtonMail/gluon/imap"
"github.com/emersion/go-imap"
"github.com/emersion/go-imap/client"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
)
func TestRename(t *testing.T) {
runOneToOneTestClientWithAuth(t, defaultServerOptions(t), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("blurdybloop"))
require.NoError(t, client.Create("foo"))
require.NoError(t, client.Create("foo/bar"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "foo", "foo/bar", "blurdybloop"})
require.NoError(t, client.Rename("blurdybloop", "sarasoop"))
require.NoError(t, client.Rename("foo", "zowie"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "zowie", "zowie/bar", "sarasoop"})
})
}
func TestRenameHierarchy(t *testing.T) {
runOneToOneTestClientWithAuth(t, defaultServerOptions(t), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("foo/bar/zap"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "foo", "foo/bar", "foo/bar/zap"})
require.NoError(t, client.Rename("foo/bar/zap", "baz/rag/zowie"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "foo", "foo/bar", "baz", "baz/rag", "baz/rag/zowie"})
})
}
func TestRenameHierarchyRoot(t *testing.T) {
runOneToOneTestClientWithAuth(t, defaultServerOptions(t), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("foo/bar/zap"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "foo", "foo/bar", "foo/bar/zap"})
require.NoError(t, client.Rename("foo", "baz"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "baz", "baz/bar", "baz/bar/zap"})
})
}
func TestRenameAddHierarchy(t *testing.T) {
type renameTC struct {
src string
dest string
result []string
newFolder string
}
testCases := []renameTC{
// 0 - rename the first level.
{
"foo", "bar.foo",
[]string{"INBOX", "bar", "bar.foo", "bar.foo.bar"},
"bar",
},
// 1 - rename the last level.
{
"foo.bar", "foo.rag.bar",
[]string{"INBOX", "foo", "foo.rag", "foo.rag.bar"},
"foo.rag",
},
}
initialMailbox := []string{"INBOX", "foo", "foo.bar"}
const messagePath = "testdata/afternoon-meeting.eml"
for i, tc := range testCases {
logrus.Trace(" --- test case ", i, " ---")
runOneToOneTestClientWithAuth(t, defaultServerOptions(t, withDelimiter(".")), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("foo.bar"))
matchMailboxNamesClient(t, client, "", "*", initialMailbox)
// add a mail to every existing mailbox.
for _, box := range initialMailbox {
require.NoError(t, doAppendWithClientFromFile(t, client, box, messagePath, time.Now()))
}
// rename.
require.NoError(t, client.Rename(tc.src, tc.dest))
matchMailboxNamesClient(t, client, "", "*", tc.result)
// all box except new one should have a mail
for _, name := range tc.result {
currStatus, err := client.Status(name, []imap.StatusItem{imap.StatusMessages})
require.NoError(t, err)
if name == tc.newFolder {
require.Equal(t, uint32(0), currStatus.Messages, "Expected no message in the new folder %v", name)
} else {
require.Equal(t, uint32(1), currStatus.Messages, "Expected message to be kept in %v", name)
}
}
})
}
}
func TestRenameBadHierarchy(t *testing.T) {
runOneToOneTestClientWithAuth(t, defaultServerOptions(t, withDelimiter(".")), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("foo.bar"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "foo", "foo.bar"})
require.Error(t, client.Rename("foo", "foo.foo"))
require.Error(t, client.Rename("foo", "foo.foo.foo"))
require.Error(t, client.Rename("foo", "foo.bar"))
require.NoError(t, client.Rename("foo", "bar.foo"))
})
}
func TestRenameInbox(t *testing.T) {
runOneToOneTestWithData(t, defaultServerOptions(t), func(c *testConnection, s *testSession, mbox string, mboxID imap2.MailboxID) {
// Put all the 100 messages into the inbox.
c.C("tag move 1:* inbox").OK("tag")
// Check there are 100 messages in inbox.
s.flush("user")
c.C("tag status inbox (messages)").Sxe("MESSAGES 100").OK("tag")
// Renaming the inbox will create a new mailbox and put all the messages in there.
c.C("tag rename inbox some/other/mailbox").OK("tag")
// There are now 0 messages in the inbox; they've all been moved to this new mailbox.
s.flush("user")
c.C("tag status inbox (messages)").Sxe("MESSAGES 0").OK("tag")
c.C("tag status some/other/mailbox (messages)").Sxe("MESSAGES 100").OK("tag")
// Put all the 100 messages back into the inbox.
c.C("tag select some/other/mailbox").OK("tag")
c.C("tag move 1:* inbox").OK("tag")
// Check there are 100 messages in inbox and none in the other mailbox.
s.flush("user")
c.C("tag status inbox (messages)").Sxe("MESSAGES 100").OK("tag")
c.C("tag status some/other/mailbox (messages)").Sxe("MESSAGES 0").OK("tag")
// Renaming the inbox again will do the same as before.
c.C("tag rename inbox yet/another/mailbox").OK("tag")
// Check there are no messages in inbox and 100 in the other mailbox.
s.flush("user")
c.C("tag status inbox (messages)").Sxe("MESSAGES 0").OK("tag")
c.C("tag status some/other/mailbox (messages)").Sxe("MESSAGES 0").OK("tag")
c.C("tag status yet/another/mailbox (messages)").Sxe("MESSAGES 100").OK("tag")
})
runOneToOneTestClientWithAuth(t, defaultServerOptions(t, withDelimiter(".")), func(client *client.Client, _ *testSession) {
require.NoError(t, client.Create("INBOX.foo.bar"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "INBOX.foo", "INBOX.foo.bar"})
// rename.
require.NoError(t, client.Rename("INBOX", "bar"))
matchMailboxNamesClient(t, client, "", "*", []string{"INBOX", "bar", "INBOX.foo", "INBOX.foo.bar"})
})
}
|