2021-06-10 23:48:32 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-09-28 20:19:04 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/discord"
|
2021-06-10 23:48:32 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/gateway"
|
|
|
|
"github.com/diamondburned/arikawa/v3/internal/testenv"
|
2021-09-28 20:19:04 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/session/shard"
|
2021-06-10 23:48:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSharding(t *testing.T) {
|
|
|
|
env := testenv.Must(t)
|
|
|
|
|
2021-09-28 20:19:04 +00:00
|
|
|
data := gateway.DefaultIdentifyCommand("Bot " + env.BotToken)
|
2021-06-10 23:48:32 +00:00
|
|
|
data.Shard = &gateway.Shard{0, env.ShardCount}
|
2021-09-28 20:19:04 +00:00
|
|
|
data.Presence = &gateway.UpdatePresenceCommand{
|
|
|
|
Status: discord.DoNotDisturbStatus,
|
|
|
|
Activities: []discord.Activity{{
|
|
|
|
Name: "Testing shards...",
|
|
|
|
Type: discord.CustomActivity,
|
|
|
|
}},
|
|
|
|
}
|
2021-06-10 23:48:32 +00:00
|
|
|
|
|
|
|
readyCh := make(chan *gateway.ReadyEvent)
|
|
|
|
|
|
|
|
m, err := shard.NewIdentifiedManager(data, NewShardFunc(
|
|
|
|
func(m *shard.Manager, s *State) {
|
|
|
|
now := time.Now().Format(time.StampMilli)
|
|
|
|
t.Log(now, "initializing shard")
|
|
|
|
|
|
|
|
s.AddIntents(gateway.IntentGuilds)
|
2021-09-28 20:19:04 +00:00
|
|
|
s.AddSyncHandler(readyCh)
|
|
|
|
s.AddSyncHandler(func(err error) {
|
|
|
|
t.Log("background error:", err)
|
|
|
|
})
|
2021-06-10 23:48:32 +00:00
|
|
|
},
|
|
|
|
))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("failed to make shard manager:", err)
|
|
|
|
}
|
|
|
|
|
2021-09-28 20:19:04 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute)
|
2021-06-10 23:48:32 +00:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
// Timeout
|
|
|
|
if err := m.Open(ctx); err != nil {
|
|
|
|
t.Error("failed to open:", err)
|
|
|
|
cancel()
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Cleanup(func() {
|
|
|
|
if err := m.Close(); err != nil {
|
|
|
|
t.Error("failed to close:", err)
|
|
|
|
cancel()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}()
|
|
|
|
|
|
|
|
for i := 0; i < env.ShardCount; i++ {
|
|
|
|
select {
|
|
|
|
case ready := <-readyCh:
|
|
|
|
now := time.Now().Format(time.StampMilli)
|
|
|
|
t.Log(now, "shard", ready.Shard.ShardID(), "is ready out of", env.ShardCount)
|
|
|
|
case <-ctx.Done():
|
|
|
|
t.Fatal("test expired, got", i, "shards")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|