Merge: * TestAuth: improve test
* commit '44353821e6bf99839dac15f0049a3335c0376258': * TestAuth: improve test
This commit is contained in:
commit
8ab6fa3300
@ -47,7 +47,7 @@ func TestAuth(t *testing.T) {
|
|||||||
|
|
||||||
// add session with TTL = 2 sec
|
// add session with TTL = 2 sec
|
||||||
s = session{}
|
s = session{}
|
||||||
s.expire = uint32(now + 2)
|
s.expire = uint32(time.Now().UTC().Unix() + 2)
|
||||||
a.addSession(sess, &s)
|
a.addSession(sess, &s)
|
||||||
assert.True(t, a.CheckSession(sessStr) == 0)
|
assert.True(t, a.CheckSession(sessStr) == 0)
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ func TestAuth(t *testing.T) {
|
|||||||
// the session is still alive
|
// the session is still alive
|
||||||
assert.True(t, a.CheckSession(sessStr) == 0)
|
assert.True(t, a.CheckSession(sessStr) == 0)
|
||||||
// reset our expiration time because CheckSession() has just updated it
|
// reset our expiration time because CheckSession() has just updated it
|
||||||
s.expire = uint32(now + 2)
|
s.expire = uint32(time.Now().UTC().Unix() + 2)
|
||||||
a.storeSession(sess, &s)
|
a.storeSession(sess, &s)
|
||||||
a.Close()
|
a.Close()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user