Files

50 lines
1.1 KiB
Go
Raw Permalink Normal View History

2017-03-17 15:16:08 +01:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2017-03-17 15:16:08 +01:00
package openid
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
2017-03-17 15:16:08 +01:00
)
2017-03-21 01:55:00 +01:00
type testDiscoveredInfo struct{}
2017-03-17 15:16:08 +01:00
func (s *testDiscoveredInfo) ClaimedID() string {
return "claimedID"
}
2022-01-20 18:46:10 +01:00
2017-03-17 15:16:08 +01:00
func (s *testDiscoveredInfo) OpEndpoint() string {
return "opEndpoint"
}
2022-01-20 18:46:10 +01:00
2017-03-17 15:16:08 +01:00
func (s *testDiscoveredInfo) OpLocalID() string {
return "opLocalID"
}
func TestTimedDiscoveryCache(t *testing.T) {
2025-06-03 09:26:19 +08:00
ttl := 50 * time.Millisecond
dc := newTimedDiscoveryCache(ttl)
2017-03-17 15:16:08 +01:00
// Put some initial values
2022-01-20 18:46:10 +01:00
dc.Put("foo", &testDiscoveredInfo{}) // openid.opEndpoint: "a", openid.opLocalID: "b", openid.claimedID: "c"})
2017-03-17 15:16:08 +01:00
// Make sure we can retrieve them
di := dc.Get("foo")
require.NotNil(t, di)
assert.Equal(t, "opEndpoint", di.OpEndpoint())
assert.Equal(t, "opLocalID", di.OpLocalID())
assert.Equal(t, "claimedID", di.ClaimedID())
2017-03-17 15:16:08 +01:00
// Attempt to get a non-existent value
assert.Nil(t, dc.Get("bar"))
2017-03-17 15:16:08 +01:00
2025-06-03 09:26:19 +08:00
// Sleep for a while and try to retrieve again
time.Sleep(ttl * 3 / 2)
2017-03-17 15:16:08 +01:00
assert.Nil(t, dc.Get("foo"))
2017-03-17 15:16:08 +01:00
}