forked from coreos/go-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oidc_test.go
95 lines (90 loc) · 2.16 KB
/
oidc_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
package oidc
import (
"fmt"
"testing"
)
const (
// at_hash value and access_token returned by Google.
googleAccessTokenHash = "piwt8oCH-K2D9pXlaS1Y-w"
googleAccessToken = "ya29.CjHSA1l5WUn8xZ6HanHFzzdHdbXm-14rxnC7JHch9eFIsZkQEGoWzaYG4o7k5f6BnPLj"
googleSigningAlg = RS256
// following values computed by own algo for regression testing
computed384TokenHash = "_ILKVQjbEzFKNJjUKC2kz9eReYi0A9Of"
computed512TokenHash = "Spa_APgwBrarSeQbxI-rbragXho6dqFpH5x9PqaPfUI"
)
type accessTokenTest struct {
name string
tok *IDToken
accessToken string
verifier func(err error) error
}
func (a accessTokenTest) run(t *testing.T) {
err := a.tok.VerifyAccessToken(a.accessToken)
result := a.verifier(err)
if result != nil {
t.Error(result)
}
}
func TestAccessTokenVerification(t *testing.T) {
newToken := func(alg, atHash string) *IDToken {
return &IDToken{sigAlgorithm: alg, AccessTokenHash: atHash}
}
assertNil := func(err error) error {
if err != nil {
return fmt.Errorf("want nil error, got %v", err)
}
return nil
}
assertMsg := func(msg string) func(err error) error {
return func(err error) error {
if err == nil {
return fmt.Errorf("expected error, got success")
}
if err.Error() != msg {
return fmt.Errorf("bad error message, %q, (want %q)", err.Error(), msg)
}
return nil
}
}
tests := []accessTokenTest{
{
"goodRS256",
newToken(googleSigningAlg, googleAccessTokenHash),
googleAccessToken,
assertNil,
},
{
"goodES384",
newToken("ES384", computed384TokenHash),
googleAccessToken,
assertNil,
},
{
"goodPS512",
newToken("PS512", computed512TokenHash),
googleAccessToken,
assertNil,
},
{
"badRS256",
newToken("RS256", computed512TokenHash),
googleAccessToken,
assertMsg("access token hash does not match value in ID token"),
},
{
"nohash",
newToken("RS256", ""),
googleAccessToken,
assertMsg("id token did not have an access token hash"),
},
{
"badSignAlgo",
newToken("none", "xxx"),
googleAccessToken,
assertMsg(`oidc: unsupported signing algorithm "none"`),
},
}
for _, test := range tests {
t.Run(test.name, test.run)
}
}