Test handler for 324 RPL_CHANNELMODEIS.

This commit is contained in:
Alex Bramley 2011-09-09 23:24:08 +01:00
parent 47ae014c1c
commit 4008b84db6
1 changed files with 30 additions and 0 deletions

View File

@ -445,3 +445,33 @@ func Test311(t *testing.T) {
m.ExpectNothing() m.ExpectNothing()
c.ExpectError() c.ExpectError()
} }
// Test the handler for 324 / RPL_CHANNELMODEIS
func Test324(t *testing.T) {
m, c := setUp(t)
defer tearDown(m, c)
// Create #test1, whose modes we don't know
test1 := c.NewChannel("#test1")
cm := test1.Modes
// Make sure modes are unset first
if cm.Secret || cm.NoExternalMsg || cm.Moderated || cm.Key != "" {
t.Errorf("Channel modes unexpectedly set before 324 reply.")
}
// Send a 324 reply
c.h_324(parseLine(":irc.server.org 324 test #test1 +snk somekey"))
m.ExpectNothing()
c.ExpectNoErrors()
// Make sure the modes we expected to be set were set and vice versa
if !cm.Secret || !cm.NoExternalMsg || cm.Moderated || cm.Key != "somekey" {
t.Errorf("Channel modes unexpectedly set before 324 reply.")
}
// Check unknown channel causes an error
c.h_324(parseLine(":irc.server.org 324 test #test2 +pmt"))
m.ExpectNothing()
c.ExpectError()
}