0
0
Fork 0
mirror of https://github.com/strukturag/nextcloud-spreed-signaling.git synced 2025-04-04 19:45:21 +00:00

Add test for hello v2 token that was created not too far in the future.

This commit is contained in:
Joachim Bauch 2025-01-15 16:19:58 +01:00
parent 4e34e97f82
commit 8c38cdfa54
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02

View file

@ -933,6 +933,32 @@ func TestClientHelloV2(t *testing.T) {
}
func TestClientHelloV2_IssuedInFuture(t *testing.T) {
CatchLogForTest(t)
for _, algo := range testHelloV2Algorithms {
t.Run(algo, func(t *testing.T) {
require := require.New(t)
assert := assert.New(t)
hub, _, _, server := CreateHubForTest(t)
client := NewTestClient(t, server, hub)
defer client.CloseWithBye()
issuedAt := time.Now().Add(tokenLeeway / 2)
expiresAt := issuedAt.Add(time.Second)
require.NoError(client.SendHelloV2WithTimes(testDefaultUserId, issuedAt, expiresAt))
ctx, cancel := context.WithTimeout(context.Background(), testTimeout)
defer cancel()
hello, err := client.RunUntilHello(ctx)
require.NoError(err)
assert.Equal(testDefaultUserId, hello.Hello.UserId, "%+v", hello.Hello)
assert.NotEmpty(hello.Hello.SessionId, "%+v", hello.Hello)
})
}
}
func TestClientHelloV2_IssuedFarInFuture(t *testing.T) {
CatchLogForTest(t)
for _, algo := range testHelloV2Algorithms {
t.Run(algo, func(t *testing.T) {