2017-03-17 15:16:08 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-17 15:16:08 +01:00
|
|
|
|
|
|
|
package openid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
2025-01-09 02:21:47 +01:00
|
|
|
|
|
|
|
"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) {
|
2017-03-21 01:55:00 +01:00
|
|
|
dc := newTimedDiscoveryCache(1 * time.Second)
|
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
|
2025-01-09 02:21:47 +01:00
|
|
|
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
|
2025-01-09 02:21:47 +01:00
|
|
|
assert.Nil(t, dc.Get("bar"))
|
2017-03-17 15:16:08 +01:00
|
|
|
|
2019-06-12 21:41:28 +02:00
|
|
|
// Sleep one second and try retrieve again
|
2017-03-17 15:16:08 +01:00
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
2025-01-09 02:21:47 +01:00
|
|
|
assert.Nil(t, dc.Get("foo"))
|
2017-03-17 15:16:08 +01:00
|
|
|
}
|