-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_test.go
35 lines (31 loc) · 890 Bytes
/
config_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAuthTokenValidate(t *testing.T) {
assert.NoError(
t,
configAuthToken{Hash: "$argon2id$v=19$m=47104,t=1,p=1$c2FsdA$vvmJ4o4I75omtCuCUcFupw"}.
validate("21a84dfe-155f-427d-add2-2e63dab7502f"),
"valid argon2id token",
)
assert.Error(
t,
configAuthToken{Hash: "$argon2id$v=19$m=47104,t=1,p=1$c2FsdA$vvmJ4o4I75omtCuCUcFupw"}.
validate("a8188a1f-d7ff-4628-b0f3-0efa0ef364d8"),
"invalid argon2id token",
)
assert.NoError(
t,
configAuthToken{Hash: "$2a$10$xa3tzQheujq3nj/vJdzKIOzaPvirI6FFangBNDFXI8BME4rBMhNoG"}.
validate("21a84dfe-155f-427d-add2-2e63dab7502f"),
"valid bcrypt token",
)
assert.Error(
t,
configAuthToken{Hash: "$2a$10$xa3tzQheujq3nj/vJdzKIOzaPvirI6FFangBNDFXI8BME4rBMhNoG"}.
validate("a8188a1f-d7ff-4628-b0f3-0efa0ef364d8"),
"invalid bcrypt token",
)
}