This repository has been archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
decode_token_test.go
557 lines (472 loc) · 16.2 KB
/
decode_token_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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
package uaa_go_client_test
import (
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
"net/http"
"net/url"
"strings"
"sync"
"time"
uaa_go_client "code.cloudfoundry.org/uaa-go-client"
"code.cloudfoundry.org/uaa-go-client/config"
"code.cloudfoundry.org/uaa-go-client/fakes"
"code.cloudfoundry.org/clock/fakeclock"
"code.cloudfoundry.org/lager/lagertest"
"github.com/golang-jwt/jwt/v4"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/gbytes"
"github.com/onsi/gomega/ghttp"
)
//go:generate counterfeiter -o fakes/fake_signing_method.go ../vendor/github.com/golang-jwt/jwt/v4/signing_method.go SigningMethod
type customClaims struct {
Scope []string `json:"scope,omitempty"`
jwt.StandardClaims
}
var _ = Describe("DecodeToken", func() {
var (
client uaa_go_client.Client
fakeSigningMethod *fakes.FakeSigningMethod
signedKey string
UserPrivateKey string
token *jwt.Token
)
verifyErrorType := func(err error, errorType uint32, message string) {
validationError, ok := err.(*jwt.ValidationError)
Expect(ok).To(BeTrue())
Expect(validationError.Errors & errorType).To(Equal(errorType))
Expect(err.Error()).To(ContainSubstring(message))
}
BeforeEach(func() {
UserPrivateKey = "UserPrivateKey"
logger = lagertest.NewTestLogger("test")
fakeSigningMethod = &fakes.FakeSigningMethod{}
fakeSigningMethod.AlgStub = func() string {
return "FAST"
}
fakeSigningMethod.SignStub = func(signingString string, key interface{}) (string, error) {
signature := jwt.EncodeSegment([]byte(signingString + "SUPERFAST"))
return signature, nil
}
fakeSigningMethod.VerifyStub = func(signingString, signature string, key interface{}) (err error) {
if signature != jwt.EncodeSegment([]byte(signingString+"SUPERFAST")) {
return errors.New("Signature is invalid")
}
return nil
}
jwt.RegisterSigningMethod("FAST", func() jwt.SigningMethod {
return fakeSigningMethod
})
header := map[string]interface{}{
"alg": "FAST",
}
alg := "FAST"
signingMethod := jwt.GetSigningMethod(alg)
token = jwt.New(signingMethod)
token.Header = header
cfg = &config.Config{
MaxNumberOfRetries: DefaultMaxNumberOfRetries,
RetryInterval: DefaultRetryInterval,
ExpirationBufferInSec: DefaultExpirationBufferTime,
InsecureAllowAnySigningMethod: true,
RequestTimeout: DefaultRequestTimeout,
}
server = ghttp.NewServer()
url, err := url.Parse(server.URL())
Expect(err).ToNot(HaveOccurred())
addr := strings.Split(url.Host, ":")
cfg.UaaEndpoint = "http://" + addr[0] + ":" + addr[1]
Expect(err).ToNot(HaveOccurred())
cfg.ClientName = "client-name"
cfg.ClientSecret = "client-secret"
clock = fakeclock.NewFakeClock(time.Now())
logger = lagertest.NewTestLogger("test")
client, err = uaa_go_client.NewClient(logger, cfg, clock)
Expect(err).NotTo(HaveOccurred())
Expect(client).NotTo(BeNil())
})
Describe("DecodeToken", func() {
Context("when the token is valid", func() {
BeforeEach(func() {
var err error
token.Claims = customClaims{
Scope: []string{"route.advertise"},
StandardClaims: jwt.StandardClaims{
ExpiresAt: 3404281214,
Issuer: "https://uaa.domain.com",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, fmt.Sprintf("{\"issuer\":\"https://uaa.domain.com\"}")),
),
getSuccessKeyFetchHandler(ValidPemPublicKey),
)
})
It("caches the UAA public key", func() {
err := client.DecodeToken("bearer "+signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
err = client.DecodeToken("bearer "+signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
Expect(len(server.ReceivedRequests())).To(Equal(2))
})
It("does not return an error", func() {
err := client.DecodeToken("bearer "+signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
})
It("does not return an error if the token type string is capitalized", func() {
err := client.DecodeToken("Bearer "+signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
})
It("does not return an error if the token type string is uppercase", func() {
err := client.DecodeToken("BEARER "+signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
})
})
Context("when a token is not valid", func() {
BeforeEach(func() {
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
)
})
It("returns an error if the user token is not signed", func() {
err := client.DecodeToken("bearer not-a-signed-token", "not a permission")
Expect(err).To(HaveOccurred())
verifyErrorType(err, jwt.ValidationErrorMalformed, "token contains an invalid number of segments")
Expect(len(server.ReceivedRequests())).To(Equal(1))
})
It("returns an invalid token format when there is no token type", func() {
err := client.DecodeToken("has-no-token-type", "not a permission")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Invalid token format"))
Expect(len(server.ReceivedRequests())).To(Equal(0))
})
It("returns an invalid token type when type is not bearer", func() {
err := client.DecodeToken("basic some-auth", "not a permission")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Invalid token type: basic"))
Expect(len(server.ReceivedRequests())).To(Equal(0))
})
})
Context("when issuer is invalid", func() {
BeforeEach(func() {
var err error
fakeSigningMethod.VerifyReturns(errors.New("invalid signature"))
token.Claims = customClaims{
Scope: []string{"route.advertise"},
StandardClaims: jwt.StandardClaims{
ExpiresAt: 3404281214,
Issuer: "boom",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
})
Context("uaa returns token key", func() {
BeforeEach(func() {
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
)
})
It("return invalid issuer error", func() {
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).To(HaveOccurred())
Expect(len(server.ReceivedRequests())).To(Equal(2))
Expect(err.Error()).To(ContainSubstring("invalid issuer"))
})
})
})
Context("when signature is invalid", func() {
BeforeEach(func() {
var err error
fakeSigningMethod.VerifyReturns(errors.New("invalid signature"))
token.Claims = customClaims{
Scope: []string{"route.advertise"},
StandardClaims: jwt.StandardClaims{
ExpiresAt: 3404281214,
Issuer: "https://uaa.domain.com",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
})
Context("uaa returns a verification key", func() {
BeforeEach(func() {
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
getSuccessKeyFetchHandler(ValidPemPublicKey),
)
})
It("refreshes the key and returns an invalid signature error", func() {
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).To(HaveOccurred())
Expect(len(server.ReceivedRequests())).To(Equal(3))
verifyErrorType(err, jwt.ValidationErrorSignatureInvalid, "invalid signature")
})
})
Context("when uaa returns an error", func() {
BeforeEach(func() {
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", TokenKeyEndpoint),
ghttp.RespondWith(http.StatusGatewayTimeout, "booom"),
),
)
})
It("tries to refresh key and returns the uaa error", func() {
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("http error: status code: 504"))
Expect(len(server.ReceivedRequests())).To(Equal(3))
})
})
})
Context("when verification key needs to be refreshed to validate the signature", func() {
BeforeEach(func() {
fakeSigningMethod.VerifyStub = func(signingString string, signature string, key interface{}) error {
switch k := key.(type) {
case *rsa.PublicKey:
var keyBytes []byte
keyBytes, err := x509.MarshalPKIXPublicKey(k)
if err != nil {
return errors.New("failed to marshal key")
}
keyPEM := pem.EncodeToMemory(&pem.Block{
Type: "PUBLIC KEY",
Bytes: keyBytes,
})
if strings.TrimSpace(string(keyPEM)) == PemDecodedKey {
return nil
}
return errors.New("something went very wrong")
default:
return errors.New("invalid signature")
}
}
token.Claims = customClaims{
Scope: []string{"route.advertise"},
StandardClaims: jwt.StandardClaims{
ExpiresAt: 3404281214,
Issuer: "https://uaa.domain.com",
},
}
var err error
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
})
Context("when a successful fetch happens", func() {
BeforeEach(func() {
server.AppendHandlers(
getSuccessKeyFetchHandler(InvalidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
getSuccessKeyFetchHandler(ValidPemPublicKey),
)
})
It("fetches new key and then validates the token", func() {
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
Expect(len(server.ReceivedRequests())).To(Equal(3))
})
})
Context("with multiple concurrent clients", func() {
Context("when new key applies to all clients", func() {
BeforeEach(func() {
server.AppendHandlers(
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
getSuccessKeyFetchHandler(ValidPemPublicKey),
getSuccessKeyFetchHandler(ValidPemPublicKey),
)
})
It("fetches new key and then validates the token", func() {
wg := sync.WaitGroup{}
_, err := client.FetchIssuer()
Expect(err).NotTo(HaveOccurred())
for i := 0; i < 2; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer GinkgoRecover()
defer wg.Done()
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).NotTo(HaveOccurred())
}(&wg)
}
wg.Wait()
Expect(len(server.ReceivedRequests())).To(BeNumerically(">=", 1))
})
})
Context("when new key applies to only one client and not others", func() {
var (
keyChannel chan string
expectErrorChan chan bool
)
BeforeEach(func() {
keyChannel = make(chan string)
expectErrorChan = make(chan bool)
successHandler := func(w http.ResponseWriter, req *http.Request) {
key := <-keyChannel
w.Write([]byte(fmt.Sprintf("{\"alg\":\"alg\", \"value\": \"%s\" }", key)))
}
failureHandler := func(w http.ResponseWriter, req *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(""))
}
server.AppendHandlers(
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
ghttp.CombineHandlers(
failureHandler,
),
ghttp.CombineHandlers(
successHandler,
),
)
})
AfterEach(func() {
close(keyChannel)
close(expectErrorChan)
})
It("fetches new key and validates the token", func() {
wg := sync.WaitGroup{}
_, err := client.FetchIssuer()
Expect(err).NotTo(HaveOccurred())
for i := 0; i < 2; i++ {
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer GinkgoRecover()
defer wg.Done()
err := client.DecodeToken(signedKey, "route.advertise")
select {
case fail := <-expectErrorChan:
if fail {
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("http error"))
} else {
Expect(err).NotTo(HaveOccurred())
}
}
}(&wg)
}
// Error expected due to internal server error from UAA
expectErrorChan <- true
keyChannel <- ValidPemPublicKey
// retrieved valid pem key from UAA, no error expected
expectErrorChan <- false
wg.Wait()
Expect(len(server.ReceivedRequests())).To(Equal(3))
})
})
})
})
Context("expired time", func() {
BeforeEach(func() {
var err error
token.Claims = customClaims{
StandardClaims: jwt.StandardClaims{
ExpiresAt: time.Now().Unix() - 5,
Issuer: "https://uaa.domain.com",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
)
})
It("returns an error if the token is expired", func() {
err := client.DecodeToken(signedKey, "route.advertise")
Expect(err).To(HaveOccurred())
verifyErrorType(err, jwt.ValidationErrorExpired, "Token is expired")
})
})
Context("token is used before issued", func() {
BeforeEach(func() {
var err error
token.Claims = customClaims{
Scope: []string{"route.foo"},
StandardClaims: jwt.StandardClaims{
IssuedAt: time.Now().Unix() + 100,
Issuer: "https://uaa.domain.com",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
)
})
It("logs the error but successfully validates", func() {
err := client.DecodeToken(signedKey, "route.foo")
Expect(err).NotTo(HaveOccurred())
Expect(logger).To(gbytes.Say("decode-token-ignoring-issued-at-validation"))
})
})
Context("permissions", func() {
BeforeEach(func() {
var err error
token.Claims = customClaims{
Scope: []string{"route.foo"},
StandardClaims: jwt.StandardClaims{
ExpiresAt: time.Now().Unix() + 50000000,
Issuer: "https://uaa.domain.com",
},
}
signedKey, err = token.SignedString([]byte(UserPrivateKey))
Expect(err).NotTo(HaveOccurred())
signedKey = "bearer " + signedKey
server.AppendHandlers(
getSuccessKeyFetchHandler(ValidPemPublicKey),
ghttp.CombineHandlers(
ghttp.VerifyRequest("GET", OpenIDConfigEndpoint),
ghttp.RespondWith(http.StatusOK, `{"issuer":"https://uaa.domain.com"}`),
),
)
})
It("returns an error if the the user does not have requested permissions", func() {
err := client.DecodeToken(signedKey, "route.my-permissions", "some.other.scope")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Token does not have 'route.my-permissions', 'some.other.scope' scope"))
})
})
})
})