File: close_test.go

package info (click to toggle)
golang-github-protonmail-gluon 0.17.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,020 kB
  • sloc: sh: 55; makefile: 5
file content (126 lines) | stat: -rw-r--r-- 4,461 bytes parent folder | download
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
package tests

import (
	"strings"
	"testing"
	"time"

	goimap "github.com/emersion/go-imap"
	"github.com/emersion/go-imap/client"
	"github.com/stretchr/testify/require"
)

func TestClose(t *testing.T) {
	// This test is still useful as we have no way of checking the fetch responses after the store command.
	// Additionally, we also need to ensure that there are no unilateral EXPUNGE messages returned from the server after close.
	// There is currently no way to check for this with the go imap client.
	runManyToOneTestWithAuth(t, defaultServerOptions(t), []int{1, 2}, func(c map[int]*testConnection, s *testSession) {
		c[1].C("b001 CREATE saved-messages")
		c[1].S("b001 OK CREATE")

		c[1].doAppend(`saved-messages`, buildRFC5322TestLiteral(`To: 1@pm.me`), `\Seen`).expect("OK")
		c[1].doAppend(`saved-messages`, buildRFC5322TestLiteral(`To: 2@pm.me`)).expect("OK")
		c[1].doAppend(`saved-messages`, buildRFC5322TestLiteral(`To: 3@pm.me`), `\Seen`).expect("OK")
		c[1].doAppend(`saved-messages`, buildRFC5322TestLiteral(`To: 4@pm.me`)).expect("OK")
		c[1].doAppend(`saved-messages`, buildRFC5322TestLiteral(`To: 5@pm.me`), `\Seen`).expect("OK")

		c[1].C(`A002 SELECT saved-messages`)
		c[1].Se(`A002 OK [READ-WRITE] SELECT`)

		c[2].C(`B001 SELECT saved-messages`)
		c[2].Se(`B001 OK [READ-WRITE] SELECT`)
		c[2].C(`B002 FETCH 1:* (UID FLAGS)`)
		c[2].S(
			`* 1 FETCH (UID 1 FLAGS (\Seen))`,
			`* 2 FETCH (UID 2 FLAGS ())`,
			`* 3 FETCH (UID 3 FLAGS (\Seen))`,
			`* 4 FETCH (UID 4 FLAGS ())`,
			`* 5 FETCH (UID 5 FLAGS (\Seen))`,
		)
		c[2].OK("B002")

		// TODO: Match flags in any order.
		c[1].C(`A003 STORE 1 +FLAGS (\Deleted)`)
		c[1].S(`* 1 FETCH (FLAGS (\Deleted \Recent \Seen))`)
		c[1].Sx("A003 OK.*")

		c[1].C(`A004 STORE 2 +FLAGS (\Deleted)`)
		c[1].S(`* 2 FETCH (FLAGS (\Deleted \Recent))`)
		c[1].Sx("A004 OK.*")

		c[1].C(`A005 STORE 3 +FLAGS (\Deleted)`)
		c[1].S(`* 3 FETCH (FLAGS (\Deleted \Recent \Seen))`)
		c[1].Sx("A005 OK.*")

		s.flush("user")

		c[2].C("B003 NOOP")
		c[2].S(
			`* 1 FETCH (FLAGS (\Deleted \Seen))`,
			`* 2 FETCH (FLAGS (\Deleted))`,
			`* 3 FETCH (FLAGS (\Deleted \Seen))`,
		)
		c[2].OK("B003")

		c[2].C("B004 UID EXPUNGE 1")
		c[2].Se(`* 1 EXPUNGE`)
		c[2].OK("B004")

		c[1].C(`A202 CLOSE`)
		c[1].S("A202 OK CLOSE")

		s.flush("user")

		c[2].C("B003 NOOP")
		c[2].S(
			`* 1 EXPUNGE`,
			`* 1 EXPUNGE`,
		)
		c[2].OK("B003")

		// There are 2 messages in saved-messages.
		c[1].C(`A006 STATUS saved-messages (MESSAGES)`)
		c[1].S(`* STATUS "saved-messages" (MESSAGES 2)`)
		c[1].S(`A006 OK STATUS`)
	})
}

func TestCloseWithClient(t *testing.T) {
	runOneToOneTestClientWithAuth(t, defaultServerOptions(t), func(client *client.Client, _ *testSession) {
		const (
			messageBoxName = "saved-messages"
		)
		require.NoError(t, client.Create(messageBoxName))

		require.NoError(t, client.Append(messageBoxName, []string{goimap.SeenFlag}, time.Now(), strings.NewReader(buildRFC5322TestLiteral("To: 1@pm.me"))))
		require.NoError(t, client.Append(messageBoxName, nil, time.Now(), strings.NewReader(buildRFC5322TestLiteral("To: 2@pm.me"))))
		require.NoError(t, client.Append(messageBoxName, []string{goimap.SeenFlag}, time.Now(), strings.NewReader(buildRFC5322TestLiteral("To: 3@pm.me"))))
		require.NoError(t, client.Append(messageBoxName, nil, time.Now(), strings.NewReader(buildRFC5322TestLiteral("To: 4@pm.me"))))
		require.NoError(t, client.Append(messageBoxName, []string{goimap.SeenFlag}, time.Now(), strings.NewReader(buildRFC5322TestLiteral("To: 5@pm.me"))))

		{
			mailboxStatus, err := client.Select(messageBoxName, false)
			require.NoError(t, err)
			require.Equal(t, false, mailboxStatus.ReadOnly)
		}

		{
			sequenceSet, _ := goimap.ParseSeqSet("1")
			require.NoError(t, client.Store(sequenceSet, goimap.AddFlags, []interface{}{goimap.DeletedFlag}, nil))
		}
		{
			sequenceSet, _ := goimap.ParseSeqSet("2")
			require.NoError(t, client.Store(sequenceSet, goimap.AddFlags, []interface{}{goimap.DeletedFlag}, nil))
		}
		{
			sequenceSet, _ := goimap.ParseSeqSet("3")
			require.NoError(t, client.Store(sequenceSet, goimap.AddFlags, []interface{}{goimap.DeletedFlag}, nil))
		}
		require.NoError(t, client.Close())

		// There are 2 messages in saved-messages.
		mailboxStatus, err := client.Status(messageBoxName, []goimap.StatusItem{goimap.StatusMessages})
		require.NoError(t, err)
		require.Equal(t, uint32(2), mailboxStatus.Messages, "Expected message count does not match")
	})
}