2018-08-30 20:05:03 +00:00
|
|
|
// © 2018 the CatBase Authors under the WTFPL. See AUTHORS for the list of authors.
|
|
|
|
|
|
|
|
package picker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/velour/catbase/bot"
|
|
|
|
"github.com/velour/catbase/bot/msg"
|
|
|
|
"github.com/velour/catbase/bot/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
func makeMessage(payload string) msg.Message {
|
|
|
|
isCmd := strings.HasPrefix(payload, "!")
|
|
|
|
if isCmd {
|
|
|
|
payload = payload[1:]
|
|
|
|
}
|
|
|
|
return msg.Message{
|
|
|
|
User: &user.User{Name: "tester"},
|
|
|
|
Channel: "test",
|
|
|
|
Body: payload,
|
|
|
|
Command: isCmd,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-31 02:32:10 +00:00
|
|
|
func TestPick2(t *testing.T) {
|
2018-08-30 20:05:03 +00:00
|
|
|
mb := bot.NewMockBot()
|
|
|
|
c := New(mb)
|
|
|
|
assert.NotNil(t, c)
|
|
|
|
res := c.Message(makeMessage("!pick 2 { a, b,c}"))
|
|
|
|
assert.Len(t, mb.Messages, 1)
|
|
|
|
if !res {
|
|
|
|
t.Fatalf("expected a successful choice, got %q", mb.Messages[0])
|
|
|
|
}
|
|
|
|
}
|
2018-08-31 02:32:10 +00:00
|
|
|
|
|
|
|
func TestPickDefault(t *testing.T) {
|
|
|
|
mb := bot.NewMockBot()
|
|
|
|
c := New(mb)
|
|
|
|
assert.NotNil(t, c)
|
|
|
|
_ = c.Message(makeMessage("!pick { a}"))
|
|
|
|
assert.Len(t, mb.Messages, 1)
|
|
|
|
assert.Equal(t, `I've chosen "a" for you.`, mb.Messages[0])
|
|
|
|
}
|