mirror of
https://github.com/mjl-/mox.git
synced 2024-12-27 08:53:48 +03:00
24 lines
661 B
Go
24 lines
661 B
Go
|
package imapserver
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestUnsubscribe(t *testing.T) {
|
||
|
tc := start(t)
|
||
|
defer tc.close()
|
||
|
|
||
|
tc.client.Login("mjl@mox.example", "testtest")
|
||
|
|
||
|
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")
|
||
|
}
|