dispatch/server/irc_handler_test.go

281 lines
5.7 KiB
Go
Raw Normal View History

2015-06-16 21:20:53 +00:00
package server
import (
"io/ioutil"
"log"
"os"
"testing"
2016-03-01 00:51:26 +00:00
"github.com/stretchr/testify/assert"
2015-06-16 21:20:53 +00:00
2015-12-11 03:35:48 +00:00
"github.com/khlieng/dispatch/irc"
"github.com/khlieng/dispatch/storage"
2015-06-16 21:20:53 +00:00
)
var user *storage.User
func TestMain(m *testing.M) {
tempdir, err := ioutil.TempDir("", "test_")
if err != nil {
log.Fatal(err)
}
2016-01-07 22:59:38 +00:00
storage.Initialize(tempdir)
storage.Open()
2016-01-17 20:15:29 +00:00
user, err = storage.NewUser()
if err != nil {
os.Exit(1)
}
2015-06-16 21:20:53 +00:00
channelStore = storage.NewChannelStore()
code := m.Run()
os.RemoveAll(tempdir)
os.Exit(code)
}
func dispatchMessage(msg *irc.Message) WSResponse {
2017-04-12 23:59:16 +00:00
return <-dispatchMessageMulti(msg)
}
func dispatchMessageMulti(msg *irc.Message) chan WSResponse {
2015-06-16 21:20:53 +00:00
c := irc.NewClient("nick", "user")
c.Host = "host.com"
s := NewSession(user)
2015-06-16 21:20:53 +00:00
newIRCHandler(c, s).dispatchMessage(msg)
2017-04-12 23:59:16 +00:00
return s.broadcast
2015-06-16 21:20:53 +00:00
}
2015-06-16 22:46:58 +00:00
func checkResponse(t *testing.T, expectedType string, expectedData interface{}, res WSResponse) {
2015-06-16 21:20:53 +00:00
assert.Equal(t, expectedType, res.Type)
2015-06-16 22:46:58 +00:00
assert.Equal(t, expectedData, res.Data)
2015-06-16 21:20:53 +00:00
}
func TestHandleIRCNick(t *testing.T) {
res := dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.Nick,
Nick: "old",
Params: []string{"new"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "nick", Nick{
Server: "host.com",
Old: "old",
New: "new",
}, res)
}
func TestHandleIRCJoin(t *testing.T) {
res := dispatchMessage(&irc.Message{
Command: irc.Join,
Nick: "joining",
Params: []string{"#chan"},
})
checkResponse(t, "join", Join{
Server: "host.com",
User: "joining",
Channels: []string{"#chan"},
}, res)
}
func TestHandleIRCPart(t *testing.T) {
res := dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.Part,
Nick: "parting",
Params: []string{"#chan", "the reason"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "part", Part{
Server: "host.com",
User: "parting",
Channel: "#chan",
Reason: "the reason",
}, res)
res = dispatchMessage(&irc.Message{
Command: irc.Part,
Nick: "parting",
Params: []string{"#chan"},
})
checkResponse(t, "part", Part{
Server: "host.com",
User: "parting",
Channel: "#chan",
2015-06-16 21:20:53 +00:00
}, res)
}
func TestHandleIRCMode(t *testing.T) {
res := dispatchMessage(&irc.Message{
Command: irc.Mode,
Params: []string{"#chan", "+o-v", "nick"},
})
checkResponse(t, "mode", &Mode{
Server: "host.com",
Channel: "#chan",
User: "nick",
Add: "o",
Remove: "v",
}, res)
}
func TestHandleIRCMessage(t *testing.T) {
res := dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.Privmsg,
Nick: "nick",
Params: []string{"#chan", "the message"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "message", Chat{
Server: "host.com",
From: "nick",
To: "#chan",
Message: "the message",
}, res)
res = dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.Privmsg,
Nick: "someone",
Params: []string{"nick", "the message"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "pm", Chat{
Server: "host.com",
From: "someone",
Message: "the message",
}, res)
}
func TestHandleIRCQuit(t *testing.T) {
res := dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.Quit,
Nick: "nick",
Params: []string{"the reason"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "quit", Quit{
Server: "host.com",
User: "nick",
Reason: "the reason",
}, res)
}
func TestHandleIRCWelcome(t *testing.T) {
2017-04-12 23:59:16 +00:00
res := dispatchMessageMulti(&irc.Message{
2015-06-16 21:20:53 +00:00
Command: irc.ReplyWelcome,
Nick: "nick",
2017-04-12 23:59:16 +00:00
Params: []string{"nick", "some", "text"},
2015-06-16 21:20:53 +00:00
})
2017-04-12 23:59:16 +00:00
checkResponse(t, "nick", Nick{
Server: "host.com",
New: "nick",
}, <-res)
2015-06-16 21:20:53 +00:00
checkResponse(t, "pm", Chat{
Server: "host.com",
From: "nick",
Message: "some text",
2017-04-12 23:59:16 +00:00
}, <-res)
2015-06-16 21:20:53 +00:00
}
func TestHandleIRCWhois(t *testing.T) {
c := irc.NewClient("nick", "user")
c.Host = "host.com"
s := NewSession(nil)
2015-06-16 21:20:53 +00:00
i := newIRCHandler(c, s)
i.dispatchMessage(&irc.Message{
Command: irc.ReplyWhoisUser,
Params: []string{"", "nick", "user", "host", "", "realname"},
})
i.dispatchMessage(&irc.Message{
Command: irc.ReplyWhoisServer,
Params: []string{"", "", "srv.com"},
})
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyWhoisChannels,
Params: []string{"#chan #chan1"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{Command: irc.ReplyEndOfWhois})
checkResponse(t, "whois", WhoisReply{
Nick: "nick",
Username: "user",
Host: "host",
Realname: "realname",
Server: "srv.com",
Channels: []string{"#chan", "#chan1"},
}, <-s.broadcast)
2015-06-16 21:20:53 +00:00
}
func TestHandleIRCTopic(t *testing.T) {
res := dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyTopic,
Params: []string{"target", "#chan", "the topic"},
2015-06-16 21:20:53 +00:00
})
checkResponse(t, "topic", Topic{
Server: "host.com",
Channel: "#chan",
Topic: "the topic",
}, res)
}
func TestHandleIRCNames(t *testing.T) {
c := irc.NewClient("nick", "user")
c.Host = "host.com"
s := NewSession(nil)
2015-06-16 21:20:53 +00:00
i := newIRCHandler(c, s)
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyNamReply,
Params: []string{"", "", "#chan", "a b c"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyNamReply,
Params: []string{"", "", "#chan", "d"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{
Command: irc.ReplyEndOfNames,
Params: []string{"", "#chan"},
})
checkResponse(t, "users", Userlist{
Server: "host.com",
Channel: "#chan",
Users: []string{"a", "b", "c", "d"},
}, <-s.broadcast)
2015-06-16 21:20:53 +00:00
}
func TestHandleIRCMotd(t *testing.T) {
c := irc.NewClient("nick", "user")
c.Host = "host.com"
s := NewSession(nil)
2015-06-16 21:20:53 +00:00
i := newIRCHandler(c, s)
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyMotdStart,
Params: []string{"motd title"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyMotd,
Params: []string{"line 1"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{
2016-12-12 06:19:22 +00:00
Command: irc.ReplyMotd,
Params: []string{"line 2"},
2015-06-16 21:20:53 +00:00
})
i.dispatchMessage(&irc.Message{Command: irc.ReplyEndOfMotd})
checkResponse(t, "motd", MOTD{
Server: "host.com",
Title: "motd title",
Content: []string{"line 1", "line 2"},
}, <-s.broadcast)
2015-06-16 21:20:53 +00:00
}