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

69 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 TestChannelUpdatePermissions(t *testing.T) {
client := newTestClient(t)
owner := createTestAccount(t, client)
member := createTestAccount(t, client)
ensureSessionStarted(t, client, owner.Token)
ensureSessionStarted(t, client, member.Token)
guild := createGuild(t, client, owner.Token, "Permissions Test Guild")
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", parseSnowflake(t, guild.ID)), map[string]any{
"name": "test-channel",
"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)
invite := createChannelInvite(t, client, owner.Token, parseSnowflake(t, channel.ID))
resp, err = client.postJSONWithAuth(fmt.Sprintf("/invites/%s", invite.Code), nil, member.Token)
if err != nil {
t.Fatalf("failed to accept invite: %v", err)
}
assertStatus(t, resp, http.StatusOK)
resp.Body.Close()
updatePayload := map[string]any{
"name": "renamed-by-member",
"type": 0,
}
resp, err = client.patchJSONWithAuth(fmt.Sprintf("/channels/%d", parseSnowflake(t, channel.ID)), updatePayload, member.Token)
if err != nil {
t.Fatalf("failed to send update request: %v", err)
}
if resp.StatusCode == http.StatusOK {
t.Fatalf("expected channel update to fail for member without MANAGE_CHANNELS permission")
}
resp.Body.Close()
}