mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 04:24:19 +00:00
ebc74e3168
* Gateway: Fix gateway reconnect This commit uses the correct timeout, Gateway.ReconnectTimeout, when reconnecting. Furthermore, it adds a delay between consecutive, failed reconnects. * Gateway: Stop pacemaker when calling Gateway.CloseGracefully * API: remove unnecessary leading/trailing whitespaces * Gateway: Add Gateway.OnScalingRequired callback * Gateway: Make all user initiated user closures graceful and ensure that closures are respected during reconnects * Gateway: Fix typo * Gateway: Add Gateway.ReconnectAttempts and deprecate .ReconnectTimeout * Gateway: Add Gateway.Pause and reexport .Reconnect and .ReconnectCtx * Gateway: Improve the Gateway.OnShardingRequired docs * Wsutil: Code cleanup
155 lines
3.1 KiB
Go
155 lines
3.1 KiB
Go
package gateway
|
|
|
|
import (
|
|
"context"
|
|
"log"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/diamondburned/arikawa/v2/internal/heart"
|
|
"github.com/diamondburned/arikawa/v2/internal/testenv"
|
|
"github.com/diamondburned/arikawa/v2/utils/wsutil"
|
|
)
|
|
|
|
func init() {
|
|
wsutil.WSDebug = func(v ...interface{}) {
|
|
log.Println(append([]interface{}{"Debug:"}, v...)...)
|
|
}
|
|
heart.Debug = func(v ...interface{}) {
|
|
log.Println(append([]interface{}{"Heart:"}, v...)...)
|
|
}
|
|
}
|
|
|
|
func TestURL(t *testing.T) {
|
|
u, err := URL()
|
|
if err != nil {
|
|
t.Fatal("failed to get gateway URL:", err)
|
|
}
|
|
|
|
if u == "" {
|
|
t.Fatal("gateway URL is empty")
|
|
}
|
|
|
|
if !strings.HasPrefix(u, "wss://") {
|
|
t.Fatal("gatewayURL is invalid:", u)
|
|
}
|
|
}
|
|
|
|
func TestInvalidToken(t *testing.T) {
|
|
g, err := NewGateway("bad token")
|
|
if err != nil {
|
|
t.Fatal("Failed to make a Gateway:", err)
|
|
}
|
|
|
|
if err = g.Open(); err == nil {
|
|
t.Fatal("Unexpected success while opening with a bad token.")
|
|
}
|
|
|
|
// 4004 Authentication Failed.
|
|
if !strings.Contains(err.Error(), "4004") {
|
|
t.Fatal("Unexpected error:", err)
|
|
}
|
|
}
|
|
|
|
func TestIntegration(t *testing.T) {
|
|
config := testenv.Must(t)
|
|
|
|
wsutil.WSError = func(err error) {
|
|
t.Error(err)
|
|
}
|
|
|
|
var gateway *Gateway
|
|
|
|
// NewGateway should call Start for us.
|
|
g, err := NewGateway("Bot " + config.BotToken)
|
|
if err != nil {
|
|
t.Fatal("Failed to make a Gateway:", err)
|
|
}
|
|
g.AddIntents(IntentGuilds)
|
|
g.AfterClose = func(err error) {
|
|
t.Log("Closed.")
|
|
}
|
|
gateway = g
|
|
|
|
if err := g.Open(); err != nil {
|
|
t.Fatal("Failed to authenticate with Discord:", err)
|
|
}
|
|
|
|
ev := wait(t, gateway.Events)
|
|
ready, ok := ev.(*ReadyEvent)
|
|
if !ok {
|
|
t.Fatal("Event received is not of type Ready:", ev)
|
|
}
|
|
|
|
if gateway.SessionID() == "" {
|
|
t.Fatal("Session ID is empty")
|
|
}
|
|
|
|
log.Println("Bot's username is", ready.User.Username)
|
|
|
|
// Send a faster heartbeat every second for testing.
|
|
g.PacerLoop.SetPace(time.Second)
|
|
|
|
// Sleep past the rate limiter before reconnecting:
|
|
time.Sleep(5 * time.Second)
|
|
|
|
gotimeout(t, func() {
|
|
// Try and reconnect for 20 seconds maximum.
|
|
ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second)
|
|
defer cancel()
|
|
|
|
g.ErrorLog = func(err error) {
|
|
t.Fatal("Unexpected error while reconnecting:", err)
|
|
}
|
|
|
|
gateway.ReconnectCtx(ctx)
|
|
})
|
|
|
|
g.ErrorLog = func(err error) { log.Println(err) }
|
|
|
|
// Wait for the desired event:
|
|
gotimeout(t, func() {
|
|
for ev := range gateway.Events {
|
|
switch ev.(type) {
|
|
// Accept only a Resumed event.
|
|
case *ResumedEvent:
|
|
return // exit
|
|
case *ReadyEvent:
|
|
t.Fatal("Ready event received instead of Resumed.")
|
|
}
|
|
}
|
|
})
|
|
|
|
if err := g.Close(); err != nil {
|
|
t.Fatal("Failed to close Gateway:", err)
|
|
}
|
|
}
|
|
|
|
func wait(t *testing.T, evCh chan interface{}) interface{} {
|
|
select {
|
|
case ev := <-evCh:
|
|
return ev
|
|
case <-time.After(20 * time.Second):
|
|
t.Fatal("Timed out waiting for event")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func gotimeout(t *testing.T, fn func()) {
|
|
t.Helper()
|
|
|
|
var done = make(chan struct{})
|
|
go func() {
|
|
fn()
|
|
done <- struct{}{}
|
|
}()
|
|
|
|
select {
|
|
case <-time.After(20 * time.Second):
|
|
t.Fatal("Timed out waiting for function.")
|
|
case <-done:
|
|
return
|
|
}
|
|
}
|