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:
parent
4e34e97f82
commit
8c38cdfa54
1 changed files with 26 additions and 0 deletions
26
hub_test.go
26
hub_test.go
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue