bb/lib/common_test.go

79 lines
1.7 KiB
Go
Raw Normal View History

2022-09-04 13:50:43 +00:00
package lib
import "testing"
2022-09-05 17:54:56 +00:00
func TestContainsCommand(t *testing.T) {
2022-09-04 13:50:43 +00:00
tables := []struct {
s string
prefix string
cmd string
r bool
}{
{"!command x y", "!", "command", true},
{"#command x y", "#", "command", true},
{"command x y", "!", "comamnd", false},
{"", "", "", false},
{"!", "!", "", false},
{"! x y", "!", "", false},
}
for _, table := range tables {
2022-09-05 17:54:56 +00:00
r := ContainsCommand(table.s, table.prefix, table.cmd)
2022-09-04 13:50:43 +00:00
if r != table.r {
2022-09-05 17:54:56 +00:00
t.Errorf("ContainsCommand(%q, %q, %q), got: %t, want: %t",
2022-09-04 13:50:43 +00:00
table.s, table.prefix, table.cmd, r, table.r,
)
}
}
}
2022-09-05 18:03:02 +00:00
func TestHasCommandCommand(t *testing.T) {
tables := []struct {
s string
prefix string
want bool
}{
{"!command", "!", true},
{"!command x y", "!", true},
{"!c x y", "!", true},
{"! x y", "!", false},
{"hey guy", "!", false},
{"hey", "!", false},
{"hey", "", false},
{"", "!", false},
{"", "", false},
}
for _, table := range tables {
if got, want := HasCommand(table.s, table.prefix), table.want; got != want {
t.Errorf(
"s: %s, prefix: %s, got: %t, want: %t",
table.s, table.prefix, got, want,
)
}
}
}
2022-09-05 18:03:47 +00:00
func TestSplitComandAndArgs(t *testing.T) {
tables := []struct {
s string
prefix string
wantCmd string
wantArgs []string
}{
{"!command x y", "!", "command", []string{"x", "y"}},
{"!command", "!", "command", []string(nil)},
{"hey man", "!", "", []string(nil)},
}
for _, table := range tables {
gotCmd, gotArgs := SplitCommandAndArgs(table.s, table.prefix)
if gotCmd != table.wantCmd {
t.Errorf("got: %s, want: %s", gotCmd, table.wantCmd)
}
if !reflect.DeepEqual(gotArgs, table.wantArgs) {
t.Errorf("got: %+v, want: %+v", gotArgs, table.wantArgs)
}
}
}