Skip to content

Commit fdd6991

Browse files
committed
Fix session expiration calculation
A tolerance is provided when calculating the expiration of a session. Unfortunately, this tolerance was incorrectly applied and caused the session to not be considered expired until the tolerance (15 minutes) after the expiration had passed.
1 parent 1505627 commit fdd6991

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

lib/session.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func (s *Session) Clone() *Session {
5656
}
5757

5858
func (s *Session) Expired(tolerance time.Duration) bool {
59-
return s.Expiration.Before(time.Now().Add(-tolerance))
59+
return time.Now().Add(tolerance).After(s.Expiration)
6060
}
6161

6262
func (s *Session) AssumeSessionRole() (*Session, error) {

lib/session_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ import (
77
"time"
88
)
99

10+
func TestSessionExpiration(t *testing.T) {
11+
s := Session{
12+
Expiration: time.Now().Add(15 * time.Minute),
13+
}
14+
if s.Expired(10 * time.Minute) {
15+
t.Errorf("Session manifesting as expired, but shouldn't be")
16+
}
17+
if !s.Expired(15 * time.Minute) {
18+
t.Errorf("Session not manifesting as expired, but should be")
19+
}
20+
}
21+
1022
func TestSessionVariables(t *testing.T) {
1123
s := Session{
1224
Name: "vault",

0 commit comments

Comments
 (0)