dispatch/pkg/irc/message_test.go

194 lines
3.6 KiB
Go
Raw Normal View History

2015-06-10 03:48:54 +00:00
package irc
import (
"testing"
2016-03-01 00:51:26 +00:00
"github.com/stretchr/testify/assert"
2015-06-10 03:48:54 +00:00
)
func TestParseMessage(t *testing.T) {
cases := []struct {
input string
expected *Message
}{
{
":user CMD #chan :some message",
2015-06-10 03:48:54 +00:00
&Message{
Sender: "user",
2016-12-12 06:19:22 +00:00
Command: "CMD",
Params: []string{"#chan", "some message"},
2015-06-10 03:48:54 +00:00
},
}, {
":nick!user@host.com CMD a b",
2015-06-10 03:48:54 +00:00
&Message{
Sender: "nick",
Ident: "user",
Host: "host.com",
2015-06-10 03:48:54 +00:00
Command: "CMD",
Params: []string{"a", "b"},
},
}, {
"CMD a b :",
2015-06-10 03:48:54 +00:00
&Message{
Command: "CMD",
2016-12-12 06:19:22 +00:00
Params: []string{"a", "b", ""},
2015-06-10 03:48:54 +00:00
},
}, {
"CMD a b",
&Message{
Command: "CMD",
Params: []string{"a", "b"},
},
}, {
"CMD",
&Message{
Command: "CMD",
},
}, {
"CMD :tests and stuff",
&Message{
2016-12-12 06:19:22 +00:00
Command: "CMD",
Params: []string{"tests and stuff"},
},
}, {
":nick@host.com CMD",
&Message{
Sender: "nick",
Host: "host.com",
Command: "CMD",
},
}, {
":ni@ck!user!name@host!.com CMD",
&Message{
Sender: "ni@ck",
Ident: "user!name",
Host: "host!.com",
Command: "CMD",
},
2017-07-03 21:31:14 +00:00
}, {
"CMD #cake pie ",
2017-07-03 21:31:14 +00:00
&Message{
Command: "CMD",
Params: []string{"#cake", "pie"},
},
}, {
" CMD #cake pie",
2017-07-03 21:31:14 +00:00
&Message{
Command: "CMD",
Params: []string{"#cake", "pie"},
},
}, {
"CMD #cake ::pie",
&Message{
Command: "CMD",
Params: []string{"#cake", ":pie"},
},
}, {
"CMD #cake : pie",
&Message{
Command: "CMD",
Params: []string{"#cake", " pie"},
},
}, {
"CMD #cake :pie :P <3",
&Message{
Command: "CMD",
Params: []string{"#cake", "pie :P <3"},
},
}, {
"CMD #cake :pie!",
&Message{
Command: "CMD",
Params: []string{"#cake", "pie!"},
},
2018-04-29 01:49:02 +00:00
}, {
"@x=y CMD",
2018-04-29 01:49:02 +00:00
&Message{
Tags: map[string]string{
"x": "y",
},
Command: "CMD",
},
}, {
"@x=y :nick!user@host.com CMD",
2018-04-29 01:49:02 +00:00
&Message{
Tags: map[string]string{
"x": "y",
},
Sender: "nick",
Ident: "user",
Host: "host.com",
2018-04-29 01:49:02 +00:00
Command: "CMD",
},
}, {
"@x=y :nick!user@host.com CMD :pie and cake",
2018-04-29 01:49:02 +00:00
&Message{
Tags: map[string]string{
"x": "y",
},
Sender: "nick",
Ident: "user",
Host: "host.com",
2018-04-29 01:49:02 +00:00
Command: "CMD",
Params: []string{"pie and cake"},
},
}, {
"@x=y :nick!user@host.com CMD beans rainbows :pie and cake",
&Message{
Tags: map[string]string{
"x": "y",
},
Sender: "nick",
Ident: "user",
Host: "host.com",
Command: "CMD",
Params: []string{"beans", "rainbows", "pie and cake"},
},
},
{
"@x=y;a=b CMD",
2018-04-29 01:49:02 +00:00
&Message{
Tags: map[string]string{
"x": "y",
"a": "b",
},
Command: "CMD",
},
}, {
"@x=y;a=\\\\\\:\\s\\r\\n CMD",
2018-04-29 01:49:02 +00:00
&Message{
Tags: map[string]string{
"x": "y",
"a": "\\; \r\n",
},
Command: "CMD",
},
2015-06-10 03:48:54 +00:00
},
}
for _, tc := range cases {
assert.Equal(t, tc.expected, ParseMessage(tc.input))
}
}
func BenchmarkParseMessage(b *testing.B) {
for i := 0; i < b.N; i++ {
ParseMessage("@x=y :nick!user@host.com CMD beans rainbows :pie and cake")
2015-06-10 03:48:54 +00:00
}
}
2016-12-16 23:11:44 +00:00
func TestLastParam(t *testing.T) {
assert.Equal(t, "some message", ParseMessage(":user CMD #chan :some message").LastParam())
assert.Equal(t, "", ParseMessage("NO_PARAMS").LastParam())
2016-12-16 23:11:44 +00:00
}
func TestBadMessage(t *testing.T) {
assert.Nil(t, ParseMessage("@"))
assert.Nil(t, ParseMessage("@ :"))
assert.Nil(t, ParseMessage("@ :"))
assert.Nil(t, ParseMessage("@ :"))
assert.Nil(t, ParseMessage(":user"))
assert.Nil(t, ParseMessage(":"))
assert.Nil(t, ParseMessage(""))
}