mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-12-02 20:02:53 +00:00
Fixed unit tests
This commit is contained in:
parent
d627690835
commit
cfa764b150
|
@ -2,11 +2,60 @@ package handler
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/diamondburned/arikawa/gateway"
|
"github.com/diamondburned/arikawa/gateway"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func TestCall(t *testing.T) {
|
||||||
|
var results = make(chan string)
|
||||||
|
|
||||||
|
h := &Handler{
|
||||||
|
handlers: map[uint64]handler{},
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add handler test
|
||||||
|
rm := h.AddHandler(func(m *gateway.MessageCreateEvent) {
|
||||||
|
results <- m.Content
|
||||||
|
})
|
||||||
|
|
||||||
|
go h.Call(&gateway.MessageCreateEvent{
|
||||||
|
Content: "test",
|
||||||
|
})
|
||||||
|
|
||||||
|
if r := <-results; r != "test" {
|
||||||
|
t.Fatal("Returned results is wrong:", r)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove handler test
|
||||||
|
rm()
|
||||||
|
|
||||||
|
go h.Call(&gateway.MessageCreateEvent{
|
||||||
|
Content: "test",
|
||||||
|
})
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-results:
|
||||||
|
t.Fatal("Unexpected results")
|
||||||
|
case <-time.After(time.Millisecond):
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
// Invalid type test
|
||||||
|
_, err := h.AddHandlerCheck("this should panic")
|
||||||
|
if err == nil {
|
||||||
|
t.Fatal("No errors found")
|
||||||
|
}
|
||||||
|
|
||||||
|
// We don't do anything with the returned callback, as there's none.
|
||||||
|
|
||||||
|
if !strings.Contains(err.Error(), "given interface is not a function") {
|
||||||
|
t.Fatal("Unexpected error:", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestHandler(t *testing.T) {
|
func TestHandler(t *testing.T) {
|
||||||
var results = make(chan string)
|
var results = make(chan string)
|
||||||
|
|
||||||
|
|
|
@ -1,55 +0,0 @@
|
||||||
package session
|
|
||||||
|
|
||||||
import (
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/diamondburned/arikawa/gateway"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestSessionCall(t *testing.T) {
|
|
||||||
var results = make(chan string)
|
|
||||||
|
|
||||||
s := &Session{
|
|
||||||
handlers: map[uint64]handler{},
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add handler test
|
|
||||||
rm := s.AddHandler(func(m *gateway.MessageCreateEvent) {
|
|
||||||
results <- m.Content
|
|
||||||
})
|
|
||||||
|
|
||||||
go s.call(&gateway.MessageCreateEvent{
|
|
||||||
Content: "test",
|
|
||||||
})
|
|
||||||
|
|
||||||
if r := <-results; r != "test" {
|
|
||||||
t.Fatal("Returned results is wrong:", r)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove handler test
|
|
||||||
rm()
|
|
||||||
|
|
||||||
go s.call(&gateway.MessageCreateEvent{
|
|
||||||
Content: "test",
|
|
||||||
})
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-results:
|
|
||||||
t.Fatal("Unexpected results")
|
|
||||||
case <-time.After(time.Millisecond):
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
// Invalid type test
|
|
||||||
rm, err := s.AddHandlerCheck("this should panic")
|
|
||||||
if err == nil {
|
|
||||||
t.Fatal("No errors found")
|
|
||||||
}
|
|
||||||
defer rm()
|
|
||||||
|
|
||||||
if !strings.Contains(err.Error(), "given interface is not a function") {
|
|
||||||
t.Fatal("Unexpected error:", err)
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue