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

113 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 (
"encoding/json"
"fmt"
"net/http"
"testing"
"time"
)
func TestGatewayRelationshipLifecycle(t *testing.T) {
client := newTestClient(t)
requester := createTestAccount(t, client)
target := createTestAccount(t, client)
requesterSocket := newGatewayClient(t, client, requester.Token)
t.Cleanup(requesterSocket.Close)
targetSocket := newGatewayClient(t, client, target.Token)
t.Cleanup(targetSocket.Close)
resp, err := client.postJSONWithAuth(fmt.Sprintf("/users/@me/relationships/%s", target.UserID), nil, requester.Token)
if err != nil {
t.Fatalf("failed to send friend request: %v", err)
}
assertStatus(t, resp, http.StatusOK)
resp.Body.Close()
requesterSocket.WaitForEvent(t, "RELATIONSHIP_ADD", 30*time.Second, func(raw json.RawMessage) bool {
var payload relationshipResponse
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode requester relationship add: %v", err)
}
return payload.ID == target.UserID && payload.Type == relationshipOutgoing
})
targetSocket.WaitForEvent(t, "RELATIONSHIP_ADD", 30*time.Second, func(raw json.RawMessage) bool {
var payload relationshipResponse
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode target relationship add: %v", err)
}
return payload.ID == requester.UserID && payload.Type == relationshipIncoming
})
resp, err = client.putJSONWithAuth(fmt.Sprintf("/users/@me/relationships/%s", requester.UserID), nil, target.Token)
if err != nil {
t.Fatalf("failed to accept friend request: %v", err)
}
assertStatus(t, resp, http.StatusOK)
resp.Body.Close()
requesterSocket.WaitForEvent(t, "RELATIONSHIP_UPDATE", 30*time.Second, func(raw json.RawMessage) bool {
var payload relationshipResponse
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode requester relationship update: %v", err)
}
return payload.ID == target.UserID && payload.Type == relationshipFriend
})
targetSocket.WaitForEvent(t, "RELATIONSHIP_UPDATE", 30*time.Second, func(raw json.RawMessage) bool {
var payload relationshipResponse
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode target relationship update: %v", err)
}
return payload.ID == requester.UserID && payload.Type == relationshipFriend
})
resp, err = client.delete(fmt.Sprintf("/users/@me/relationships/%s", target.UserID), requester.Token)
if err != nil {
t.Fatalf("failed to remove friend: %v", err)
}
assertStatus(t, resp, http.StatusNoContent)
resp.Body.Close()
requesterSocket.WaitForEvent(t, "RELATIONSHIP_REMOVE", 30*time.Second, func(raw json.RawMessage) bool {
var payload struct {
ID string `json:"id"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode requester relationship remove: %v", err)
}
return payload.ID == target.UserID
})
targetSocket.WaitForEvent(t, "RELATIONSHIP_REMOVE", 30*time.Second, func(raw json.RawMessage) bool {
var payload struct {
ID string `json:"id"`
}
if err := json.Unmarshal(raw, &payload); err != nil {
t.Fatalf("failed to decode target relationship remove: %v", err)
}
return payload.ID == requester.UserID
})
}