fluxer/tests/integration/group_dm_nickname_update_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 (
"fmt"
"net/http"
"testing"
)
func TestGroupDMNicknameUpdate(t *testing.T) {
client := newTestClient(t)
user1 := createTestAccount(t, client)
user2 := createTestAccount(t, client)
user3 := createTestAccount(t, client)
user1Socket := newGatewayClient(t, client, user1.Token)
t.Cleanup(user1Socket.Close)
createFriendship(t, client, user1, user2)
createFriendship(t, client, user1, user3)
drainRelationshipEvents(t, user1Socket)
groupDmChannel := createGroupDmChannel(t, client, user1.Token, user2.UserID, user3.UserID)
waitForChannelEvent(t, user1Socket, "CHANNEL_CREATE", groupDmChannel.ID)
updatePayload := map[string]any{
"nicks": map[string]string{
user2.UserID: "User 2 Nick",
},
}
resp, err := client.patchJSONWithAuth(fmt.Sprintf("/channels/%d", parseSnowflake(t, groupDmChannel.ID)), updatePayload, user2.Token)
if err != nil {
t.Fatalf("failed to update own nickname: %v", err)
}
assertStatus(t, resp, http.StatusOK)
updatePayload = map[string]any{
"nicks": map[string]string{
user3.UserID: "User 3 Nick by User 2",
},
}
resp, err = client.patchJSONWithAuth(fmt.Sprintf("/channels/%d", parseSnowflake(t, groupDmChannel.ID)), updatePayload, user2.Token)
if err != nil {
t.Fatalf("failed to send request: %v", err)
}
assertStatus(t, resp, http.StatusForbidden)
updatePayload = map[string]any{
"nicks": map[string]string{
user3.UserID: "User 3 Nick by Owner",
},
}
resp, err = client.patchJSONWithAuth(fmt.Sprintf("/channels/%d", parseSnowflake(t, groupDmChannel.ID)), updatePayload, user1.Token)
if err != nil {
t.Fatalf("failed to update other nickname as owner: %v", err)
}
assertStatus(t, resp, http.StatusOK)
}