103 lines
3.1 KiB
Go
103 lines
3.1 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"
|
|
"time"
|
|
)
|
|
|
|
func TestGuildChannelValidation(t *testing.T) {
|
|
client := newTestClient(t)
|
|
owner := createTestAccount(t, client)
|
|
|
|
guild := createGuild(t, client, owner.Token, "Channel Test Guild")
|
|
guildID := parseSnowflake(t, guild.ID)
|
|
|
|
t.Run("reject creating channel without name", func(t *testing.T) {
|
|
payload := map[string]any{"type": 0}
|
|
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", guildID), payload, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to make request: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusBadRequest)
|
|
resp.Body.Close()
|
|
})
|
|
|
|
t.Run("reject creating channel with invalid type", func(t *testing.T) {
|
|
payload := map[string]any{"name": "test", "type": 999}
|
|
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", guildID), payload, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to make request: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusBadRequest)
|
|
resp.Body.Close()
|
|
})
|
|
|
|
t.Run("owner can create text channel", func(t *testing.T) {
|
|
payload := map[string]any{
|
|
"name": fmt.Sprintf("text-%d", time.Now().UnixNano()),
|
|
"type": 0,
|
|
}
|
|
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", guildID), payload, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to create channel: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
var channel struct {
|
|
ID string `json:"id"`
|
|
}
|
|
decodeJSONResponse(t, resp, &channel)
|
|
if channel.ID == "" {
|
|
t.Error("expected channel ID in response")
|
|
}
|
|
})
|
|
|
|
t.Run("owner can create voice channel", func(t *testing.T) {
|
|
payload := map[string]any{
|
|
"name": fmt.Sprintf("voice-%d", time.Now().UnixNano()),
|
|
"type": 2,
|
|
}
|
|
resp, err := client.postJSONWithAuth(fmt.Sprintf("/guilds/%d/channels", guildID), payload, owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to create channel: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
resp.Body.Close()
|
|
})
|
|
|
|
t.Run("owner can get guild channels", func(t *testing.T) {
|
|
resp, err := client.getWithAuth(fmt.Sprintf("/guilds/%d/channels", guildID), owner.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to get channels: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
var channels []struct {
|
|
ID string `json:"id"`
|
|
}
|
|
decodeJSONResponse(t, resp, &channels)
|
|
if len(channels) == 0 {
|
|
t.Error("expected at least one channel")
|
|
}
|
|
})
|
|
}
|