94 lines
3.0 KiB
Go
94 lines
3.0 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"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestDMCallRinging(t *testing.T) {
|
|
client := newTestClient(t)
|
|
user1 := createTestAccount(t, client)
|
|
user2 := createTestAccount(t, client)
|
|
|
|
guild := createGuild(t, client, user1.Token, "Test Guild")
|
|
invite := createChannelInvite(t, client, user1.Token, parseSnowflake(t, guild.SystemChannel))
|
|
joinGuild(t, client, user2.Token, invite.Code)
|
|
|
|
dm := createDmChannel(t, client, user1.Token, parseSnowflake(t, user2.UserID))
|
|
|
|
gateway1 := newGatewayClient(t, client, user1.Token)
|
|
defer gateway1.Close()
|
|
|
|
gateway2 := newGatewayClient(t, client, user2.Token)
|
|
defer gateway2.Close()
|
|
|
|
t.Run("user2 can stop ringing", func(t *testing.T) {
|
|
ringCall(t, client, user1.Token, parseSnowflake(t, dm.ID), nil)
|
|
|
|
gateway1.WaitForEvent(t, "CALL_CREATE", 5*time.Second, func(data json.RawMessage) bool {
|
|
var call callCreateEvent
|
|
if err := json.Unmarshal(data, &call); err != nil {
|
|
return false
|
|
}
|
|
return call.ChannelID == dm.ID
|
|
})
|
|
|
|
gateway2.WaitForEvent(t, "CALL_CREATE", 5*time.Second, func(data json.RawMessage) bool {
|
|
var call callCreateEvent
|
|
if err := json.Unmarshal(data, &call); err != nil {
|
|
return false
|
|
}
|
|
return call.ChannelID == dm.ID
|
|
})
|
|
|
|
gateway1.WaitForEvent(t, "CALL_UPDATE", 10*time.Second, func(data json.RawMessage) bool {
|
|
var call callUpdateEvent
|
|
if err := json.Unmarshal(data, &call); err != nil {
|
|
return false
|
|
}
|
|
return call.ChannelID == dm.ID && containsString(call.Ringing, user2.UserID)
|
|
})
|
|
|
|
stopRinging(t, client, user2.Token, parseSnowflake(t, dm.ID), nil)
|
|
|
|
updateEvent := gateway1.WaitForEvent(t, "CALL_UPDATE", 5*time.Second, func(data json.RawMessage) bool {
|
|
var call callUpdateEvent
|
|
if err := json.Unmarshal(data, &call); err != nil {
|
|
return false
|
|
}
|
|
return call.ChannelID == dm.ID && !containsString(call.Ringing, user2.UserID)
|
|
})
|
|
|
|
var callUpdate callUpdateEvent
|
|
if err := json.Unmarshal(updateEvent.Data, &callUpdate); err != nil {
|
|
t.Fatalf("failed to decode CALL_UPDATE: %v", err)
|
|
}
|
|
|
|
if containsString(callUpdate.Ringing, user2.UserID) {
|
|
t.Fatalf("expected user2 to be removed from ringing, got %v", callUpdate.Ringing)
|
|
}
|
|
|
|
t.Logf("User2 successfully stopped ringing, ringing array is now: %v", callUpdate.Ringing)
|
|
})
|
|
}
|