catbase/plugins/dice/dice_test.go

73 lines
1.6 KiB
Go
Raw Normal View History

2016-03-30 23:04:49 +00:00
// © 2013 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
package dice
import (
"strings"
"testing"
2021-02-01 20:57:34 +00:00
"github.com/velour/catbase/plugins/cli"
2016-03-30 23:04:49 +00:00
"github.com/stretchr/testify/assert"
"github.com/velour/catbase/bot"
"github.com/velour/catbase/bot/msg"
"github.com/velour/catbase/bot/user"
2016-03-30 23:04:49 +00:00
)
2021-02-01 20:57:34 +00:00
func makeMessage(payload string) bot.Request {
2016-03-30 23:04:49 +00:00
isCmd := strings.HasPrefix(payload, "!")
if isCmd {
payload = payload[1:]
}
2021-02-01 20:57:34 +00:00
values := bot.ParseValues(rollRegex, payload)
return bot.Request{
Conn: &cli.CliPlugin{},
Kind: bot.Message,
Values: values,
Msg: msg.Message{
User: &user.User{Name: "tester"},
Channel: "test",
Body: payload,
Command: isCmd,
},
2016-03-30 23:04:49 +00:00
}
}
func TestDie(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2021-02-01 20:57:34 +00:00
res := c.rollCmd(makeMessage("1d6"))
2016-03-30 23:04:49 +00:00
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
assert.Contains(t, mb.Messages[0], "tester, you rolled:")
}
func TestDice(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2021-02-01 20:57:34 +00:00
res := c.rollCmd(makeMessage("5d6"))
2016-03-30 23:04:49 +00:00
assert.Len(t, mb.Messages, 1)
assert.True(t, res)
assert.Contains(t, mb.Messages[0], "tester, you rolled:")
}
func TestLotsOfDice(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2021-02-01 20:57:34 +00:00
res := c.rollCmd(makeMessage("100d100"))
2016-03-30 23:04:49 +00:00
assert.True(t, res)
assert.Len(t, mb.Messages, 1)
assert.Contains(t, mb.Messages[0], "You're a dick.")
}
func TestHelp(t *testing.T) {
mb := bot.NewMockBot()
c := New(mb)
assert.NotNil(t, c)
2019-05-27 23:21:53 +00:00
c.help(&cli.CliPlugin{}, bot.Help, msg.Message{Channel: "channel"}, []string{})
2016-03-30 23:04:49 +00:00
assert.Len(t, mb.Messages, 1)
}