-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtotp_test.go
104 lines (90 loc) · 3.25 KB
/
totp_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package otp
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestTOTP(t *testing.T) {
secret := `12345678901234567890`
table := map[time.Time]string{
time.Date(1970, 1, 1, 0, 0, 59, 0, time.UTC): `94287082`,
time.Date(2005, 3, 18, 1, 58, 29, 0, time.UTC): `07081804`,
time.Date(2005, 3, 18, 1, 58, 31, 0, time.UTC): `14050471`,
time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC): `89005924`,
time.Date(2033, 5, 18, 3, 33, 20, 0, time.UTC): `69279037`,
time.Date(2603, 10, 11, 11, 33, 20, 0, time.UTC): `65353130`,
}
for tm, expected := range table {
totp := &TOTP{Secret: secret, Length: 8, Time: tm, Period: 30}
result := totp.Get()
assert.Equal(t, expected, result, tm.String())
assert.True(t, totp.Verify(result))
}
}
func TestTOTPBase32(t *testing.T) {
secret := `JBSWY3DPEHPK3PXP`
table := map[time.Time]string{
time.Date(1970, 1, 1, 0, 0, 59, 0, time.UTC): `41996554`,
time.Date(2005, 3, 18, 1, 58, 29, 0, time.UTC): `33071271`,
time.Date(2005, 3, 18, 1, 58, 31, 0, time.UTC): `28358462`,
time.Date(2009, 2, 13, 23, 31, 30, 0, time.UTC): `94742275`,
time.Date(2033, 5, 18, 3, 33, 20, 0, time.UTC): `28890699`,
time.Date(2603, 10, 11, 11, 33, 20, 0, time.UTC): `94752434`,
}
for tm, expected := range table {
totp := &TOTP{Secret: secret, Length: 8, Time: tm, Period: 30, IsBase32Secret: true}
result := totp.Get()
assert.Equal(t, expected, result, tm.String())
assert.True(t, totp.Verify(result))
}
}
func TestTOTPShouldBeCroppedToMaxLength(t *testing.T) {
totp := &TOTP{Length: 20}
result := totp.Get()
assert.Equal(t, MaxLength, len(result))
}
func TestTOTPShouldUseDefaultValues(t *testing.T) {
totp := &TOTP{}
result := totp.Get()
assert.NotEmpty(t, totp.Secret)
assert.Equal(t, uint8(DefaultLength), totp.Length)
assert.False(t, totp.Time.IsZero())
assert.Equal(t, totp.Length, uint8(len(result)))
}
func TestTOTPShouldUseCurrentTimeWithFluentInterface(t *testing.T) {
past := time.Date(1979, 3, 26, 19, 30, 0, 0, time.Local)
now := time.Now().Format(time.Kitchen)
totp := &TOTP{Time: past}
totp.Now().Get()
assert.Equal(t, now, totp.Time.Format(time.Kitchen))
}
func TestTOTPVerifyShouldFail(t *testing.T) {
past := time.Now().Add(time.Second * DefaultPeriod * -2)
totp := &TOTP{Time: past}
token := totp.Get()
assert.False(t, totp.Now().Verify(token))
}
func TestTOTPVerifyShouldSucceedWithinWindowForward(t *testing.T) {
future := time.Now().Add(time.Second * DefaultPeriod * 3)
totp := &TOTP{Time: future, WindowForward: 3}
token := totp.Get()
assert.True(t, totp.Now().Verify(token))
}
func TestTOTPVerifyShouldSucceedWithinWindowBack(t *testing.T) {
past := time.Now().Add(time.Second * DefaultPeriod * -3)
totp := &TOTP{Time: past, WindowBack: 3}
token := totp.Get()
assert.True(t, totp.Now().Verify(token))
}
func TestTOTPVerifyShouldFailOutOfWindowForward(t *testing.T) {
future := time.Now().Add(time.Second * DefaultPeriod * 4)
totp := &TOTP{Time: future, WindowForward: 3}
token := totp.Get()
assert.False(t, totp.Now().Verify(token))
}
func TestTOTPVerifyShouldFailOutOfWindowBack(t *testing.T) {
past := time.Now().Add(time.Second * DefaultPeriod * -4)
totp := &TOTP{Time: past, WindowBack: 3}
token := totp.Get()
assert.False(t, totp.Now().Verify(token))
}