2011-08-22 22:24:05 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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) {
|
2011-08-23 10:06:06 +00:00
|
|
|
m, c := setUp(t)
|
|
|
|
defer tearDown(m, c)
|
2011-08-22 22:24:05 +00:00
|
|
|
m.Send("PING :1234567890")
|
|
|
|
m.Expect("PONG :1234567890")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the handler for 001 / RPL_WELCOME
|
|
|
|
func Test001(t *testing.T) {
|
2011-08-23 09:52:16 +00:00
|
|
|
m, c := setUp(t)
|
2011-08-23 10:06:06 +00:00
|
|
|
defer tearDown(m, c)
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Setup a mock event dispatcher to test correct triggering of "connected"
|
2011-08-23 09:49:22 +00:00
|
|
|
flag := false
|
|
|
|
c.Dispatcher = WasEventDispatched("connected", &flag)
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Call handler with a valid 001 line
|
|
|
|
c.h_001(parseLine(":irc.server.org 001 test :Welcome to IRC test!ident@somehost.com"))
|
2011-08-23 09:52:16 +00:00
|
|
|
// Should result in no response to server
|
|
|
|
m.ExpectNothing()
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Check that the event was dispatched correctly
|
2011-08-23 09:49:22 +00:00
|
|
|
if !flag {
|
2011-08-22 22:24:05 +00:00
|
|
|
t.Errorf("Sending 001 didn't result in dispatch of connected event.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check host parsed correctly
|
|
|
|
if c.Me.Host != "somehost.com" {
|
|
|
|
t.Errorf("Host parsing failed, host is '%s'.", c.Me.Host)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the handler for 433 / ERR_NICKNAMEINUSE
|
|
|
|
func Test433(t *testing.T) {
|
|
|
|
m, c := setUp(t)
|
2011-08-23 10:06:06 +00:00
|
|
|
defer tearDown(m, c)
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Call handler with a 433 line, not triggering c.Me.Renick()
|
|
|
|
c.h_433(parseLine(":irc.server.org 433 test new :Nickname is already in use."))
|
|
|
|
m.Expect("NICK new_")
|
|
|
|
|
|
|
|
// In this case, we're expecting the server to send a NICK line
|
|
|
|
if c.Me.Nick != "test" {
|
|
|
|
t.Errorf("ReNick() called unexpectedly, Nick == '%s'.", c.Me.Nick)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send a line that will trigger a renick. This happens when our wanted
|
|
|
|
// 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.
|
|
|
|
c.h_433(parseLine(":irc.server.org 433 test test :Nickname is already in use."))
|
|
|
|
m.Expect("NICK test_")
|
|
|
|
|
|
|
|
if c.Me.Nick != "test_" {
|
|
|
|
t.Errorf("ReNick() not called, Nick == '%s'.", c.Me.Nick)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the handler for NICK messages
|
|
|
|
func TestNICK(t *testing.T) {
|
2011-08-23 09:52:16 +00:00
|
|
|
m, c := setUp(t)
|
2011-08-23 10:06:06 +00:00
|
|
|
defer tearDown(m, c)
|
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-24 12:53:28 +00:00
|
|
|
// Should generate no errors and no response to server
|
|
|
|
c.ExpectNoErrors()
|
2011-08-23 09:52:16 +00:00
|
|
|
m.ExpectNothing()
|
|
|
|
|
|
|
|
// Verify that our Nick has changed
|
2011-08-22 22:24:05 +00:00
|
|
|
if c.Me.Nick != "test1" {
|
|
|
|
t.Errorf("NICK did not result in changing our nick.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a "known" nick other than ours
|
2011-08-24 12:56:15 +00:00
|
|
|
user1 := c.NewNick("user1", "ident1", "name one", "host1.com")
|
2011-08-22 22:24:05 +00:00
|
|
|
|
|
|
|
// Call handler with a NICK line changing user1 to somebody
|
|
|
|
c.h_NICK(parseLine(":user1!ident1@host1.com NICK :somebody"))
|
2011-08-24 12:53:28 +00:00
|
|
|
c.ExpectNoErrors()
|
|
|
|
m.ExpectNothing()
|
|
|
|
|
2011-08-22 22:24:05 +00:00
|
|
|
if c.GetNick("user1") != nil {
|
|
|
|
t.Errorf("Still have a valid Nick for 'user1'.")
|
|
|
|
}
|
2011-08-24 12:56:15 +00:00
|
|
|
if n := c.GetNick("somebody"); n != user1 {
|
|
|
|
t.Errorf("GetNick(somebody) didn't result in correct Nick.")
|
2011-08-22 22:24:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send a NICK line for an unknown nick.
|
|
|
|
c.h_NICK(parseLine(":blah!moo@cows.com NICK :milk"))
|
2011-08-24 12:53:28 +00:00
|
|
|
c.ExpectError()
|
|
|
|
m.ExpectNothing()
|
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) {
|
|
|
|
m, c := setUp(t)
|
2011-08-23 10:06:06 +00:00
|
|
|
defer tearDown(m, c)
|
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
|
|
|
|
m.Expect("NOTICE blah :\001VERSION powered by goirc...\001")
|
|
|
|
|
|
|
|
// Call handler with CTCP PING
|
|
|
|
c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001PING 1234567890\001"))
|
|
|
|
|
|
|
|
// Expect a ping reply
|
|
|
|
m.Expect("NOTICE blah :\001PING 1234567890\001")
|
|
|
|
|
|
|
|
// Call handler with CTCP UNKNOWN
|
|
|
|
c.h_CTCP(parseLine(":blah!moo@cows.com PRIVMSG test :\001UNKNOWN ctcp\001"))
|
|
|
|
|
|
|
|
// Expect nothing in reply
|
|
|
|
m.ExpectNothing()
|
|
|
|
}
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Test the handler for JOIN messages
|
|
|
|
func TestJOIN(t *testing.T) {
|
2011-08-24 12:57:06 +00:00
|
|
|
// TODO(fluffle): Without mocking to ensure that the various methods
|
|
|
|
// h_JOIN uses are called, we must check they do the right thing by
|
2011-08-24 11:46:21 +00:00
|
|
|
// verifying their expected side-effects instead. Fixing this requires
|
|
|
|
// significant effort to move Conn to being a mockable interface type
|
|
|
|
// instead of a concrete struct. I'm not sure how feasible this is :-/
|
2011-08-24 12:57:06 +00:00
|
|
|
//
|
|
|
|
// Instead, in this test we (so far) just verify the correct code paths
|
|
|
|
// are followed and trust that the unit tests for the various methods
|
|
|
|
// ensure that they do the right thing.
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
m, c := setUp(t)
|
|
|
|
defer tearDown(m, c)
|
|
|
|
|
|
|
|
// Use #test1 to test expected behaviour
|
|
|
|
// Call handler with JOIN by test to #test1
|
|
|
|
c.h_JOIN(parseLine(":test!test@somehost.com JOIN :#test1"))
|
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// Ensure we aren't triggering an error here
|
|
|
|
c.ExpectNoErrors()
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Verify that the MODE and WHO commands are sent correctly
|
|
|
|
m.Expect("MODE #test1")
|
|
|
|
m.Expect("WHO #test1")
|
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// Simple verification that NewChannel was called for #test1
|
|
|
|
test1 := c.GetChannel("#test1")
|
|
|
|
if test1 == nil {
|
|
|
|
t.Errorf("No Channel for #test1 created on JOIN.")
|
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
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// Again, expect no errors
|
|
|
|
c.ExpectNoErrors()
|
2011-08-24 11:46:21 +00:00
|
|
|
|
|
|
|
// Verify that the WHO command is sent correctly
|
|
|
|
m.Expect("WHO user1")
|
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// Simple verification that NewNick was called for user1
|
|
|
|
user1 := c.GetNick("user1")
|
|
|
|
if user1 == nil {
|
|
|
|
t.Errorf("No Nick for user1 created on JOIN.")
|
|
|
|
}
|
|
|
|
|
2011-08-24 11:46:21 +00:00
|
|
|
// Now, JOIN a nick we *do* know about.
|
|
|
|
user2 := c.NewNick("user2", "ident2", "name two", "host2.com")
|
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-08-24 12:57:06 +00:00
|
|
|
// We already know about this user and channel, so nothing should be sent
|
|
|
|
c.ExpectNoErrors()
|
|
|
|
m.ExpectNothing()
|
2011-08-24 11:46:21 +00:00
|
|
|
|
2011-08-24 12:57:06 +00:00
|
|
|
// Simple verification that the state tracking has actually been done
|
2011-08-24 11:46:21 +00:00
|
|
|
if _, ok := test1.Nicks[user2]; !ok || len(test1.Nicks) != 3 {
|
2011-08-24 12:57:06 +00:00
|
|
|
t.Errorf("State tracking horked, hopefully other unit tests fail.")
|
2011-08-24 11:46:21 +00:00
|
|
|
}
|
2011-08-24 12:57:06 +00:00
|
|
|
|
|
|
|
// Test error paths -- unknown channel, unknown nick
|
|
|
|
c.h_JOIN(parseLine(":blah!moo@cows.com JOIN :#test2"))
|
|
|
|
c.ExpectError()
|
|
|
|
m.ExpectNothing()
|
|
|
|
|
|
|
|
// unknown channel, known nick that isn't Me.
|
|
|
|
c.h_JOIN(parseLine(":user2!ident2@host2.com JOIN :#test2"))
|
|
|
|
c.ExpectError()
|
2011-08-24 11:46:21 +00:00
|
|
|
m.ExpectNothing()
|
|
|
|
}
|
2011-08-24 13:34:11 +00:00
|
|
|
|
|
|
|
// Test the handler for PART messages
|
|
|
|
func TestPART(t *testing.T) {
|
|
|
|
m, c := setUp(t)
|
|
|
|
defer tearDown(m, c)
|
|
|
|
|
|
|
|
// Create user1 and add them to #test1 and #test2
|
|
|
|
user1 := c.NewNick("user1", "ident1", "name one", "host1.com")
|
|
|
|
test1 := c.NewChannel("#test1")
|
|
|
|
test2 := c.NewChannel("#test2")
|
|
|
|
test1.AddNick(user1)
|
|
|
|
test2.AddNick(user1)
|
|
|
|
|
|
|
|
// Add Me to both channels (not strictly necessary)
|
|
|
|
test1.AddNick(c.Me)
|
|
|
|
test2.AddNick(c.Me)
|
|
|
|
|
|
|
|
// Then make them PART
|
|
|
|
c.h_PART(parseLine(":user1!ident1@host1.com PART #test1 :Bye!"))
|
|
|
|
|
|
|
|
// Expect no errors or output
|
|
|
|
c.ExpectNoErrors()
|
|
|
|
m.ExpectNothing()
|
|
|
|
|
|
|
|
// Quick check of tracking code
|
|
|
|
if len(test1.Nicks) != 1 {
|
|
|
|
t.Errorf("PART failed to remove user1 from #test1.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test error states.
|
2011-08-24 13:39:27 +00:00
|
|
|
// Part a known user from a known channel they are not on.
|
2011-08-24 13:34:11 +00:00
|
|
|
c.h_PART(parseLine(":user1!ident1@host1.com PART #test1 :Bye!"))
|
2011-08-24 13:39:27 +00:00
|
|
|
c.ExpectError()
|
2011-08-24 13:34:11 +00:00
|
|
|
|
|
|
|
// Part an unknown user from a known channel.
|
|
|
|
c.h_PART(parseLine(":user2!ident2@host2.com PART #test1 :Bye!"))
|
|
|
|
c.ExpectError()
|
|
|
|
|
|
|
|
// Part a known user from an unknown channel.
|
|
|
|
c.h_PART(parseLine(":user1!ident1@host1.com PART #test3 :Bye!"))
|
|
|
|
c.ExpectError()
|
|
|
|
|
|
|
|
// Part an unknown user from an unknown channel.
|
|
|
|
c.h_PART(parseLine(":user2!ident2@host2.com PART #test3 :Bye!"))
|
|
|
|
c.ExpectError()
|
|
|
|
}
|