2015-06-10 03:48:54 +00:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-12-11 03:35:48 +00:00
|
|
|
"github.com/khlieng/dispatch/Godeps/_workspace/src/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\r\n",
|
|
|
|
&Message{
|
|
|
|
Prefix: "user",
|
|
|
|
Nick: "user",
|
|
|
|
Command: "CMD",
|
|
|
|
Params: []string{"#chan", "some message"},
|
|
|
|
Trailing: "some message",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
":nick!user@host.com CMD a b\r\n",
|
|
|
|
&Message{
|
|
|
|
Prefix: "nick!user@host.com",
|
|
|
|
Nick: "nick",
|
|
|
|
Command: "CMD",
|
|
|
|
Params: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
"CMD a b :\r\n",
|
|
|
|
&Message{
|
|
|
|
Command: "CMD",
|
|
|
|
Params: []string{"a", "b"},
|
|
|
|
},
|
2015-06-10 20:53:29 +00:00
|
|
|
}, {
|
|
|
|
"CMD a b\r\n",
|
|
|
|
&Message{
|
|
|
|
Command: "CMD",
|
|
|
|
Params: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
"CMD\r\n",
|
|
|
|
&Message{
|
|
|
|
Command: "CMD",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
"CMD :tests and stuff\r\n",
|
|
|
|
&Message{
|
|
|
|
Command: "CMD",
|
|
|
|
Params: []string{"tests and stuff"},
|
|
|
|
Trailing: "tests and stuff",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
":nick@host.com CMD\r\n",
|
|
|
|
&Message{
|
|
|
|
Prefix: "nick@host.com",
|
|
|
|
Nick: "nick",
|
|
|
|
Command: "CMD",
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
":ni@ck!user!name@host!.com CMD\r\n",
|
|
|
|
&Message{
|
|
|
|
Prefix: "ni@ck!user!name@host!.com",
|
|
|
|
Nick: "ni@ck",
|
|
|
|
Command: "CMD",
|
|
|
|
},
|
2015-06-10 03:48:54 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
assert.Equal(t, tc.expected, parseMessage(tc.input))
|
|
|
|
}
|
|
|
|
}
|