mirror of
https://github.com/mjl-/mox.git
synced 2025-06-27 21:48:16 +03:00

Once clients enable this extension, commands can no longer refer to "message sequence numbers" (MSNs), but can only refer to messages with UIDs. This means both sides no longer have to carefully keep their sequence numbers in sync (error-prone), and don't have to keep track of a mapping of sequence numbers to UIDs (saves resources). With UIDONLY enabled, all FETCH responses are replaced with UIDFETCH response.
55 lines
1.9 KiB
Go
55 lines
1.9 KiB
Go
package imapserver
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mjl-/mox/imapclient"
|
|
)
|
|
|
|
func TestQuota1(t *testing.T) {
|
|
tc := start(t, false)
|
|
defer tc.close()
|
|
|
|
tc.login("mjl@mox.example", password0)
|
|
|
|
// We don't implement setquota.
|
|
tc.transactf("bad", `setquota "" (STORAGE 123)`)
|
|
|
|
tc.transactf("bad", "getquotaroot") // Missing param.
|
|
tc.transactf("bad", "getquotaroot inbox bogus") // Too many params.
|
|
|
|
tc.transactf("bad", "getquota") // Missing param.
|
|
tc.transactf("bad", "getquota a b") // Too many params.
|
|
|
|
// tc does not have a limit.
|
|
tc.transactf("ok", "getquotaroot inbox")
|
|
tc.xuntagged(imapclient.UntaggedQuotaroot([]string{""}))
|
|
|
|
tc.transactf("no", "getquota bogusroot")
|
|
tc.transactf("ok", `getquota ""`)
|
|
tc.xuntagged()
|
|
|
|
// Check that we get a DELETED-STORAGE status attribute with value 0, also if
|
|
// messages are marked deleted. We don't go through the trouble.
|
|
tc.transactf("ok", "status inbox (DELETED-STORAGE)")
|
|
tc.xuntagged(imapclient.UntaggedStatus{Mailbox: "Inbox", Attrs: map[imapclient.StatusAttr]int64{imapclient.StatusDeletedStorage: 0}})
|
|
|
|
// tclimit does have a limit.
|
|
tclimit := startArgs(t, false, false, false, true, true, "limit")
|
|
defer tclimit.close()
|
|
|
|
tclimit.login("limit@mox.example", password0)
|
|
|
|
tclimit.transactf("ok", "getquotaroot inbox")
|
|
tclimit.xuntagged(
|
|
imapclient.UntaggedQuotaroot([]string{""}),
|
|
imapclient.UntaggedQuota{Root: "", Resources: []imapclient.QuotaResource{{Name: imapclient.QuotaResourceStorage, Usage: 0, Limit: 1}}},
|
|
)
|
|
|
|
tclimit.transactf("ok", `getquota ""`)
|
|
tclimit.xuntagged(imapclient.UntaggedQuota{Root: "", Resources: []imapclient.QuotaResource{{Name: imapclient.QuotaResourceStorage, Usage: 0, Limit: 1}}})
|
|
|
|
tclimit.transactf("ok", "status inbox (DELETED-STORAGE)")
|
|
tclimit.xuntagged(imapclient.UntaggedStatus{Mailbox: "Inbox", Attrs: map[imapclient.StatusAttr]int64{imapclient.StatusDeletedStorage: 0}})
|
|
}
|