56 lines
1.9 KiB
Go
56 lines
1.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"
|
|
"testing"
|
|
)
|
|
|
|
// TestDMCallBlockedAfterBlocking verifies that calls cannot be initiated in a DM
|
|
// after one user blocks the other.
|
|
func TestDMCallBlockedAfterBlocking(t *testing.T) {
|
|
client := newTestClient(t)
|
|
user1 := createTestAccount(t, client)
|
|
user2 := createTestAccount(t, client)
|
|
|
|
createFriendship(t, client, user1, user2)
|
|
|
|
channel := createDmChannel(t, client, user1.Token, parseSnowflake(t, user2.UserID))
|
|
|
|
resp, err := client.putJSONWithAuth(fmt.Sprintf("/users/@me/relationships/%s", user2.UserID), map[string]int{"type": relationshipBlocked}, user1.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to block user: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
resp.Body.Close()
|
|
|
|
resp, err = client.postJSONWithAuth(fmt.Sprintf("/channels/%s/call/ring", channel.ID), map[string][]string{"recipients": {user1.UserID}}, user2.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to attempt call ring: %v", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != http.StatusForbidden && resp.StatusCode != http.StatusBadRequest {
|
|
t.Fatalf("expected 403 or 400 for call to blocker, got %d", resp.StatusCode)
|
|
}
|
|
}
|