2023-01-30 16:27:06 +03:00
|
|
|
package imapserver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestUnsubscribe(t *testing.T) {
|
|
|
|
tc := start(t)
|
|
|
|
defer tc.close()
|
|
|
|
|
2024-03-09 01:29:15 +03:00
|
|
|
tc.client.Login("mjl@mox.example", password0)
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
tc.transactf("bad", "unsubscribe") // Missing param.
|
|
|
|
tc.transactf("bad", "unsubscribe ") // Missing param.
|
|
|
|
tc.transactf("bad", "unsubscribe fine ") // Leftover data.
|
|
|
|
|
|
|
|
tc.transactf("no", "unsubscribe a/b") // Does not exist and is not subscribed.
|
|
|
|
tc.transactf("ok", "create a/b")
|
|
|
|
tc.transactf("ok", "unsubscribe a/b")
|
|
|
|
tc.transactf("ok", "unsubscribe a/b") // Can unsubscribe even if it does not exist.
|
|
|
|
tc.transactf("ok", "subscribe a/b")
|
|
|
|
tc.transactf("ok", "unsubscribe a/b")
|
|
|
|
}
|