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

77 lines
2.4 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"
"net/url"
"testing"
)
// TestUnclaimedAccountCannotAddReaction verifies that unclaimed accounts
// cannot add reactions to messages in guild channels.
func TestUnclaimedAccountCannotAddReaction(t *testing.T) {
client := newTestClient(t)
ownerAccount := createTestAccount(t, client)
memberAccount := createTestAccount(t, client)
guild := createGuild(t, client, ownerAccount.Token, "Test Guild")
channelID := parseSnowflake(t, guild.SystemChannel)
invite := createChannelInvite(t, client, ownerAccount.Token, channelID)
joinGuild(t, client, memberAccount.Token, invite.Code)
message := sendChannelMessage(t, client, ownerAccount.Token, channelID, "React to this!")
unclaimAccount(t, client, memberAccount.UserID)
emoji := url.PathEscape("👍")
resp, err := client.putJSONWithAuth(
fmt.Sprintf("/channels/%s/messages/%s/reactions/%s/@me", guild.SystemChannel, message.ID, emoji),
nil,
memberAccount.Token,
)
if err != nil {
t.Fatalf("failed to attempt reaction add: %v", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusBadRequest {
t.Fatalf("expected 400 for unclaimed account adding reaction, got %d: %s", resp.StatusCode, readResponseBody(resp))
}
// Verify the error code is UNCLAIMED_ACCOUNT_RESTRICTED
var errorResp struct {
Code string `json:"code"`
}
if err := json.NewDecoder(resp.Body).Decode(&errorResp); err != nil {
t.Fatalf("failed to decode error response: %v", err)
}
if errorResp.Code != "UNCLAIMED_ACCOUNT_RESTRICTED" {
t.Fatalf("expected error code UNCLAIMED_ACCOUNT_RESTRICTED, got %s", errorResp.Code)
}
t.Log("Unclaimed account cannot add reaction test passed")
}