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

98 lines
3.9 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"
"strings"
"testing"
)
func TestMessageSearchScopesInGuild(t *testing.T) {
client := newTestClient(t)
user := createTestAccount(t, client)
friendA := createTestAccount(t, client)
friendB := createTestAccount(t, client)
friendC := createTestAccount(t, client)
createFriendship(t, client, user, friendA)
createFriendship(t, client, user, friendB)
createFriendship(t, client, user, friendC)
sharedGuild := createGuild(t, client, user.Token, "Shared Test Guild")
sharedInvite := createChannelInvite(t, client, user.Token, parseSnowflake(t, sharedGuild.SystemChannel))
joinGuild(t, client, friendA.Token, sharedInvite.Code)
joinGuild(t, client, friendB.Token, sharedInvite.Code)
joinGuild(t, client, friendC.Token, sharedInvite.Code)
suffix := strings.ToLower(strings.ReplaceAll(t.Name(), "/", "-"))
searchTerm := fmt.Sprintf("scope-search-guild-%s", suffix)
dmCurrent := createDmChannel(t, client, user.Token, parseSnowflake(t, friendA.UserID))
sendChannelMessage(t, client, user.Token, parseSnowflake(t, dmCurrent.ID), fmt.Sprintf("%s current", searchTerm))
dmOpen := createDmChannel(t, client, user.Token, parseSnowflake(t, friendB.UserID))
sendChannelMessage(t, client, user.Token, parseSnowflake(t, dmOpen.ID), fmt.Sprintf("%s open", searchTerm))
dmClosed := createDmChannel(t, client, user.Token, parseSnowflake(t, friendC.UserID))
sendChannelMessage(t, client, user.Token, parseSnowflake(t, dmClosed.ID), fmt.Sprintf("%s closed", searchTerm))
dmClosedID := parseSnowflake(t, dmClosed.ID)
resp, err := client.delete(fmt.Sprintf("/channels/%d", dmClosedID), user.Token)
if err != nil {
t.Fatalf("failed to close DM channel: %v", err)
}
assertStatus(t, resp, http.StatusNoContent)
resp.Body.Close()
guildSuffix := fmt.Sprintf("shared-guild-%s", suffix)
guildA := createGuild(t, client, user.Token, fmt.Sprintf("Scope Guild Alpha %s", guildSuffix))
guildB := createGuild(t, client, user.Token, fmt.Sprintf("Scope Guild Beta %s", guildSuffix))
sendChannelMessage(t, client, user.Token, parseSnowflake(t, guildA.SystemChannel), fmt.Sprintf("%s community-a", searchTerm))
sendChannelMessage(t, client, user.Token, parseSnowflake(t, guildB.SystemChannel), fmt.Sprintf("%s community-b", searchTerm))
contextGuildID := guildA.ID
tests := []struct {
scope string
expected []string
}{
{scope: "current", expected: []string{guildA.SystemChannel}},
{scope: "all_guilds", expected: []string{guildA.SystemChannel, guildB.SystemChannel}},
{scope: "all_dms", expected: []string{dmCurrent.ID, dmOpen.ID, dmClosed.ID}},
{scope: "open_dms", expected: []string{dmCurrent.ID, dmOpen.ID}},
{scope: "all", expected: []string{dmCurrent.ID, dmOpen.ID, dmClosed.ID, guildA.SystemChannel, guildB.SystemChannel}},
{scope: "open_dms_and_all_guilds", expected: []string{dmCurrent.ID, dmOpen.ID, guildA.SystemChannel, guildB.SystemChannel}},
}
for _, tc := range tests {
payload := map[string]any{
"scope": tc.scope,
"content": searchTerm,
"context_guild_id": contextGuildID,
}
resp := waitForSearchResults(t, client, user.Token, payload)
actual := channelSetFromSearch(resp)
requireExactChannels(t, tc.scope, actual, tc.expected)
}
}