goircd/daemon_test.go

136 lines
4.0 KiB
Go
Raw Normal View History

2014-05-11 16:18:55 +00:00
/*
goircd -- minimalistic simple Internet Relay Chat (IRC) server
Copyright (C) 2014 Sergey Matveev <stargrave@stargrave.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"io/ioutil"
"os"
"strings"
"testing"
)
func TestRegistrationWorkflow(t *testing.T) {
daemon := NewDaemon("foohost", "", nil, nil)
events := make(chan ClientEvent)
go daemon.Processor(events)
conn := NewTestingConn()
client := NewClient("foohost", conn)
2014-05-14 12:29:54 +00:00
go client.Processor(events)
2014-05-11 16:18:55 +00:00
2014-05-14 12:29:54 +00:00
conn.inbound <- "UNEXISTENT CMD" // should recieve nothing on this
conn.inbound <- "NICK"
2014-05-11 16:18:55 +00:00
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; r != ":foohost 431 :No nickname given\r\n" {
2014-05-18 11:27:17 +00:00
t.Fatal("431 for NICK", r)
2014-05-11 16:18:55 +00:00
}
2014-05-18 11:27:17 +00:00
for _, n := range []string{"привет", " foo", "longlonglong", "#foo", "mein nick", "foo_bar"} {
conn.inbound <- "NICK " + n
if r := <-conn.outbound; r != ":foohost 432 * "+n+" :Erroneous nickname\r\n" {
t.Fatal("nickname validation", r)
}
}
conn.inbound <- "NICK meinick\r\nUSER"
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; r != ":foohost 461 meinick USER :Not enough parameters\r\n" {
t.Fatal("461 for USER", r)
2014-05-11 16:18:55 +00:00
}
2014-05-14 12:29:54 +00:00
if (client.nickname != "meinick") || client.registered {
t.Fatal("NICK saved")
2014-05-11 16:18:55 +00:00
}
2014-05-18 11:27:17 +00:00
conn.inbound <- "USER 1 2 3"
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; r != ":foohost 461 meinick USER :Not enough parameters\r\n" {
2014-05-18 11:27:17 +00:00
t.Fatal("461 again for USER", r)
2014-05-11 16:18:55 +00:00
}
daemon.SendLusers(client)
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, "There are 0 users") {
2014-05-18 11:27:17 +00:00
t.Fatal("LUSERS", r)
2014-05-11 16:18:55 +00:00
}
2014-05-18 11:27:17 +00:00
conn.inbound <- "USER 1 2 3 :4 5"
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, ":foohost 001") {
2014-05-18 11:27:17 +00:00
t.Fatal("001 after registration", r)
2014-05-11 16:18:55 +00:00
}
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, ":foohost 002") {
2014-05-18 11:27:17 +00:00
t.Fatal("002 after registration", r)
2014-05-11 16:18:55 +00:00
}
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, ":foohost 003") {
2014-05-18 11:27:17 +00:00
t.Fatal("003 after registration", r)
2014-05-11 16:18:55 +00:00
}
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, ":foohost 004") {
2014-05-18 11:27:17 +00:00
t.Fatal("004 after registration", r)
2014-05-11 16:18:55 +00:00
}
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, ":foohost 251") {
2014-05-18 11:27:17 +00:00
t.Fatal("251 after registration", r)
2014-05-14 12:29:54 +00:00
}
if r := <-conn.outbound; !strings.Contains(r, ":foohost 422") {
2014-05-18 11:27:17 +00:00
t.Fatal("422 after registration", r)
2014-05-14 12:29:54 +00:00
}
if (client.username != "1") || (client.realname != "4 5") || !client.registered {
t.Fatal("client register")
2014-05-11 16:18:55 +00:00
}
2014-05-18 11:27:17 +00:00
conn.inbound <- "AWAY"
conn.inbound <- "UNEXISTENT CMD"
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; r != ":foohost 421 meinick UNEXISTENT :Unknown command\r\n" {
2014-05-18 11:27:17 +00:00
t.Fatal("reply for unexistent command", r)
2014-05-11 16:18:55 +00:00
}
daemon.SendLusers(client)
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.Contains(r, "There are 1 users") {
2014-05-18 11:27:17 +00:00
t.Fatal("1 users logged in", r)
}
conn.inbound <- "PING thishost"
if r := <-conn.outbound; r != ":foohost PONG foohost :thishost\r\n" {
t.Fatal("PONG", r)
2014-05-11 16:18:55 +00:00
}
2014-05-18 11:27:17 +00:00
conn.inbound <- "QUIT\r\nUNEXISTENT CMD"
2014-05-14 12:29:54 +00:00
<-conn.outbound
2014-05-11 16:18:55 +00:00
if !conn.closed {
2014-05-14 12:29:54 +00:00
t.Fatal("closed connection on QUIT")
2014-05-11 16:18:55 +00:00
}
}
func TestMotd(t *testing.T) {
fd, err := ioutil.TempFile("", "motd")
if err != nil {
t.Fatal("can not create temporary file")
}
defer os.Remove(fd.Name())
fd.Write([]byte("catched\n"))
2014-05-14 12:29:54 +00:00
2014-05-11 16:18:55 +00:00
conn := NewTestingConn()
client := NewClient("foohost", conn)
2014-05-14 12:29:54 +00:00
daemon := NewDaemon("foohost", fd.Name(), nil, nil)
2014-05-11 16:18:55 +00:00
daemon.SendMotd(client)
2014-05-14 12:29:54 +00:00
if r := <-conn.outbound; !strings.HasPrefix(r, ":foohost 375") {
2014-05-18 11:27:17 +00:00
t.Fatal("MOTD start", r)
2014-05-14 12:29:54 +00:00
}
if r := <-conn.outbound; !strings.Contains(r, "372 * :- catched\r\n") {
2014-05-18 11:27:17 +00:00
t.Fatal("MOTD contents", r)
2014-05-14 12:29:54 +00:00
}
if r := <-conn.outbound; !strings.HasPrefix(r, ":foohost 376") {
t.Fatal("MOTD end", r)
2014-05-11 16:18:55 +00:00
}
}