2020-01-19 06:06:00 +00:00
|
|
|
package bot
|
|
|
|
|
|
|
|
import (
|
2020-01-26 05:43:42 +00:00
|
|
|
"errors"
|
2020-05-04 06:48:07 +00:00
|
|
|
"fmt"
|
2020-01-19 06:06:00 +00:00
|
|
|
"reflect"
|
2020-01-24 03:17:03 +00:00
|
|
|
"strconv"
|
2020-01-19 06:06:00 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
2020-05-04 06:48:07 +00:00
|
|
|
"time"
|
2020-01-19 06:06:00 +00:00
|
|
|
|
|
|
|
"github.com/diamondburned/arikawa/discord"
|
|
|
|
"github.com/diamondburned/arikawa/gateway"
|
|
|
|
"github.com/diamondburned/arikawa/state"
|
|
|
|
)
|
|
|
|
|
2020-05-04 01:33:24 +00:00
|
|
|
type testc struct {
|
2020-01-24 03:17:03 +00:00
|
|
|
Ctx *Context
|
|
|
|
Return chan interface{}
|
|
|
|
Counter uint64
|
2020-01-24 16:08:12 +00:00
|
|
|
Typed bool
|
2020-01-24 03:17:03 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) MーBumpCounter(interface{}) {
|
2020-01-24 03:17:03 +00:00
|
|
|
t.Counter++
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) GetCounter(_ *gateway.MessageCreateEvent) {
|
2020-01-24 03:17:03 +00:00
|
|
|
t.Return <- strconv.FormatUint(t.Counter, 10)
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 01:33:24 +00:00
|
|
|
func (t *testc) Send(_ *gateway.MessageCreateEvent, args ...string) error {
|
2020-05-03 22:59:10 +00:00
|
|
|
t.Return <- args
|
2020-01-19 06:06:00 +00:00
|
|
|
return errors.New("oh no")
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) Custom(_ *gateway.MessageCreateEvent, c *customManualParsed) {
|
2020-01-19 06:06:00 +00:00
|
|
|
t.Return <- c.args
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) Variadic(_ *gateway.MessageCreateEvent, c ...*customParsed) {
|
2020-05-03 22:59:10 +00:00
|
|
|
t.Return <- c[len(c)-1]
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) TrailCustom(_ *gateway.MessageCreateEvent, s string, c *customManualParsed) {
|
2020-05-04 01:33:24 +00:00
|
|
|
t.Return <- c.args
|
2020-05-04 05:57:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testc) Content(_ *gateway.MessageCreateEvent, c RawArguments) {
|
|
|
|
t.Return <- c
|
2020-05-04 01:33:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *testc) NoArgs(_ *gateway.MessageCreateEvent) error {
|
2020-01-19 06:06:00 +00:00
|
|
|
return errors.New("passed")
|
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) Noop(_ *gateway.MessageCreateEvent) {
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
func (t *testc) OnTyping(_ *gateway.TypingStartEvent) {
|
2020-01-24 16:08:12 +00:00
|
|
|
t.Typed = true
|
|
|
|
}
|
|
|
|
|
2020-01-19 06:06:00 +00:00
|
|
|
func TestNewContext(t *testing.T) {
|
|
|
|
var state = &state.State{
|
|
|
|
Store: state.NewDefaultStore(nil),
|
|
|
|
}
|
|
|
|
|
2020-05-04 01:33:24 +00:00
|
|
|
c, err := New(state, &testc{})
|
2020-01-19 06:06:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Failed to create new context:", err)
|
|
|
|
}
|
2020-02-05 04:29:45 +00:00
|
|
|
|
|
|
|
if !reflect.DeepEqual(c.Subcommands(), c.subcommands) {
|
|
|
|
t.Fatal("Subcommands mismatch.")
|
|
|
|
}
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext(t *testing.T) {
|
2020-05-04 01:33:24 +00:00
|
|
|
var given = &testc{}
|
2020-01-19 06:06:00 +00:00
|
|
|
var state = &state.State{
|
|
|
|
Store: state.NewDefaultStore(nil),
|
|
|
|
}
|
|
|
|
|
|
|
|
s, err := NewSubcommand(given)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Failed to create subcommand:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var ctx = &Context{
|
|
|
|
Subcommand: s,
|
|
|
|
State: state,
|
2020-05-06 06:23:52 +00:00
|
|
|
ParseArgs: DefaultArgsParser(),
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("init commands", func(t *testing.T) {
|
|
|
|
if err := ctx.Subcommand.InitCommands(ctx); err != nil {
|
|
|
|
t.Fatal("Failed to init commands:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if given.Ctx == nil {
|
|
|
|
t.Fatal("given's Context field is nil")
|
|
|
|
}
|
|
|
|
|
2020-03-01 02:54:14 +00:00
|
|
|
if given.Ctx.State.Store == nil {
|
2020-01-19 06:06:00 +00:00
|
|
|
t.Fatal("given's State is nil")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-02-05 04:29:45 +00:00
|
|
|
t.Run("find commands", func(t *testing.T) {
|
|
|
|
cmd := ctx.FindCommand("", "NoArgs")
|
|
|
|
if cmd == nil {
|
|
|
|
t.Fatal("Failed to find NoArgs")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("help", func(t *testing.T) {
|
|
|
|
if h := ctx.Help(); h == "" {
|
|
|
|
t.Fatal("Empty help?")
|
|
|
|
}
|
|
|
|
if h := ctx.HelpAdmin(); h == "" {
|
|
|
|
t.Fatal("Empty admin help?")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-24 03:17:03 +00:00
|
|
|
t.Run("middleware", func(t *testing.T) {
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("pls do ")
|
2020-01-24 03:17:03 +00:00
|
|
|
|
|
|
|
// This should trigger the middleware first.
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, "1", "pls do getCounter"); err != nil {
|
2020-01-24 03:17:03 +00:00
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-24 16:08:12 +00:00
|
|
|
t.Run("typing event", func(t *testing.T) {
|
|
|
|
typing := &gateway.TypingStartEvent{}
|
|
|
|
|
|
|
|
if err := ctx.callCmd(typing); err != nil {
|
|
|
|
t.Fatal("Failed to call with TypingStart:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !given.Typed {
|
|
|
|
t.Fatal("Typed bool is false")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-19 06:06:00 +00:00
|
|
|
t.Run("call command", func(t *testing.T) {
|
|
|
|
// Set a custom prefix
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("~")
|
2020-01-19 06:06:00 +00:00
|
|
|
|
2020-05-03 22:59:10 +00:00
|
|
|
var (
|
|
|
|
strings = "hacka doll no. 3"
|
|
|
|
expects = []string{"hacka", "doll", "no.", "3"}
|
|
|
|
)
|
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, expects, "~send "+strings); err.Error() != "oh no" {
|
2020-01-24 03:17:03 +00:00
|
|
|
t.Fatal("Unexpected error:", err)
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-05-04 05:57:44 +00:00
|
|
|
t.Run("call command rawarguments", func(t *testing.T) {
|
|
|
|
ctx.HasPrefix = NewPrefix("!")
|
|
|
|
expects := RawArguments("just things")
|
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, expects, "!content just things"); err != nil {
|
2020-05-04 05:57:44 +00:00
|
|
|
t.Fatal("Unexpected call error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-05-03 22:59:10 +00:00
|
|
|
t.Run("call command custom manual parser", func(t *testing.T) {
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("!")
|
2020-05-04 01:33:24 +00:00
|
|
|
expects := []string{"arg1", ":)"}
|
2020-01-19 06:06:00 +00:00
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, expects, "!custom arg1 :)"); err != nil {
|
2020-01-19 06:06:00 +00:00
|
|
|
t.Fatal("Unexpected call error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-05-03 22:59:10 +00:00
|
|
|
t.Run("call command custom variadic parser", func(t *testing.T) {
|
|
|
|
ctx.HasPrefix = NewPrefix("!")
|
|
|
|
expects := &customParsed{true}
|
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, expects, "!variadic bruh moment"); err != nil {
|
2020-05-03 22:59:10 +00:00
|
|
|
t.Fatal("Unexpected call error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-05-04 01:33:24 +00:00
|
|
|
t.Run("call command custom trailing manual parser", func(t *testing.T) {
|
|
|
|
ctx.HasPrefix = NewPrefix("!")
|
2020-05-04 04:22:19 +00:00
|
|
|
expects := []string{}
|
2020-05-04 01:33:24 +00:00
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
if err := expect(ctx, given, expects, "!trailCustom hime_arikawa"); err != nil {
|
2020-05-04 01:33:24 +00:00
|
|
|
t.Fatal("Unexpected call error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-19 06:06:00 +00:00
|
|
|
testMessage := func(content string) error {
|
|
|
|
// Mock a messageCreate event
|
|
|
|
m := &gateway.MessageCreateEvent{
|
2020-04-12 23:24:28 +00:00
|
|
|
Message: discord.Message{
|
|
|
|
Content: content,
|
|
|
|
},
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ctx.callCmd(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("call command without args", func(t *testing.T) {
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("")
|
2020-01-19 06:06:00 +00:00
|
|
|
|
2020-01-24 16:08:12 +00:00
|
|
|
if err := testMessage("noArgs"); err.Error() != "passed" {
|
2020-01-19 06:06:00 +00:00
|
|
|
t.Fatal("unexpected error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test error cases
|
|
|
|
|
|
|
|
t.Run("call unknown command", func(t *testing.T) {
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("joe pls ")
|
2020-01-19 06:06:00 +00:00
|
|
|
|
|
|
|
err := testMessage("joe pls no")
|
|
|
|
|
|
|
|
if err == nil || !strings.HasPrefix(err.Error(), "Unknown command:") {
|
|
|
|
t.Fatal("unexpected error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test subcommands
|
|
|
|
|
|
|
|
t.Run("register subcommand", func(t *testing.T) {
|
2020-04-06 20:31:27 +00:00
|
|
|
ctx.HasPrefix = NewPrefix("run ")
|
2020-01-19 06:06:00 +00:00
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
sub := &testc{}
|
|
|
|
|
|
|
|
_, err := ctx.RegisterSubcommand(sub)
|
2020-01-19 06:06:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Failed to register subcommand:", err)
|
|
|
|
}
|
|
|
|
|
2020-05-04 01:33:24 +00:00
|
|
|
if err := testMessage("run testc noop"); err != nil {
|
2020-02-05 04:29:45 +00:00
|
|
|
t.Fatal("Unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
expects := RawArguments("hackadoll no. 3")
|
|
|
|
|
|
|
|
if err := expect(ctx, sub, expects, "run testc content hackadoll no. 3"); err != nil {
|
|
|
|
t.Fatal("Unexpected call error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if cmd := ctx.FindCommand("testc", "Noop"); cmd == nil {
|
2020-02-05 04:29:45 +00:00
|
|
|
t.Fatal("Failed to find subcommand Noop")
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-05-04 06:48:07 +00:00
|
|
|
func expect(ctx *Context, given *testc, expects interface{}, content string) (call error) {
|
|
|
|
// Return channel for testing
|
|
|
|
ret := make(chan interface{})
|
|
|
|
given.Return = ret
|
|
|
|
|
|
|
|
// Mock a messageCreate event
|
|
|
|
m := &gateway.MessageCreateEvent{
|
|
|
|
Message: discord.Message{
|
|
|
|
Content: content,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var callCh = make(chan error)
|
|
|
|
go func() {
|
|
|
|
callCh <- ctx.callCmd(m)
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case arg := <-ret:
|
|
|
|
if !reflect.DeepEqual(arg, expects) {
|
|
|
|
return fmt.Errorf("returned argument is invalid: %v", arg)
|
|
|
|
}
|
|
|
|
call = <-callCh
|
|
|
|
return
|
|
|
|
|
|
|
|
case call = <-callCh:
|
|
|
|
return fmt.Errorf("expected return before error: %w", call)
|
|
|
|
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
return errors.New("Timed out while waiting")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-19 06:06:00 +00:00
|
|
|
func BenchmarkConstructor(b *testing.B) {
|
|
|
|
var state = &state.State{
|
|
|
|
Store: state.NewDefaultStore(nil),
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
2020-05-04 01:33:24 +00:00
|
|
|
_, _ = New(state, &testc{})
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCall(b *testing.B) {
|
2020-05-04 01:33:24 +00:00
|
|
|
var given = &testc{}
|
2020-01-19 06:06:00 +00:00
|
|
|
var state = &state.State{
|
|
|
|
Store: state.NewDefaultStore(nil),
|
|
|
|
}
|
|
|
|
|
|
|
|
s, _ := NewSubcommand(given)
|
|
|
|
|
|
|
|
var ctx = &Context{
|
|
|
|
Subcommand: s,
|
|
|
|
State: state,
|
2020-04-06 20:31:27 +00:00
|
|
|
HasPrefix: NewPrefix("~"),
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m := &gateway.MessageCreateEvent{
|
2020-04-12 23:24:28 +00:00
|
|
|
Message: discord.Message{
|
|
|
|
Content: "~noop",
|
|
|
|
},
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
ctx.callCmd(m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkHelp(b *testing.B) {
|
2020-05-04 01:33:24 +00:00
|
|
|
var given = &testc{}
|
2020-01-19 06:06:00 +00:00
|
|
|
var state = &state.State{
|
|
|
|
Store: state.NewDefaultStore(nil),
|
|
|
|
}
|
|
|
|
|
|
|
|
s, _ := NewSubcommand(given)
|
|
|
|
|
|
|
|
var ctx = &Context{
|
|
|
|
Subcommand: s,
|
|
|
|
State: state,
|
2020-04-06 20:31:27 +00:00
|
|
|
HasPrefix: NewPrefix("~"),
|
2020-01-19 06:06:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_ = ctx.Help()
|
|
|
|
}
|
|
|
|
}
|