|
@@ -38,8 +38,7 @@ func TestMarshal(t *testing.T) {
|
|
|
t.Error("json.Unmarshal:", err)
|
|
|
}
|
|
|
|
|
|
- var fields []reflect.StructField
|
|
|
- fields = reflect.VisibleFields(reflect.TypeOf(config))
|
|
|
+ var fields []reflect.StructField = reflect.VisibleFields(reflect.TypeOf(config))
|
|
|
var config_value reflect.Value = reflect.ValueOf(config)
|
|
|
var verify_value reflect.Value = reflect.ValueOf(verify)
|
|
|
|
|
@@ -183,12 +182,14 @@ func TestConnect(t *testing.T) {
|
|
|
|
|
|
config.Hostname = parts[0]
|
|
|
config.Port, _ = strconv.Atoi(parts[1])
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config}
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
- defer config.Close()
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
+
|
|
|
+ irc.Connect()
|
|
|
+ defer irc.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
|
var motd, identify, support bool
|
|
@@ -216,7 +217,7 @@ func TestConnect(t *testing.T) {
|
|
|
for key, value := range isupport {
|
|
|
var got string
|
|
|
var has bool
|
|
|
- got, has = config.ISupport[key]
|
|
|
+ got, has = irc.ISupport[key]
|
|
|
if !has {
|
|
|
t.Errorf("Missing ISUPPORT[%s] expected (%s)", key, value)
|
|
|
support = false
|
|
@@ -245,8 +246,8 @@ func TestConnect(t *testing.T) {
|
|
|
if !support {
|
|
|
t.Error("Missing ISupport")
|
|
|
}
|
|
|
- if config.MyNick != config.Nick {
|
|
|
- t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
|
|
|
+ if irc.MyNick != config.Nick {
|
|
|
+ t.Errorf("Got %s, Expected %s", irc.MyNick, config.Nick)
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -266,12 +267,13 @@ func TestConnectNickInUse(t *testing.T) {
|
|
|
|
|
|
config.Hostname = parts[0]
|
|
|
config.Port, _ = strconv.Atoi(parts[1])
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config}
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
- defer config.Close()
|
|
|
+ irc.Connect()
|
|
|
+ defer irc.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
|
var motd, identify bool
|
|
@@ -281,10 +283,10 @@ func TestConnectNickInUse(t *testing.T) {
|
|
|
if Msg.Cmd == "EndMOTD" {
|
|
|
t.Log("Got EndMOTD")
|
|
|
motd = true
|
|
|
- config.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
- config.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
- config.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
- config.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
|
|
|
+ irc.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
+ irc.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
+ irc.WriteTo("missing", "PRIVMSG missing :Missing user")
|
|
|
+ irc.WriteTo("#missing", "PRIVMSG #missing :Missing channel")
|
|
|
}
|
|
|
if Msg.Cmd == "Identified" {
|
|
|
t.Log("Identified")
|
|
@@ -304,8 +306,8 @@ func TestConnectNickInUse(t *testing.T) {
|
|
|
if missing < 2 {
|
|
|
t.Errorf("Missing should have been 2, was %d", missing)
|
|
|
}
|
|
|
- if config.MyNick == config.Nick {
|
|
|
- t.Errorf("Nick should be different: Got %s, Didn't Expect %s", config.MyNick, config.Nick)
|
|
|
+ if irc.MyNick == config.Nick {
|
|
|
+ t.Errorf("Nick should be different: Got %s, Didn't Expect %s", irc.MyNick, config.Nick)
|
|
|
}
|
|
|
}
|
|
|
func TestConnectTLS(t *testing.T) {
|
|
@@ -325,12 +327,13 @@ func TestConnectTLS(t *testing.T) {
|
|
|
|
|
|
config.Hostname = parts[0]
|
|
|
config.Port, _ = strconv.Atoi(parts[1])
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config}
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
- defer config.Close()
|
|
|
+ irc.Connect()
|
|
|
+ defer irc.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
|
var motd, identify bool
|
|
@@ -352,8 +355,8 @@ func TestConnectTLS(t *testing.T) {
|
|
|
t.Error("Missing Identified")
|
|
|
}
|
|
|
|
|
|
- if config.MyNick != config.Nick {
|
|
|
- t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
|
|
|
+ if irc.MyNick != config.Nick {
|
|
|
+ t.Errorf("Got %s, Expected %s", irc.MyNick, config.Nick)
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -379,12 +382,13 @@ func TestConnectAutojoin(t *testing.T) {
|
|
|
|
|
|
config.Hostname = parts[0]
|
|
|
config.Port, _ = strconv.Atoi(parts[1])
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config}
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
- defer config.Close()
|
|
|
+ irc.Connect()
|
|
|
+ defer irc.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
|
var motd, identify bool
|
|
@@ -418,14 +422,14 @@ func TestConnectAutojoin(t *testing.T) {
|
|
|
joins++
|
|
|
if joins == 2 {
|
|
|
// messages set to echo are returned to us
|
|
|
- config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
|
|
|
- config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
|
|
|
- config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
|
|
|
- config.Action("echo", "dances.")
|
|
|
- config.Notice("echo", "Testing")
|
|
|
- config.Msg("#test", "Message 1")
|
|
|
- config.Msg("#test", "Message 2")
|
|
|
- config.PriorityWrite("PRIVMSG #test :Message")
|
|
|
+ irc.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
|
|
|
+ irc.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
|
|
|
+ irc.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
|
|
|
+ irc.Action("echo", "dances.")
|
|
|
+ irc.Notice("echo", "Testing")
|
|
|
+ irc.Msg("#test", "Message 1")
|
|
|
+ irc.Msg("#test", "Message 2")
|
|
|
+ irc.PriorityWrite("PRIVMSG #test :Message")
|
|
|
}
|
|
|
}
|
|
|
if Msg.Cmd == "CTCP" {
|
|
@@ -469,8 +473,8 @@ func TestConnectAutojoin(t *testing.T) {
|
|
|
t.Errorf("Expected more CTCPs (%d)", len(ctcpExpect))
|
|
|
}
|
|
|
|
|
|
- if config.MyNick != config.Nick {
|
|
|
- t.Errorf("Got %s, Expected %s", config.MyNick, config.Nick)
|
|
|
+ if irc.MyNick != config.Nick {
|
|
|
+ t.Errorf("Got %s, Expected %s", irc.MyNick, config.Nick)
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -501,13 +505,14 @@ func TestConnectKick(t *testing.T) {
|
|
|
var abortPrev = abortAfter
|
|
|
defer func() { abortAfter = abortPrev }()
|
|
|
abortAfter = 500
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config}
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
- defer config.Close()
|
|
|
+ irc.Connect()
|
|
|
+ defer irc.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
|
var motd, identify bool
|
|
@@ -525,7 +530,7 @@ func TestConnectKick(t *testing.T) {
|
|
|
if Msg.Cmd == "JOIN" {
|
|
|
joins++
|
|
|
if joins == 4 {
|
|
|
- config.PriorityWrite("NICK something")
|
|
|
+ irc.PriorityWrite("NICK something")
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -540,8 +545,8 @@ func TestConnectKick(t *testing.T) {
|
|
|
if !identify {
|
|
|
t.Error("Missing Identified")
|
|
|
}
|
|
|
- if config.MyNick != "something" {
|
|
|
- t.Errorf("Expected nick to be something, not %s", config.MyNick)
|
|
|
+ if irc.MyNick != "something" {
|
|
|
+ t.Errorf("Expected nick to be something, not %s", irc.MyNick)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -560,21 +565,24 @@ func TestConnectSignal(t *testing.T) {
|
|
|
AutoJoin: []string{"#chat"},
|
|
|
Flood_Num: 2,
|
|
|
Flood_Delay: 10,
|
|
|
- OnExit: onexit,
|
|
|
}
|
|
|
+ var irc IRCClient = IRCClient{IRCConfig: config,
|
|
|
+ OnExit: onexit,
|
|
|
+ }
|
|
|
+
|
|
|
var listen net.Listener
|
|
|
var address string
|
|
|
|
|
|
listen, address = setupTLSSocket()
|
|
|
var parts []string = strings.Split(address, ":")
|
|
|
|
|
|
- config.Hostname = parts[0]
|
|
|
- config.Port, _ = strconv.Atoi(parts[1])
|
|
|
- go ircServer(listen, t, &config)
|
|
|
+ irc.Hostname = parts[0]
|
|
|
+ irc.Port, _ = strconv.Atoi(parts[1])
|
|
|
+ go ircServer(listen, t, &irc)
|
|
|
var FromIRC chan IRCMsg = make(chan IRCMsg)
|
|
|
- config.ReadChannel = FromIRC
|
|
|
+ irc.ReadChannel = FromIRC
|
|
|
|
|
|
- config.Connect()
|
|
|
+ irc.Connect()
|
|
|
// defer config.Close()
|
|
|
|
|
|
var Msg IRCMsg
|
|
@@ -604,7 +612,7 @@ func TestConnectSignal(t *testing.T) {
|
|
|
t.Error("Missing Identified")
|
|
|
}
|
|
|
|
|
|
- config.Close()
|
|
|
+ irc.Close()
|
|
|
|
|
|
if !exit {
|
|
|
t.Error("AtExit wasn't called.")
|