-
Notifications
You must be signed in to change notification settings - Fork 62
/
path_oidc_test.go
1691 lines (1491 loc) · 44.6 KB
/
path_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
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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package jwtauth
import (
"bytes"
"context"
"crypto/sha256"
"crypto/x509"
"encoding/base64"
"encoding/json"
"encoding/pem"
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"reflect"
"regexp"
"strings"
"testing"
"time"
"github.com/go-jose/go-jose/v3"
"github.com/go-jose/go-jose/v3/jwt"
"github.com/hashicorp/cap/oidc"
"github.com/hashicorp/go-sockaddr"
"github.com/hashicorp/vault/sdk/logical"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestOIDC_AuthURL(t *testing.T) {
b, storage := getBackend(t)
// Configure backend
data := map[string]interface{}{
"oidc_discovery_url": "https://team-vault.auth0.com/",
"oidc_discovery_ca_pem": "",
"oidc_client_id": "abc",
"oidc_client_secret": "def",
"default_role": "test",
"bound_issuer": "http://vault.example.com/",
"unsupported_critical_cert_extensions": []string{
"2.5.29.54",
"2.5.29.36",
},
}
// basic configuration
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: configPath,
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
// set up test role
data = map[string]interface{}{
"user_claim": "email",
"bound_audiences": "vault",
"allowed_redirect_uris": []string{"https://example.com"},
}
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "role/test",
Storage: storage,
Data: data,
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
t.Run("normal case", func(t *testing.T) {
t.Parallel()
// normal cases, both passing the role name explicitly and relying on the default
for _, rolename := range []string{"test", ""} {
data := map[string]interface{}{
"role": rolename,
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
expected := []string{
`client_id=abc`,
`https://team-vault\.auth0\.com/authorize`,
`scope=openid`,
`nonce=n_\w{20}`,
`state=st_\w{20}`,
`redirect_uri=https%3A%2F%2Fexample.com`,
`response_type=code`,
`code_challenge=\w+`,
`scope=openid`,
}
for _, test := range expected {
matched, err := regexp.MatchString(test, authURL)
if err != nil {
t.Fatal(err)
}
if !matched {
t.Fatalf("expected to match regex: %s", test)
}
}
}
})
t.Run("case insensitive", func(t *testing.T) {
t.Parallel()
// normal cases, both passing the role name explicitly and relying on the default
for _, rolename := range []string{"test", ""} {
data := map[string]interface{}{
"role": rolename,
"redirect_uri": "https://EXAMPLE.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
expected := []string{
`client_id=abc`,
`https://team-vault\.auth0\.com/authorize`,
`scope=openid`,
`nonce=n_\w{20}`,
`state=st_\w{20}`,
`redirect_uri=https%3A%2F%2FEXAMPLE.com`,
`response_type=code`,
`code_challenge=\w+`,
`scope=openid`,
}
for _, testPattern := range expected {
matched, err := regexp.MatchString(testPattern, authURL)
if err != nil {
t.Fatal(err)
}
if !matched {
t.Fatalf("expected auth_url %q to match regex: %s", authURL, testPattern)
}
}
}
})
t.Run("missing role", func(t *testing.T) {
t.Parallel()
data := map[string]interface{}{
"role": "not_a_role",
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil {
t.Fatal(err)
}
if !resp.IsError() {
t.Fatalf("expected error response, got: %v", resp)
}
})
// create limited role with restricted redirect_uris
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "role/limited_uris",
Storage: storage,
Data: map[string]interface{}{
"role_type": "oidc",
"user_claim": "email",
"bound_audiences": "vault",
"allowed_redirect_uris": []string{"https://zombo.com", "https://example.com"},
},
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
t.Run("valid redirect_uri", func(t *testing.T) {
t.Parallel()
data := map[string]interface{}{
"role": "limited_uris",
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
escapedRedirect := url.QueryEscape("https://example.com")
if !strings.Contains(authURL, escapedRedirect) {
t.Fatalf(`didn't find expected redirect_uri '%s' in: %s`, escapedRedirect, authURL)
}
})
t.Run("invalid redirect_uri", func(t *testing.T) {
t.Parallel()
data := map[string]interface{}{
"role": "limited_uris",
"redirect_uri": "http://bitc0in-4-less.cx",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v", err, resp)
}
authURL := resp.Data["auth_url"].(string)
if authURL != "" {
t.Fatalf(`expected: "", actual: %s`, authURL)
}
})
}
func TestOIDC_AuthURL_namespace(t *testing.T) {
type testCase struct {
namespaceInState string
allowedRedirectURIs []string
incomingRedirectURI string
expectedStateRegEx string
expectedRedirectURI string
expectFail bool
}
tests := map[string]testCase{
"namespace as query parameter": {
namespaceInState: "false",
allowedRedirectURIs: []string{"https://example.com?namespace=test"},
incomingRedirectURI: "https://example.com?namespace=test",
expectedStateRegEx: `st_\w{20}`,
expectedRedirectURI: `https://example.com?namespace=test`,
},
"namespace as query parameter, bad allowed redirect": {
namespaceInState: "false",
allowedRedirectURIs: []string{"https://example.com"},
incomingRedirectURI: "https://example.com?namespace=test",
expectedStateRegEx: `st_\w{20}`,
expectedRedirectURI: `https://example.com?namespace=test`,
expectFail: true,
},
"namespace in state": {
namespaceInState: "true",
allowedRedirectURIs: []string{"https://example.com"},
incomingRedirectURI: "https://example.com?namespace=test",
expectedStateRegEx: `st_\w{20},ns=test`,
expectedRedirectURI: `https://example.com`,
},
"namespace in state, bad allowed redirect": {
namespaceInState: "true",
allowedRedirectURIs: []string{"https://example.com?namespace=test"},
incomingRedirectURI: "https://example.com?namespace=test",
expectFail: true,
},
"nested namespace in state": {
namespaceInState: "true",
allowedRedirectURIs: []string{"https://example.com"},
incomingRedirectURI: "https://example.com?namespace=org4321/dev",
expectedStateRegEx: `st_\w{20},ns=org4321/dev`,
expectedRedirectURI: `https://example.com`,
},
"namespace as query parameter, no namespaces": {
namespaceInState: "false",
allowedRedirectURIs: []string{"https://example.com"},
incomingRedirectURI: "https://example.com",
expectedStateRegEx: `st_\w{20}`,
expectedRedirectURI: `https://example.com`,
},
"namespace in state, no namespaces": {
namespaceInState: "true",
allowedRedirectURIs: []string{"https://example.com"},
incomingRedirectURI: "https://example.com",
expectedStateRegEx: `st_\w{20}`,
expectedRedirectURI: `https://example.com`,
},
}
for name, test := range tests {
t.Run(name, func(t *testing.T) {
b, storage := getBackend(t)
// Configure backend
data := map[string]interface{}{
"oidc_discovery_url": "https://team-vault.auth0.com/",
"oidc_discovery_ca_pem": "",
"oidc_client_id": "abc",
"oidc_client_secret": "def",
"default_role": "test",
"bound_issuer": "http://vault.example.com/",
"namespace_in_state": test.namespaceInState,
}
// basic configuration
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: configPath,
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
// set up test role
rolePayload := map[string]interface{}{
"user_claim": "email",
"bound_audiences": "vault",
"allowed_redirect_uris": test.allowedRedirectURIs,
}
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "role/test",
Storage: storage,
Data: rolePayload,
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURLPayload := map[string]interface{}{
"role": "test",
"redirect_uri": test.incomingRedirectURI,
}
req = &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: authURLPayload,
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
rawAuthURL := resp.Data["auth_url"].(string)
if test.expectFail && len(rawAuthURL) > 0 {
t.Fatalf("Expected auth_url to fail (empty), but got %s", rawAuthURL)
}
if test.expectFail && len(rawAuthURL) == 0 {
return
}
authURL, err := url.Parse(rawAuthURL)
if err != nil {
t.Fatal(err)
}
qParams := authURL.Query()
redirectURI := qParams.Get("redirect_uri")
if test.expectedRedirectURI != redirectURI {
t.Fatalf("expected redirect_uri to match: %s, %s", test.expectedRedirectURI, redirectURI)
}
state := qParams.Get("state")
matchState, err := regexp.MatchString(test.expectedStateRegEx, state)
if err != nil {
t.Fatal(err)
}
if !matchState {
t.Fatalf("expected state to match regex: %s, %s", test.expectedStateRegEx, state)
}
})
}
}
func TestOIDC_AuthURL_max_age(t *testing.T) {
b, storage := getBackend(t)
// Configure the backend
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: configPath,
Storage: storage,
Data: map[string]interface{}{
"oidc_discovery_url": "https://team-vault.auth0.com/",
"oidc_client_id": "abc",
"oidc_client_secret": "def",
},
}
resp, err := b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
tests := map[string]struct {
maxAge string
expectedMaxAge string
expectErr bool
}{
"auth URL for role with integer max_age of 60": {
maxAge: "60",
expectedMaxAge: "60",
},
"auth URL for role with integer max_age of 180": {
maxAge: "180",
expectedMaxAge: "180",
},
"auth URL for role with empty max_age": {
maxAge: "",
expectedMaxAge: "",
},
"auth URL for role with duration string max_age of 30s": {
maxAge: "30s",
expectedMaxAge: "30",
},
"auth URL for role with duration string max_age of 2m": {
maxAge: "2m",
expectedMaxAge: "120",
},
"auth URL for role with duration string max_age of 1hr": {
maxAge: "1h",
expectedMaxAge: "3600",
},
"auth URL for role with invalid duration string": {
maxAge: "1hr",
expectErr: true,
},
"auth URL for role with invalid signed integer": {
maxAge: "-1",
expectErr: true,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
// Write the role with the given max age
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "role/test",
Storage: storage,
Data: map[string]interface{}{
"user_claim": "email",
"allowed_redirect_uris": []string{"https://example.com"},
"max_age": tt.maxAge,
},
}
resp, err = b.HandleRequest(context.Background(), req)
if tt.expectErr {
require.Nil(t, err)
require.True(t, resp.IsError())
return
}
require.NoError(t, err)
require.False(t, resp.IsError())
// Request for generation of an auth URL
req = &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
},
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Parse the auth URL and assert the expected max_age query parameter
parsedAuthURL, err := url.Parse(resp.Data["auth_url"].(string))
require.NoError(t, err)
queryParams := parsedAuthURL.Query()
assert.Equal(t, tt.expectedMaxAge, queryParams.Get("max_age"))
})
}
}
// TestOIDC_UserClaim_JSON_Pointer tests the ability to use JSON
// pointer syntax for the user_claim of roles. For claims used
// in assertions, see the sampleClaims function.
func TestOIDC_UserClaim_JSON_Pointer(t *testing.T) {
b, storage, s := getBackendAndServer(t, false)
defer s.server.Close()
type args struct {
userClaim string
userClaimJSONPointer bool
}
tests := []struct {
name string
args args
wantAliasName string
wantErr bool
}{
{
name: "user_claim without JSON pointer",
args: args{
userClaim: "email",
userClaimJSONPointer: false,
},
wantAliasName: "[email protected]",
},
{
name: "user_claim without JSON pointer using claim that could be JSON pointer",
args: args{
userClaim: "/nested/username",
userClaimJSONPointer: false,
},
wantAliasName: "non_nested_username",
},
{
name: "user_claim without JSON pointer not found",
args: args{
userClaim: "other",
userClaimJSONPointer: false,
},
wantErr: true,
},
{
name: "user_claim with JSON pointer nested",
args: args{
userClaim: "/nested/username",
userClaimJSONPointer: true,
},
wantAliasName: "nested_username",
},
{
name: "user_claim with JSON pointer not nested",
args: args{
userClaim: "/email",
userClaimJSONPointer: true,
},
wantAliasName: "[email protected]",
},
{
name: "user_claim with JSON pointer not found",
args: args{
userClaim: "/nested/username/email",
userClaimJSONPointer: true,
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Update the role's user_claim config
data := map[string]interface{}{
"user_claim": tt.args.userClaim,
"user_claim_json_pointer": tt.args.userClaimJSONPointer,
}
req := &logical.Request{
Operation: logical.CreateOperation,
Path: "role/test",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Generate an auth URL
data = map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
}
req = &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Parse the state and nonce from the auth URL
authURL := resp.Data["auth_url"].(string)
state := getQueryParam(t, authURL, "state")
nonce := getQueryParam(t, authURL, "nonce")
// Set test provider custom claims, expected auth code, expected code challenge
s.codeChallenge = getQueryParam(t, authURL, "code_challenge")
s.customClaims = sampleClaims(nonce)
s.code = "abc"
// Complete authentication by invoking the callback handler
req = &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"state": state,
"code": "abc",
},
}
// Assert that we get the expected alias name
resp, err = b.HandleRequest(context.Background(), req)
if tt.wantErr {
require.True(t, resp.IsError())
return
}
require.NoError(t, err)
require.False(t, resp.IsError())
require.NotNil(t, resp.Auth)
require.NotNil(t, resp.Auth.Alias)
require.Equal(t, tt.wantAliasName, resp.Auth.Alias.Name)
})
}
}
// TestOIDC_ResponseTypeIDToken tests authentication using an implicit flow
// by setting oidc_response_types=id_token and oidc_response_mode=form_post.
// This means that there is no exchange of an authorization code for tokens.
// Instead, the OIDC provider's authorization endpoint responds with an ID
// token, which will be verified to complete the authentication request.
func TestOIDC_ResponseTypeIDToken(t *testing.T) {
b, storage := getBackend(t)
// Start the test OIDC provider
s := newOIDCProvider(t)
t.Cleanup(s.server.Close)
s.clientID = "abc"
s.clientSecret = "def"
cert, err := s.getTLSCert()
require.NoError(t, err)
// Configure the backend
data := map[string]interface{}{
"oidc_discovery_url": s.server.URL,
"oidc_client_id": s.clientID,
"oidc_client_secret": s.clientSecret,
"oidc_discovery_ca_pem": cert,
"default_role": "test",
"bound_issuer": "http://vault.example.com/",
"jwt_supported_algs": []string{"ES256"},
"oidc_response_mode": "form_post",
"oidc_response_types": "id_token",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: configPath,
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Configure a role
data = map[string]interface{}{
"user_claim": "email",
"bound_subject": "r3qXcK2bix9eFECzsU3Sbmh0K16fatW6@clients",
"allowed_redirect_uris": []string{"https://example.com"},
}
req = &logical.Request{
Operation: logical.CreateOperation,
Path: "role/test",
Storage: storage,
Data: data,
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Generate an auth URL
data = map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
}
req = &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Parse the state and nonce from the auth URL
authURL := resp.Data["auth_url"].(string)
state := getQueryParam(t, authURL, "state")
nonce := getQueryParam(t, authURL, "nonce")
// Create a signed JWT which will act as the ID token that would be
// returned directly from the OIDC provider's authorization endpoint
stdClaims := jwt.Claims{
Subject: "r3qXcK2bix9eFECzsU3Sbmh0K16fatW6@clients",
Issuer: s.server.URL,
NotBefore: jwt.NewNumericDate(time.Now().Add(-5 * time.Second)),
Expiry: jwt.NewNumericDate(time.Now().Add(2 * time.Minute)),
Audience: jwt.Audience{s.clientID},
}
idToken, _ := getTestJWT(t, ecdsaPrivKey, stdClaims, sampleClaims(nonce))
// Invoke the POST callback handler with the ID token and state
req = &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"id_token": idToken,
"state": state,
},
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
// Complete authentication by invoking the callback handler with the state
req = &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"state": state,
},
}
resp, err = b.HandleRequest(context.Background(), req)
require.NoError(t, err)
require.False(t, resp.IsError())
}
func TestOIDC_Callback(t *testing.T) {
t.Run("successful login", func(t *testing.T) {
// run test with and without bound_cidrs configured
for _, useBoundCIDRs := range []bool{false, true} {
b, storage, s := getBackendAndServer(t, useBoundCIDRs)
defer s.server.Close()
// get auth_url
data := map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
state := getQueryParam(t, authURL, "state")
nonce := getQueryParam(t, authURL, "nonce")
// set provider claims that will be returned by the mock server
s.customClaims = sampleClaims(nonce)
// set mock provider's expected code
s.code = "abc"
// save PKCE challenge
s.codeChallenge = getQueryParam(t, authURL, "code_challenge")
// invoke the callback, which will try to exchange the code
// with the mock provider.
req = &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"state": state,
"code": "abc",
},
Connection: &logical.Connection{
RemoteAddr: "127.0.0.42",
},
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil {
t.Fatal(err)
}
expected := &logical.Auth{
LeaseOptions: logical.LeaseOptions{
Renewable: true,
TTL: 3 * time.Minute,
MaxTTL: 5 * time.Minute,
},
InternalData: map[string]interface{}{
"role": "test",
},
DisplayName: "[email protected]",
Alias: &logical.Alias{
Name: "[email protected]",
Metadata: map[string]string{
"role": "test",
"color": "green",
"size": "medium",
},
},
GroupAliases: []*logical.Alias{
{Name: "a"},
{Name: "b"},
},
Metadata: map[string]string{
"role": "test",
"color": "green",
"size": "medium",
},
NumUses: 10,
}
if useBoundCIDRs {
sock, err := sockaddr.NewSockAddr("127.0.0.42")
if err != nil {
t.Fatal(err)
}
expected.BoundCIDRs = []*sockaddr.SockAddrMarshaler{{SockAddr: sock}}
}
auth := resp.Auth
if !reflect.DeepEqual(auth, expected) {
t.Fatalf("expected: %v, auth: %v", expected, resp)
}
}
})
t.Run("failed login - bad nonce", func(t *testing.T) {
b, storage, s := getBackendAndServer(t, false)
defer s.server.Close()
// get auth_url
data := map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
state := getQueryParam(t, authURL, "state")
s.customClaims = sampleClaims("bad nonce")
// set mock provider's expected code
s.code = "abc"
// save PKCE challenge
s.codeChallenge = getQueryParam(t, authURL, "code_challenge")
// invoke the callback, which will in to try to exchange the code
// with the mock provider.
req = &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"state": state,
"code": "abc",
},
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil {
t.Fatal(err)
}
if !resp.IsError() {
t.Fatalf("expected error response, got: %v", resp.Data)
}
})
t.Run("failed login - bound claim mismatch", func(t *testing.T) {
b, storage, s := getBackendAndServer(t, false)
defer s.server.Close()
// get auth_url
data := map[string]interface{}{
"role": "test",
"redirect_uri": "https://example.com",
}
req := &logical.Request{
Operation: logical.UpdateOperation,
Path: "oidc/auth_url",
Storage: storage,
Data: data,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("err:%v resp:%#v\n", err, resp)
}
authURL := resp.Data["auth_url"].(string)
state := getQueryParam(t, authURL, "state")
nonce := getQueryParam(t, authURL, "nonce")
s.customClaims = sampleClaims(nonce)
s.customClaims["sk"] = "43" // the pre-configured role has a bound claim of "sk"=="42"
// set mock provider's expected code
s.code = "abc"
// save PKCE challenge
s.codeChallenge = getQueryParam(t, authURL, "code_challenge")
// invoke the callback, which will in to try to exchange the code
// with the mock provider.
req = &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
Data: map[string]interface{}{
"state": state,
"code": "abc",
},
}
resp, err = b.HandleRequest(context.Background(), req)
if err != nil {
t.Fatal(err)
}
if !resp.IsError() {
t.Fatalf("expected error response, got: %v", resp.Data)
}
})
t.Run("missing state", func(t *testing.T) {
b, storage, s := getBackendAndServer(t, false)
defer s.server.Close()
req := &logical.Request{
Operation: logical.ReadOperation,
Path: "oidc/callback",
Storage: storage,
}
resp, err := b.HandleRequest(context.Background(), req)
if err != nil {
t.Fatal(err)
}
if resp == nil || !strings.Contains(resp.Error().Error(), "Expired or missing OAuth state") {