catbase/plugins/nerdepedia/nerdepeida_test.go

64 lines
1.4 KiB
Go
Raw Normal View History

2019-01-19 00:48:12 +00:00
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package nerdepedia
import (
2019-05-27 23:21:53 +00:00
"github.com/velour/catbase/plugins/cli"
2019-01-19 00:48:12 +00:00
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
"github.com/velour/catbase/bot/user"
)
2019-05-27 23:21:53 +00:00
func makeMessage(payload string) (bot.Connector, bot.Kind, msg.Message) {
2019-01-19 00:48:12 +00:00
isCmd := strings.HasPrefix(payload, "!")
if isCmd {
payload = payload[1:]
}
2019-05-27 23:21:53 +00:00
return &cli.CliPlugin{}, bot.Message, msg.Message{
2019-01-19 00:48:12 +00:00
User: &user.User{Name: "tester"},
Channel: "test",
Body: payload,
Command: isCmd,
}
}
func TestWars(t *testing.T) {
2019-01-19 00:48:12 +00:00
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2019-02-05 20:02:15 +00:00
res := c.message(makeMessage("help me obi-wan"))
2019-01-19 00:48:12 +00:00
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
}
func TestTrek(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2019-02-05 20:02:15 +00:00
res := c.message(makeMessage("live long and prosper"))
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
}
func TestDune(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2019-02-05 20:02:15 +00:00
res := c.message(makeMessage("bless the maker"))
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
}
func TestPoke(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2019-02-05 20:02:15 +00:00
res := c.message(makeMessage("gotta catch em all"))
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
}