71 lines
2.2 KiB
Go
71 lines
2.2 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 (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestGuildChannelTopicUpdate(t *testing.T) {
|
|
client := newTestClient(t)
|
|
owner := createTestAccount(t, client)
|
|
ensureSessionStarted(t, client, owner.Token)
|
|
|
|
ownerSocket := newGatewayClient(t, client, owner.Token)
|
|
t.Cleanup(ownerSocket.Close)
|
|
|
|
guild := createGuild(t, client, owner.Token, "Topic Test Guild")
|
|
waitForGuildEvent(t, ownerSocket, "GUILD_CREATE", guild.ID)
|
|
|
|
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", parseSnowflake(t, guild.ID)), map[string]any{
|
|
"name": "general",
|
|
"type": 0,
|
|
}, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to create channel: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
var channel minimalChannelResponse
|
|
decodeJSONResponse(t, resp, &channel)
|
|
waitForChannelEvent(t, ownerSocket, "CHANNEL_CREATE", channel.ID)
|
|
|
|
updatePayload := map[string]any{
|
|
"topic": "This is the new channel topic",
|
|
"type": 0,
|
|
}
|
|
resp, err = client.patchJSONWithAuth(fmt.Sprintf("/channels/%d", parseSnowflake(t, channel.ID)), updatePayload, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to update channel topic: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
var updatedChannel struct {
|
|
ID string `json:"id"`
|
|
Topic *string `json:"topic"`
|
|
}
|
|
decodeJSONResponse(t, resp, &updatedChannel)
|
|
if updatedChannel.Topic == nil || *updatedChannel.Topic != "This is the new channel topic" {
|
|
t.Fatalf("expected channel topic to be set")
|
|
}
|
|
|
|
waitForChannelEvent(t, ownerSocket, "CHANNEL_UPDATE", channel.ID)
|
|
}
|