2011-08-22 22:24:05 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2012-06-26 10:20:57 +00:00
|
|
|
"code.google.com/p/gomock/gomock"
|
2011-11-06 04:56:46 +00:00
|
|
|
"github.com/fluffle/goirc/state"
|
2011-08-22 22:24:05 +00:00
|
|
|
"testing"
|
2013-02-16 00:17:31 +00:00
|
|
|
"time"
|
2011-08-22 22:24:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This test performs a simple end-to-end verification of correct line parsing
|
|
|
|
// and event dispatch as well as testing the PING handler. All the other tests
|
|
|
|
// in this file will call their respective handlers synchronously, otherwise
|
|
|
|
// testing becomes more difficult.
|
|
|
|
func TestPING(t *testing.T) {
|
2013-02-16 00:17:31 +00:00
|
|
|
_, s := setUp(t)
|
2011-11-06 04:56:46 +00:00
|
|
|
defer s.tearDown()
|
|
|
|
s.nc.Send("PING :1234567890")
|
|
|
|
s.nc.Expect("PONG :1234567890")
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 01:36:17 +00:00
|
|
|
// Test the REGISTER handler matches section 3.1 of rfc2812
|
|
|
|
func TestREGISTER(t *testing.T) {
|
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
|
|
|
c.h_REGISTER(&Line{Cmd: REGISTER})
|
|
|
|
s.nc.Expect("NICK test")
|
|
|
|
s.nc.Expect("USER test 12 * :Testing IRC")
|
|
|
|
s.nc.ExpectNothing()
|
|
|
|
|
|
|
|
c.cfg.Pass = "12345"
|
|
|
|
c.cfg.Me.Ident = "idiot"
|
|
|
|
c.cfg.Me.Name = "I've got the same combination on my luggage!"
|
|
|
|
c.h_REGISTER(&Line{Cmd: REGISTER})
|
|
|
|
s.nc.Expect("PASS 12345")
|
|
|
|
s.nc.Expect("NICK test")
|
|
|
|
s.nc.Expect("USER idiot 12 * :I've got the same combination on my luggage!")
|
|
|
|
s.nc.ExpectNothing()
|
|
|
|
}
|
|
|
|
|
2011-08-22 22:24:05 +00:00
|
|
|
// Test the handler for 001 / RPL_WELCOME
|
|
|
|
func Test001(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-08-22 22:24:05 +00:00
|
|
|
|
2011-11-07 14:50:23 +00:00
|
|
|
l := parseLine(":irc.server.org 001 test :Welcome to IRC test!ident@somehost.com")
|
2013-02-16 00:17:31 +00:00
|
|
|
// Set up a handler to detect whether connected handler is called from 001
|
|
|
|
hcon := false
|
2013-02-16 10:33:15 +00:00
|
|
|
c.HandleFunc("connected", func(conn *Conn, line *Line) {
|
2013-02-16 00:17:31 +00:00
|
|
|
hcon = true
|
|
|
|
})
|
|
|
|
|
2011-08-22 22:24:05 +00:00
|
|
|
// Call handler with a valid 001 line
|
2011-11-07 14:50:23 +00:00
|
|
|
c.h_001(l)
|
2013-02-16 00:17:31 +00:00
|
|
|
<-time.After(time.Millisecond)
|
|
|
|
if !hcon {
|
|
|
|
t.Errorf("001 handler did not dispatch connected event.")
|
|
|
|
}
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Check host parsed correctly
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Host != "somehost.com" {
|
|
|
|
t.Errorf("Host parsing failed, host is '%s'.", c.cfg.Me.Host)
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the handler for 433 / ERR_NICKNAMEINUSE
|
|
|
|
func Test433(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-09 22:04:27 +00:00
|
|
|
|
2013-02-18 01:36:17 +00:00
|
|
|
// Call handler with a 433 line, not triggering c.cfg.Me.Renick()
|
2011-08-22 22:24:05 +00:00
|
|
|
c.h_433(parseLine(":irc.server.org 433 test new :Nickname is already in use."))
|
2011-11-06 04:56:46 +00:00
|
|
|
s.nc.Expect("NICK new_")
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// In this case, we're expecting the server to send a NICK line
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test" {
|
|
|
|
t.Errorf("ReNick() called unexpectedly, Nick == '%s'.", c.cfg.Me.Nick)
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 22:25:09 +00:00
|
|
|
// Send a line that will trigger a renick. This happens when our wanted
|
2011-08-22 22:24:05 +00:00
|
|
|
// nick is unavailable during initial negotiation, so we must choose a
|
|
|
|
// different one before the connection can proceed. No NICK line will be
|
|
|
|
// sent by the server to confirm nick change in this case.
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().ReNick("test", "test_")
|
2011-08-22 22:24:05 +00:00
|
|
|
c.h_433(parseLine(":irc.server.org 433 test test :Nickname is already in use."))
|
2011-11-06 04:56:46 +00:00
|
|
|
s.nc.Expect("NICK test_")
|
|
|
|
|
2013-02-18 01:36:17 +00:00
|
|
|
// Counter-intuitively, c.cfg.Me.Nick will not change in this case. This
|
|
|
|
// is an artifact of the test set-up, with a mocked out state tracker that
|
2011-11-06 04:56:46 +00:00
|
|
|
// doesn't actually change any state. Normally, this would be fine :-)
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test" {
|
|
|
|
t.Errorf("My nick changed from '%s'.", c.cfg.Me.Nick)
|
2011-11-06 04:56:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test the code path that *doesn't* involve state tracking.
|
2013-02-16 11:29:56 +00:00
|
|
|
c.st = nil
|
2011-11-06 04:56:46 +00:00
|
|
|
c.h_433(parseLine(":irc.server.org 433 test test :Nickname is already in use."))
|
|
|
|
s.nc.Expect("NICK test_")
|
2011-08-22 22:24:05 +00:00
|
|
|
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test_" {
|
|
|
|
t.Errorf("My nick not updated from '%s'.", c.cfg.Me.Nick)
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
2013-02-16 11:29:56 +00:00
|
|
|
c.st = s.st
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Test the handler for NICK messages when state tracking is disabled
|
2011-08-22 22:24:05 +00:00
|
|
|
func TestNICK(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
|
|
|
// State tracking is enabled by default in setUp
|
2013-02-16 11:29:56 +00:00
|
|
|
c.st = nil
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Call handler with a NICK line changing "our" nick to test1.
|
|
|
|
c.h_NICK(parseLine(":test!test@somehost.com NICK :test1"))
|
2011-08-23 09:52:16 +00:00
|
|
|
|
|
|
|
// Verify that our Nick has changed
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test1" {
|
2011-08-22 22:24:05 +00:00
|
|
|
t.Errorf("NICK did not result in changing our nick.")
|
|
|
|
}
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Send a NICK line for something that isn't us.
|
|
|
|
c.h_NICK(parseLine(":blah!moo@cows.com NICK :milk"))
|
2011-08-24 12:53:28 +00:00
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Verify that our Nick hasn't changed
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test1" {
|
2011-11-06 04:56:46 +00:00
|
|
|
t.Errorf("NICK did not result in changing our nick.")
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Re-enable state tracking and send a line that *should* change nick.
|
2013-02-16 11:29:56 +00:00
|
|
|
c.st = s.st
|
2011-11-06 04:56:46 +00:00
|
|
|
c.h_NICK(parseLine(":test1!test@somehost.com NICK :test2"))
|
|
|
|
|
|
|
|
// Verify that our Nick hasn't changed (should be handled by h_STNICK).
|
2013-02-18 01:36:17 +00:00
|
|
|
if c.cfg.Me.Nick != "test1" {
|
2011-11-06 04:56:46 +00:00
|
|
|
t.Errorf("NICK changed our nick when state tracking enabled.")
|
|
|
|
}
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
2011-08-23 10:03:59 +00:00
|
|
|
|
2011-08-24 11:46:21 +00:00
|
|
|
// Test the handler for CTCP messages
|
2011-08-23 10:03:59 +00:00
|
|
|
func TestCTCP(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-08-23 10:03:59 +00:00
|
|
|
|
|
|
|
// Call handler with CTCP VERSION
|
|
|
|
c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001VERSION\001"))
|
|
|
|
|
|
|
|
// Expect a version reply
|
2013-02-19 01:02:58 +00:00
|
|
|
s.nc.Expect("NOTICE blah :\001VERSION Powered by GoIRC\001")
|
2011-08-23 10:03:59 +00:00
|
|
|
|
|
|
|
// Call handler with CTCP PING
|
|
|
|
c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001PING 1234567890\001"))
|
|
|
|
|
|
|
|
// Expect a ping reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.nc.Expect("NOTICE blah :\001PING 1234567890\001")
|
2011-08-23 10:03:59 +00:00
|
|
|
|
|
|
|
// Call handler with CTCP UNKNOWN
|
|
|
|
c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001UNKNOWN ctcp\001"))
|
|
|
|
}
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Test the handler for JOIN messages
|
|
|
|
func TestJOIN(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
|
|
|
// The state tracker should be creating a new channel in this first test
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
2011-08-24 11:46:21 +00:00
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(nil),
|
2013-02-18 01:36:17 +00:00
|
|
|
s.st.EXPECT().GetNick("test").Return(c.cfg.Me),
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().NewChannel("#test1").Return(chan1),
|
2013-02-18 01:36:17 +00:00
|
|
|
s.st.EXPECT().Associate(chan1, c.cfg.Me),
|
2011-11-06 04:56:46 +00:00
|
|
|
)
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Use #test1 to test expected behaviour
|
|
|
|
// Call handler with JOIN by test to #test1
|
|
|
|
c.h_JOIN(parseLine(":test!test@somehost.com JOIN :#test1"))
|
|
|
|
|
|
|
|
// Verify that the MODE and WHO commands are sent correctly
|
2011-11-06 04:56:46 +00:00
|
|
|
s.nc.Expect("MODE #test1")
|
|
|
|
s.nc.Expect("WHO #test1")
|
2011-08-24 11:46:21 +00:00
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// In this second test, we should be creating a new nick
|
2013-02-16 00:11:39 +00:00
|
|
|
nick1 := state.NewNick("user1")
|
2011-11-06 04:56:46 +00:00
|
|
|
|
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1),
|
|
|
|
s.st.EXPECT().GetNick("user1").Return(nil),
|
|
|
|
s.st.EXPECT().NewNick("user1").Return(nick1),
|
|
|
|
s.st.EXPECT().Associate(chan1, nick1),
|
|
|
|
)
|
2011-08-24 11:46:21 +00:00
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// OK, now #test1 exists, JOIN another user we don't know about
|
|
|
|
c.h_JOIN(parseLine(":user1!ident1@host1.com JOIN :#test1"))
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Verify that the WHO command is sent correctly
|
2011-11-06 04:56:46 +00:00
|
|
|
s.nc.Expect("WHO user1")
|
|
|
|
|
|
|
|
// In this third test, we'll be pretending we know about the nick already.
|
2013-02-16 00:11:39 +00:00
|
|
|
nick2 := state.NewNick("user2")
|
2011-11-06 04:56:46 +00:00
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1),
|
|
|
|
s.st.EXPECT().GetNick("user2").Return(nick2),
|
|
|
|
s.st.EXPECT().Associate(chan1, nick2),
|
|
|
|
)
|
2011-08-24 12:57:06 +00:00
|
|
|
c.h_JOIN(parseLine(":user2!ident2@host2.com JOIN :#test1"))
|
2011-08-24 11:46:21 +00:00
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Test error paths
|
|
|
|
gomock.InOrder(
|
|
|
|
// unknown channel, unknown nick
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil),
|
|
|
|
s.st.EXPECT().GetNick("blah").Return(nil),
|
|
|
|
// unknown channel, known nick that isn't Me.
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil),
|
|
|
|
s.st.EXPECT().GetNick("user2").Return(nick2),
|
|
|
|
)
|
2011-08-24 12:57:06 +00:00
|
|
|
c.h_JOIN(parseLine(":blah!moo@cows.com JOIN :#test2"))
|
|
|
|
c.h_JOIN(parseLine(":user2!ident2@host2.com JOIN :#test2"))
|
2011-08-24 11:46:21 +00:00
|
|
|
}
|
2011-08-24 13:34:11 +00:00
|
|
|
|
|
|
|
// Test the handler for PART messages
|
|
|
|
func TestPART(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
|
|
|
// We need some valid and associated nicks / channels to PART with.
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
|
|
|
nick1 := state.NewNick("user1")
|
2011-11-06 04:56:46 +00:00
|
|
|
|
|
|
|
// PART should dissociate a nick from a channel.
|
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1),
|
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1),
|
|
|
|
s.st.EXPECT().Dissociate(chan1, nick1),
|
|
|
|
)
|
2011-08-24 13:34:11 +00:00
|
|
|
c.h_PART(parseLine(":user1!ident1@host1.com PART #test1 :Bye!"))
|
|
|
|
}
|
2011-08-30 22:15:54 +00:00
|
|
|
|
|
|
|
// Test the handler for KICK messages
|
|
|
|
// (this is very similar to the PART message test)
|
|
|
|
func TestKICK(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
|
|
|
// We need some valid and associated nicks / channels to KICK.
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
|
|
|
nick1 := state.NewNick("user1")
|
2011-11-06 04:56:46 +00:00
|
|
|
|
|
|
|
// KICK should dissociate a nick from a channel.
|
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1),
|
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1),
|
|
|
|
s.st.EXPECT().Dissociate(chan1, nick1),
|
|
|
|
)
|
2011-08-30 22:15:54 +00:00
|
|
|
c.h_KICK(parseLine(":test!test@somehost.com KICK #test1 user1 :Bye!"))
|
|
|
|
}
|
2011-08-31 21:55:56 +00:00
|
|
|
|
|
|
|
// Test the handler for QUIT messages
|
|
|
|
func TestQUIT(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-08-31 21:55:56 +00:00
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
// Have user1 QUIT. All possible errors handled by state tracker \o/
|
|
|
|
s.st.EXPECT().DelNick("user1")
|
2011-08-31 21:55:56 +00:00
|
|
|
c.h_QUIT(parseLine(":user1!ident1@host1.com QUIT :Bye!"))
|
|
|
|
}
|
2011-09-09 21:32:55 +00:00
|
|
|
|
|
|
|
// Test the handler for MODE messages
|
|
|
|
func TestMODE(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
|
|
|
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
|
|
|
nick1 := state.NewNick("user1")
|
2011-11-06 04:56:46 +00:00
|
|
|
|
|
|
|
// Send a channel mode line. Inconveniently, Channel and Nick objects
|
|
|
|
// aren't mockable with gomock as they're not interface types (and I
|
|
|
|
// don't want them to be, writing accessors for struct fields sucks).
|
|
|
|
// This makes testing whether ParseModes is called correctly harder.
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1)
|
|
|
|
c.h_MODE(parseLine(":user1!ident1@host1.com MODE #test1 +sk somekey"))
|
|
|
|
if !chan1.Modes.Secret || chan1.Modes.Key != "somekey" {
|
|
|
|
t.Errorf("Channel.ParseModes() not called correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a nick mode line, returning Me
|
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetChannel("test").Return(nil),
|
2013-02-18 01:36:17 +00:00
|
|
|
s.st.EXPECT().GetNick("test").Return(c.cfg.Me),
|
2011-11-06 04:56:46 +00:00
|
|
|
)
|
|
|
|
c.h_MODE(parseLine(":test!test@somehost.com MODE test +i"))
|
2013-02-18 01:36:17 +00:00
|
|
|
if !c.cfg.Me.Modes.Invisible {
|
2011-11-06 04:56:46 +00:00
|
|
|
t.Errorf("Nick.ParseModes() not called correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check error paths
|
|
|
|
gomock.InOrder(
|
|
|
|
// send a valid user mode that's not us
|
|
|
|
s.st.EXPECT().GetChannel("user1").Return(nil),
|
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1),
|
|
|
|
// Send a random mode for an unknown channel
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil),
|
|
|
|
s.st.EXPECT().GetNick("#test2").Return(nil),
|
|
|
|
)
|
2011-09-09 21:32:55 +00:00
|
|
|
c.h_MODE(parseLine(":user1!ident1@host1.com MODE user1 +w"))
|
|
|
|
c.h_MODE(parseLine(":user1!ident1@host1.com MODE #test2 +is"))
|
|
|
|
}
|
2011-09-09 22:02:33 +00:00
|
|
|
|
|
|
|
// Test the handler for TOPIC messages
|
|
|
|
func TestTOPIC(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-09 22:02:33 +00:00
|
|
|
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
2011-09-09 22:02:33 +00:00
|
|
|
|
|
|
|
// Assert that it has no topic originally
|
2011-11-06 04:56:46 +00:00
|
|
|
if chan1.Topic != "" {
|
2011-09-09 22:02:33 +00:00
|
|
|
t.Errorf("Test channel already has a topic.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a TOPIC line
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1)
|
2011-09-09 22:02:33 +00:00
|
|
|
c.h_TOPIC(parseLine(":user1!ident1@host1.com TOPIC #test1 :something something"))
|
|
|
|
|
|
|
|
// Make sure the channel's topic has been changed
|
2011-11-06 04:56:46 +00:00
|
|
|
if chan1.Topic != "something something" {
|
2011-09-09 22:02:33 +00:00
|
|
|
t.Errorf("Topic of test channel not set correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check error paths -- send a topic for an unknown channel
|
2013-02-16 00:11:39 +00:00
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil)
|
2011-09-09 22:02:33 +00:00
|
|
|
c.h_TOPIC(parseLine(":user1!ident1@host1.com TOPIC #test2 :dark side"))
|
|
|
|
}
|
2011-09-09 22:03:44 +00:00
|
|
|
|
|
|
|
// Test the handler for 311 / RPL_WHOISUSER
|
|
|
|
func Test311(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-09 22:03:44 +00:00
|
|
|
|
|
|
|
// Create user1, who we know little about
|
2013-02-16 00:11:39 +00:00
|
|
|
nick1 := state.NewNick("user1")
|
2011-09-09 22:03:44 +00:00
|
|
|
|
|
|
|
// Send a 311 reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1)
|
2011-09-09 22:03:44 +00:00
|
|
|
c.h_311(parseLine(":irc.server.org 311 test user1 ident1 host1.com * :name"))
|
|
|
|
|
|
|
|
// Verify we now know more about user1
|
2011-11-06 04:56:46 +00:00
|
|
|
if nick1.Ident != "ident1" ||
|
|
|
|
nick1.Host != "host1.com" ||
|
|
|
|
nick1.Name != "name" {
|
2011-09-09 22:03:44 +00:00
|
|
|
t.Errorf("WHOIS info of user1 not set correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check error paths -- send a 311 for an unknown nick
|
2013-02-16 00:11:39 +00:00
|
|
|
s.st.EXPECT().GetNick("user2").Return(nil)
|
2011-09-09 22:03:44 +00:00
|
|
|
c.h_311(parseLine(":irc.server.org 311 test user2 ident2 host2.com * :dongs"))
|
|
|
|
}
|
2011-09-09 22:24:08 +00:00
|
|
|
|
|
|
|
// Test the handler for 324 / RPL_CHANNELMODEIS
|
|
|
|
func Test324(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-09 22:24:08 +00:00
|
|
|
|
|
|
|
// Create #test1, whose modes we don't know
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
2011-09-09 22:24:08 +00:00
|
|
|
|
|
|
|
// Send a 324 reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1)
|
|
|
|
c.h_324(parseLine(":irc.server.org 324 test #test1 +sk somekey"))
|
|
|
|
if !chan1.Modes.Secret || chan1.Modes.Key != "somekey" {
|
|
|
|
t.Errorf("Channel.ParseModes() not called correctly.")
|
2011-09-09 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2013-02-16 00:11:39 +00:00
|
|
|
// Check error paths -- send 324 for an unknown channel
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil)
|
2011-09-09 22:24:08 +00:00
|
|
|
c.h_324(parseLine(":irc.server.org 324 test #test2 +pmt"))
|
|
|
|
}
|
2011-09-09 22:27:45 +00:00
|
|
|
|
|
|
|
// Test the handler for 332 / RPL_TOPIC
|
|
|
|
func Test332(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-09 22:27:45 +00:00
|
|
|
|
|
|
|
// Create #test1, whose topic we don't know
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
2011-09-09 22:27:45 +00:00
|
|
|
|
|
|
|
// Assert that it has no topic originally
|
2011-11-06 04:56:46 +00:00
|
|
|
if chan1.Topic != "" {
|
2011-09-09 22:27:45 +00:00
|
|
|
t.Errorf("Test channel already has a topic.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a 332 reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1)
|
2011-09-09 22:27:45 +00:00
|
|
|
c.h_332(parseLine(":irc.server.org 332 test #test1 :something something"))
|
|
|
|
|
|
|
|
// Make sure the channel's topic has been changed
|
2011-11-06 04:56:46 +00:00
|
|
|
if chan1.Topic != "something something" {
|
2011-09-09 22:27:45 +00:00
|
|
|
t.Errorf("Topic of test channel not set correctly.")
|
|
|
|
}
|
|
|
|
|
2013-02-16 00:11:39 +00:00
|
|
|
// Check error paths -- send 332 for an unknown channel
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil)
|
2011-11-06 04:56:46 +00:00
|
|
|
c.h_332(parseLine(":irc.server.org 332 test #test2 :dark side"))
|
2011-09-09 22:27:45 +00:00
|
|
|
}
|
2011-09-11 10:01:28 +00:00
|
|
|
|
|
|
|
// Test the handler for 352 / RPL_WHOREPLY
|
|
|
|
func Test352(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-11 10:01:28 +00:00
|
|
|
|
|
|
|
// Create user1, who we know little about
|
2013-02-16 00:11:39 +00:00
|
|
|
nick1 := state.NewNick("user1")
|
2011-09-11 10:01:28 +00:00
|
|
|
|
|
|
|
// Send a 352 reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1)
|
2011-09-11 10:01:28 +00:00
|
|
|
c.h_352(parseLine(":irc.server.org 352 test #test1 ident1 host1.com irc.server.org user1 G :0 name"))
|
|
|
|
|
|
|
|
// Verify we now know more about user1
|
2011-11-06 04:56:46 +00:00
|
|
|
if nick1.Ident != "ident1" ||
|
|
|
|
nick1.Host != "host1.com" ||
|
|
|
|
nick1.Name != "name" ||
|
|
|
|
nick1.Modes.Invisible ||
|
|
|
|
nick1.Modes.Oper {
|
2011-09-11 10:01:28 +00:00
|
|
|
t.Errorf("WHO info of user1 not set correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that modes are set correctly from WHOREPLY
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1)
|
2011-09-11 10:01:28 +00:00
|
|
|
c.h_352(parseLine(":irc.server.org 352 test #test1 ident1 host1.com irc.server.org user1 H* :0 name"))
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
if !nick1.Modes.Invisible || !nick1.Modes.Oper {
|
2011-09-11 10:01:28 +00:00
|
|
|
t.Errorf("WHO modes of user1 not set correctly.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check error paths -- send a 352 for an unknown nick
|
2013-02-16 00:11:39 +00:00
|
|
|
s.st.EXPECT().GetNick("user2").Return(nil)
|
2011-09-11 10:01:28 +00:00
|
|
|
c.h_352(parseLine(":irc.server.org 352 test #test2 ident2 host2.com irc.server.org user2 G :0 fooo"))
|
|
|
|
}
|
2011-09-12 22:14:08 +00:00
|
|
|
|
|
|
|
// Test the handler for 353 / RPL_NAMREPLY
|
|
|
|
func Test353(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-12 22:14:08 +00:00
|
|
|
|
|
|
|
// Create #test1, whose user list we're mostly unfamiliar with
|
2013-02-16 00:11:39 +00:00
|
|
|
chan1 := state.NewChannel("#test1")
|
2011-11-06 04:56:46 +00:00
|
|
|
|
|
|
|
// Create maps for testing -- this is what the mock ST calls will return
|
|
|
|
nicks := make(map[string]*state.Nick)
|
|
|
|
privs := make(map[string]*state.ChanPrivs)
|
|
|
|
|
2013-02-18 01:36:17 +00:00
|
|
|
nicks["test"] = c.cfg.Me
|
2011-11-06 04:56:46 +00:00
|
|
|
privs["test"] = new(state.ChanPrivs)
|
|
|
|
|
|
|
|
for _, n := range []string{"user1", "user2", "voice", "halfop",
|
|
|
|
"op", "admin", "owner"} {
|
2013-02-16 00:11:39 +00:00
|
|
|
nicks[n] = state.NewNick(n)
|
2011-11-06 04:56:46 +00:00
|
|
|
privs[n] = new(state.ChanPrivs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 353 handler is called twice, so GetChannel will be called twice
|
|
|
|
s.st.EXPECT().GetChannel("#test1").Return(chan1).Times(2)
|
|
|
|
gomock.InOrder(
|
|
|
|
// "test" is Me, i am known, and already on the channel
|
2013-02-18 01:36:17 +00:00
|
|
|
s.st.EXPECT().GetNick("test").Return(c.cfg.Me),
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().IsOn("#test1", "test").Return(privs["test"], true),
|
|
|
|
// user1 is known, but not on the channel, so should be associated
|
|
|
|
s.st.EXPECT().GetNick("user1").Return(nicks["user1"]),
|
|
|
|
s.st.EXPECT().IsOn("#test1", "user1").Return(nil, false),
|
|
|
|
s.st.EXPECT().Associate(chan1, nicks["user1"]).Return(privs["user1"]),
|
|
|
|
)
|
|
|
|
for _, n := range []string{"user2", "voice", "halfop", "op", "admin", "owner"} {
|
|
|
|
gomock.InOrder(
|
|
|
|
s.st.EXPECT().GetNick(n).Return(nil),
|
|
|
|
s.st.EXPECT().NewNick(n).Return(nicks[n]),
|
|
|
|
s.st.EXPECT().IsOn("#test1", n).Return(nil, false),
|
|
|
|
s.st.EXPECT().Associate(chan1, nicks[n]).Return(privs[n]),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a couple of names replies (complete with trailing space)
|
2011-09-12 22:14:08 +00:00
|
|
|
c.h_353(parseLine(":irc.server.org 353 test = #test1 :test @user1 user2 +voice "))
|
|
|
|
c.h_353(parseLine(":irc.server.org 353 test = #test1 :%halfop @op &admin ~owner "))
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
if p := privs["user2"]; p.Voice || p.HalfOp || p.Op || p.Admin || p.Owner {
|
|
|
|
t.Errorf("353 handler incorrectly set modes on nick.")
|
2011-09-12 22:14:08 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 04:56:46 +00:00
|
|
|
if !privs["user1"].Op || !privs["voice"].Voice || !privs["halfop"].HalfOp ||
|
|
|
|
!privs["op"].Op || !privs["admin"].Admin || !privs["owner"].Owner {
|
|
|
|
t.Errorf("353 handler failed to set correct modes for nicks.")
|
2011-09-12 22:14:08 +00:00
|
|
|
}
|
|
|
|
|
2013-02-16 00:11:39 +00:00
|
|
|
// Check error paths -- send 353 for an unknown channel
|
|
|
|
s.st.EXPECT().GetChannel("#test2").Return(nil)
|
2011-11-06 04:56:46 +00:00
|
|
|
c.h_353(parseLine(":irc.server.org 353 test = #test2 :test ~user3"))
|
2011-09-12 22:14:08 +00:00
|
|
|
}
|
2011-09-12 22:21:40 +00:00
|
|
|
|
|
|
|
// Test the handler for 671 (unreal specific)
|
|
|
|
func Test671(t *testing.T) {
|
2011-11-06 04:56:46 +00:00
|
|
|
c, s := setUp(t)
|
|
|
|
defer s.tearDown()
|
2011-09-12 22:21:40 +00:00
|
|
|
|
|
|
|
// Create user1, who should not be secure
|
2013-02-16 00:11:39 +00:00
|
|
|
nick1 := state.NewNick("user1")
|
2011-11-06 04:56:46 +00:00
|
|
|
if nick1.Modes.SSL {
|
2011-09-12 22:21:40 +00:00
|
|
|
t.Errorf("Test nick user1 is already using SSL?")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a 671 reply
|
2011-11-06 04:56:46 +00:00
|
|
|
s.st.EXPECT().GetNick("user1").Return(nick1)
|
2011-09-12 22:21:40 +00:00
|
|
|
c.h_671(parseLine(":irc.server.org 671 test user1 :some ignored text"))
|
|
|
|
|
|
|
|
// Ensure user1 is now known to be on an SSL connection
|
2011-11-06 04:56:46 +00:00
|
|
|
if !nick1.Modes.SSL {
|
2011-09-12 22:21:40 +00:00
|
|
|
t.Errorf("Test nick user1 not using SSL?")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check error paths -- send a 671 for an unknown nick
|
2013-02-16 00:11:39 +00:00
|
|
|
s.st.EXPECT().GetNick("user2").Return(nil)
|
2011-09-12 22:21:40 +00:00
|
|
|
c.h_671(parseLine(":irc.server.org 671 test user2 :some ignored text"))
|
|
|
|
}
|