fluxer/tests/integration/gateway_guild_membership_and_invite_events_test.go
2026-01-01 21:05:54 +00:00

121 lines
3.7 KiB
Go

/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
package integration
import (
"encoding/json"
"fmt"
"net/http"
"testing"
"time"
)
func TestGatewayGuildMembershipAndInviteEvents(t *testing.T) {
client := newTestClient(t)
owner := createTestAccount(t, client)
guest := createTestAccount(t, client)
ownerSocket := newGatewayClient(t, client, owner.Token)
t.Cleanup(ownerSocket.Close)
guestSocket := newGatewayClient(t, client, guest.Token)
t.Cleanup(guestSocket.Close)
guild := createGuild(t, client, owner.Token, fmt.Sprintf("Membership Guild %d", time.Now().UnixNano()))
channelID := parseSnowflake(t, guild.SystemChannel)
invite := createChannelInvite(t, client, owner.Token, channelID)
ownerSocket.WaitForEvent(t, "INVITE_CREATE", 30*time.Second, func(raw json.RawMessage) bool {
var payload struct {
Code string `json:"code"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode invite create payload: %v", err)
}
return payload.Code == invite.Code
})
resp, err := client.postJSONWithAuth(fmt.Sprintf("/invites/%s", invite.Code), nil, guest.Token)
if err != nil {
t.Fatalf("failed to accept invite: %v", err)
}
assertStatus(t, resp, http.StatusOK)
resp.Body.Close()
ownerSocket.WaitForEvent(t, "GUILD_MEMBER_ADD", 60*time.Second, func(raw json.RawMessage) bool {
var payload struct {
User struct {
ID string `json:"id"`
} `json:"user"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode guild member add payload: %v", err)
}
return payload.User.ID == guest.UserID
})
resp, err = client.delete(fmt.Sprintf("/invites/%s", invite.Code), owner.Token)
if err != nil {
t.Fatalf("failed to delete invite: %v", err)
}
assertStatus(t, resp, http.StatusNoContent)
resp.Body.Close()
ownerSocket.WaitForEvent(t, "INVITE_DELETE", 30*time.Second, func(raw json.RawMessage) bool {
var payload struct {
Code string `json:"code"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode invite delete payload: %v", err)
}
return payload.Code == invite.Code
})
resp, err = client.delete(fmt.Sprintf("/guilds/%d/members/%s", parseSnowflake(t, guild.ID), guest.UserID), owner.Token)
if err != nil {
t.Fatalf("failed to remove guild member: %v", err)
}
assertStatus(t, resp, http.StatusNoContent)
resp.Body.Close()
ownerSocket.WaitForEvent(t, "GUILD_MEMBER_REMOVE", 60*time.Second, func(raw json.RawMessage) bool {
var payload struct {
User struct {
ID string `json:"id"`
} `json:"user"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode guild member remove payload: %v", err)
}
return payload.User.ID == guest.UserID
})
guestSocket.WaitForEvent(t, "GUILD_DELETE", 60*time.Second, func(raw json.RawMessage) bool {
var payload struct {
ID string `json:"id"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode guild delete payload: %v", err)
}
return payload.ID == guild.ID
})
}