-
Notifications
You must be signed in to change notification settings - Fork 115
/
jwt_test.go
183 lines (173 loc) · 4.38 KB
/
jwt_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package auth
import (
"context"
"fmt"
"testing"
jwt "github.com/golang-jwt/jwt/v4"
"google.golang.org/grpc/metadata"
)
const (
// TestSecret dummy secret used for signing test JWTs
TestSecret = "some-secret-123"
)
func TestGetJWTFieldWithTokenType(t *testing.T) {
var jwtFieldTests = []struct {
claims jwt.MapClaims
contextFactory func(t *testing.T) context.Context
tokenType string
field string
expected string
err error
}{
{
contextFactory: func(t *testing.T) context.Context {
token := makeToken(jwt.MapClaims{"some-field": "id-abc-123"}, t)
ctx := contextWithToken(token, "Bearer")
return ctx
},
tokenType: "Bearer",
field: "some-field",
expected: "id-abc-123",
err: nil,
},
{
contextFactory: func(t *testing.T) context.Context {
token := makeToken(jwt.MapClaims{"some-field": "id-abc-123"}, t)
ctx := contextWithToken(token, "Bearer")
return ctx
},
tokenType: "Bearer",
field: "some-other-field",
expected: "",
err: errMissingField,
},
{
contextFactory: func(t *testing.T) context.Context {
token := makeToken(jwt.MapClaims{"some-field": "id-abc-123"}, t)
ctx := contextWithToken(token, "Bearer")
return ctx
},
tokenType: "token",
field: "some-field",
expected: "",
err: errMissingToken,
},
{
contextFactory: func(t *testing.T) context.Context {
return nil
},
tokenType: "Bearer",
field: "some-field",
expected: "",
err: errMissingToken,
},
}
for _, test := range jwtFieldTests {
ctx := test.contextFactory(t)
actual, err := GetJWTFieldWithTokenType(ctx, test.tokenType, test.field, nil)
if err != test.err {
t.Errorf("Invalid error value: %v - expected %v", err, test.err)
}
if actual != test.expected {
t.Errorf("Invalid JWT field: %v - expected %v", actual, test.expected)
}
}
}
func TestGetJWTField(t *testing.T) {
var jwtFieldTests = []struct {
claims jwt.MapClaims
field string
expected string
err error
}{
{
claims: jwt.MapClaims{"some-field": "id-abc-123"},
field: "some-field",
expected: "id-abc-123",
err: nil,
},
{
claims: jwt.MapClaims{"some-field": "id-abc-123"},
field: "some-other-field",
expected: "",
err: errMissingField,
},
{
claims: jwt.MapClaims{"long-id": float64(123456789)},
field: "long-id",
expected: "123456789",
err: nil,
},
}
for _, test := range jwtFieldTests {
ctx := contextWithToken(
makeToken(test.claims, t), DefaultTokenType,
)
actual, err := GetJWTField(ctx, test.field, nil)
if err != test.err {
t.Errorf("Invalid error value: %v - expected %v", err, test.err)
}
if actual != test.expected {
t.Errorf("Invalid JWT field: %v - expected %v", actual, test.expected)
}
}
}
func TestGetAccountID(t *testing.T) {
var accountIDTests = []struct {
claims jwt.MapClaims
expected string
err error
}{
{
claims: jwt.MapClaims{
MultiTenancyField: "id-abc-123",
},
expected: "id-abc-123",
err: nil,
},
{
claims: jwt.MapClaims{
"AccountID": "id-abc-123",
},
expected: "id-abc-123",
err: nil,
},
{
claims: jwt.MapClaims{},
expected: "",
err: errMissingField,
},
}
for _, test := range accountIDTests {
token := makeToken(test.claims, t)
ctx := contextWithToken(token, DefaultTokenType)
actual, err := GetAccountID(ctx, nil)
if err != test.err {
t.Errorf("Invalid error value: %v - expected %v", err, test.err)
}
if actual != test.expected {
t.Errorf("Invalid AccountID: %v - expected %v", actual, test.expected)
}
}
}
// creates a context with a jwt
func contextWithToken(token, tokenType string) context.Context {
md := metadata.Pairs(
"authorization", fmt.Sprintf("%s %s", tokenType, token),
)
return metadata.NewIncomingContext(context.Background(), md)
}
// generates a token string based on the given jwt claims
func makeToken(claims jwt.Claims, t *testing.T) string {
method := jwt.SigningMethodHS256
token := jwt.NewWithClaims(method, claims)
signingString, err := token.SigningString()
if err != nil {
t.Fatalf("Error when building token: %v", err)
}
signature, err := method.Sign(signingString, []byte(TestSecret))
if err != nil {
t.Fatalf("Error when building token: %v", err)
}
return fmt.Sprintf("%s.%s", signingString, signature)
}