|
@@ -188,10 +188,14 @@ func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
|
|
|
hasPass = true
|
|
|
}
|
|
|
case "NICK":
|
|
|
- expect = fmt.Sprintf("NICK %s", config.Nick)
|
|
|
+ expect = fmt.Sprintf("NICK %s", config.MyNick)
|
|
|
if expect != line {
|
|
|
t.Errorf("Got %s, Expected %s", line, expect)
|
|
|
} else {
|
|
|
+ if config.MyNick == "bad" {
|
|
|
+ // throw bad nick here
|
|
|
+ ircWrite(server, fmt.Sprintf(":irc.red-green.com 433 :Nick already in use."), t)
|
|
|
+ }
|
|
|
hasNick = true
|
|
|
}
|
|
|
case "USER":
|
|
@@ -252,10 +256,15 @@ func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
|
|
|
ircWrite(server, fmt.Sprintf(":NickServ MODE %s :+r", config.Nick), t)
|
|
|
part2 = true
|
|
|
} else {
|
|
|
- for _, line = range []string{":[email protected] NOTICE %s :This nickname is registered and protected. If it is your",
|
|
|
- ":[email protected] NOTICE %s :nick, type \x02/msg NickServ IDENTIFY \x1fpassword\x1f\x02. Otherwise,"} {
|
|
|
- output = fmt.Sprintf(line, config.Nick)
|
|
|
- ircWrite(server, output, t)
|
|
|
+ if config.Password != "" {
|
|
|
+ for _, line = range []string{":[email protected] NOTICE %s :This nickname is registered and protected. If it is your",
|
|
|
+ ":[email protected] NOTICE %s :nick, type \x02/msg NickServ IDENTIFY \x1fpassword\x1f\x02. Otherwise,"} {
|
|
|
+ output = fmt.Sprintf(line, config.Nick)
|
|
|
+ ircWrite(server, output, t)
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // No password, so we can't register. Skip this part.
|
|
|
+ part2 = true
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -323,6 +332,19 @@ func ircServer(listener net.Listener, t *testing.T, config *IRCConfig) {
|
|
|
output = fmt.Sprintf(":%s %s %s :%s", "echo", parts[0], config.MyNick, strings.Join(parts[2:], " "))
|
|
|
ircWrite(server, output, t)
|
|
|
}
|
|
|
+ if strings.Contains(parts[1], "missing") {
|
|
|
+ // Sending to missing user or channel.
|
|
|
+
|
|
|
+ var number int
|
|
|
+ if strings.Contains(parts[1], "#") {
|
|
|
+ number = 404
|
|
|
+ } else {
|
|
|
+ number = 401
|
|
|
+ }
|
|
|
+
|
|
|
+ output = fmt.Sprintf(":irc.red-green.com %d %s %s :No such nick/channel", number, config.MyNick, parts[1])
|
|
|
+ ircWrite(server, output, t)
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
t.Log("Read Error:", err)
|
|
@@ -379,6 +401,66 @@ func TestConnect(t *testing.T) {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+func TestConnectNickInUse(t *testing.T) {
|
|
|
+ var config IRCConfig = IRCConfig{Nick: "bad",
|
|
|
+ Username: "test",
|
|
|
+ Realname: "testing",
|
|
|
+ Flood_Num: 1,
|
|
|
+ Flood_Delay: 20,
|
|
|
+ }
|
|
|
+ var listen net.Listener
|
|
|
+ var address string
|
|
|
+
|
|
|
+ listen, address = setupSocket()
|
|
|
+ var parts []string = strings.Split(address, ":")
|
|
|
+
|
|
|
+ config.Hostname = parts[0]
|
|
|
+ config.Port, _ = strconv.Atoi(parts[1])
|
|
|
+ go ircServer(listen, t, &config)
|
|
|
+ var FromIRC chan IRCMsg
|
|
|
+
|
|
|
+ FromIRC = make(chan IRCMsg)
|
|
|
+ config.ReadChannel = FromIRC
|
|
|
+
|
|
|
+ config.Connect()
|
|
|
+ defer config.Close()
|
|
|
+
|
|
|
+ var Msg IRCMsg
|
|
|
+ var motd, identify bool
|
|
|
+ var missing int
|
|
|
+
|
|
|
+ for Msg = range FromIRC {
|
|
|
+ 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")
|
|
|
+ }
|
|
|
+ if Msg.Cmd == "Identified" {
|
|
|
+ t.Log("Identified")
|
|
|
+ identify = true
|
|
|
+ }
|
|
|
+ if Msg.Cmd == "404" || Msg.Cmd == "401" {
|
|
|
+ missing++
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if !motd {
|
|
|
+ t.Error("Missing EndMOTD")
|
|
|
+ }
|
|
|
+ if identify {
|
|
|
+ t.Error("Should not have been Identified")
|
|
|
+ }
|
|
|
+ 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)
|
|
|
+ }
|
|
|
+}
|
|
|
func TestConnectTLS(t *testing.T) {
|
|
|
var config IRCConfig = IRCConfig{Nick: "test",
|
|
|
Username: "test",
|