mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-12-12 11:15:02 +02:00
18 lines
327 B
Go
18 lines
327 B
Go
|
package providers
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/bmizerany/assert"
|
||
|
)
|
||
|
|
||
|
func TestRefresh(t *testing.T) {
|
||
|
p := &ProviderData{}
|
||
|
refreshed, err := p.RefreshSessionIfNeeded(&SessionState{
|
||
|
ExpiresOn: time.Now().Add(time.Duration(-11) * time.Minute),
|
||
|
})
|
||
|
assert.Equal(t, false, refreshed)
|
||
|
assert.Equal(t, nil, err)
|
||
|
}
|