-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathtest_server_36_oauth2_token_exchange.py
More file actions
1505 lines (1306 loc) · 60.1 KB
/
Copy pathtest_server_36_oauth2_token_exchange.py
File metadata and controls
1505 lines (1306 loc) · 60.1 KB
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
import json
import os
import pytest
from cryptojwt.jwt import utc_time_sans_frac
from cryptojwt.key_jar import build_keyjar
from idpyoidc.message.oauth2 import TokenExchangeRequest
from idpyoidc.message.oidc import AccessTokenRequest
from idpyoidc.message.oidc import AuthorizationRequest
from idpyoidc.message.oidc import RefreshAccessTokenRequest
from idpyoidc.server import Server
from idpyoidc.server.authn_event import create_authn_event
from idpyoidc.server.authz import AuthzHandling
from idpyoidc.server.client_authn import verify_client
from idpyoidc.server.configure import ASConfiguration
from idpyoidc.server.cookie_handler import CookieHandler
from idpyoidc.server.user_authn.authn_context import INTERNETPROTOCOLPASSWORD
from idpyoidc.server.user_info import UserInfo
from tests import CRYPT_CONFIG
from tests import SESSION_PARAMS
KEYDEFS = [
{"type": "RSA", "key": "", "use": ["sig"]},
{"type": "EC", "crv": "P-256", "use": ["sig"]},
]
CLIENT_KEYJAR = build_keyjar(KEYDEFS)
COOKIE_KEYDEFS = [
{"type": "oct", "kid": "sig", "use": ["sig"]},
{"type": "oct", "kid": "enc", "use": ["enc"]},
]
RESPONSE_TYPES_SUPPORTED = [
["code"],
["token"],
["id_token"],
["code", "token"],
["code", "id_token"],
["id_token", "token"],
["code", "token", "id_token"],
["none"],
]
CAPABILITIES = {
"subject_types_supported": ["public", "pairwise", "ephemeral"],
}
AUTH_REQ = AuthorizationRequest(
client_id="client_1",
redirect_uri="https://example.com/cb",
scope=["openid"],
state="STATE",
response_type="code",
)
TOKEN_REQ = AccessTokenRequest(
client_id="client_1",
redirect_uri="https://example.com/cb",
state="STATE",
grant_type="authorization_code",
client_secret="hemligt",
)
REFRESH_TOKEN_REQ = RefreshAccessTokenRequest(
grant_type="refresh_token", client_id="https://example.com/", client_secret="hemligt"
)
TOKEN_REQ_DICT = TOKEN_REQ.to_dict()
BASEDIR = os.path.abspath(os.path.dirname(__file__))
def full_path(local_file):
return os.path.join(BASEDIR, local_file)
USERINFO = UserInfo(json.loads(open(full_path("users.json")).read()))
class TestEndpoint(object):
@pytest.fixture(autouse=True)
def create_endpoint(self):
conf = {
"issuer": "https://example.com/",
"httpc_params": {"verify": False, "timeout": 1},
"preference": CAPABILITIES,
"cookie_handler": {
"class": CookieHandler,
"kwargs": {"keys": {"key_defs": COOKIE_KEYDEFS}},
},
"keys": {"uri_path": "jwks.json", "key_defs": KEYDEFS},
"endpoint": {
"authorization": {
"path": "authorization",
"class": "idpyoidc.server.oauth2.authorization.Authorization",
"kwargs": {},
},
"token": {
"path": "token",
"class": "idpyoidc.server.oidc.token.Token",
"kwargs": {
"client_authn_method": [
"client_secret_basic",
"client_secret_post",
"client_secret_jwt",
"private_key_jwt",
],
},
},
"introspection": {
"path": "introspection",
"class": "idpyoidc.server.oauth2.introspection.Introspection",
"kwargs": {
"client_authn_method": ["client_secret_post"],
"enable_claims_per_client": False,
},
},
},
"authentication": {
"anon": {
"acr": INTERNETPROTOCOLPASSWORD,
"class": "idpyoidc.server.user_authn.user.NoAuthn",
"kwargs": {"user": "diana"},
}
},
"userinfo": {"class": UserInfo, "kwargs": {"db": {}}},
"client_authn": verify_client,
"template_dir": "template",
"authz": {
"class": AuthzHandling,
"kwargs": {
"grant_config": {
"usage_rules": {
"authorization_code": {
"supports_minting": ["access_token", "refresh_token"],
"max_usage": 1,
},
"access_token": {
"supports_minting": ["access_token", "refresh_token"],
"expires_in": 600,
},
"refresh_token": {
"supports_minting": ["access_token", "refresh_token"],
"audience": ["https://example.com", "https://example2.com"],
"expires_in": 43200,
},
},
"expires_in": 43200,
}
},
},
"token_handler_args": {
"jwks_file": "private/token_jwks.json",
"code": {"lifetime": 600, "kwargs": {"crypt_conf": CRYPT_CONFIG}},
"token": {
"class": "idpyoidc.server.token.jwt_token.JWTToken",
"kwargs": {
"lifetime": 3600,
"add_claims_by_scope": True,
"aud": ["https://example.org/appl"],
},
},
"refresh": {
"class": "idpyoidc.server.token.jwt_token.JWTToken",
"kwargs": {
"lifetime": 3600,
"aud": ["https://example.org/appl"],
},
},
},
"session_params": SESSION_PARAMS,
}
server = Server(ASConfiguration(conf=conf, base_path=BASEDIR), cwd=BASEDIR)
self.context = server.context
# Necessary to get grant_types_supported into preferred
self.context.map_supported_to_preferred()
self.context.cdb["client_1"] = {
"client_secret": "hemligt",
"redirect_uris": [("https://example.com/cb", None)],
"client_salt": "salted",
"token_endpoint_auth_method": "client_secret_post",
"grant_types_supported": [
"authorization_code",
"urn:ietf:params:oauth:grant-type:jwt-bearer",
"refresh_token",
"urn:ietf:params:oauth:grant-type:token-exchange"
],
"response_types": ["code", "token", "code id_token", "id_token"],
"allowed_scopes": ["openid", "profile", "offline_access"],
}
self.context.cdb["client_2"] = {
"client_secret": "hemligt",
"redirect_uris": [("https://example.com/cb", None)],
"client_salt": "salted",
"token_endpoint_auth_method": "client_secret_post",
"response_types": ["code", "token", "code id_token", "id_token"],
"allowed_scopes": ["openid", "profile", "offline_access"],
}
server.keyjar.import_jwks(CLIENT_KEYJAR.export_jwks(), "client_1")
self.endpoint = server.get_endpoint("token")
self.introspection_endpoint = server.get_endpoint("introspection")
self.session_manager = self.context.session_manager
self.user_id = "diana"
def _create_session(self, auth_req, sub_type="public", sector_identifier=""):
if sector_identifier:
authz_req = auth_req.copy()
authz_req["sector_identifier_uri"] = sector_identifier
else:
authz_req = auth_req
client_id = authz_req["client_id"]
ae = create_authn_event(self.user_id)
return self.session_manager.create_session(
ae, authz_req, self.user_id, client_id=client_id, sub_type=sub_type
)
def _mint_code(self, grant, client_id):
session_id = self.session_manager.encrypted_session_id(self.user_id, client_id, grant.id)
usage_rules = grant.usage_rules.get("authorization_code", {})
_exp_in = usage_rules.get("expires_in")
# Constructing an authorization code is now done
_code = grant.mint_token(
session_id=session_id,
context=self.endpoint.upstream_get("context"),
token_class="authorization_code",
token_handler=self.session_manager.token_handler["authorization_code"],
usage_rules=usage_rules,
)
if _exp_in:
if isinstance(_exp_in, str):
_exp_in = int(_exp_in)
if _exp_in:
_code.expires_at = utc_time_sans_frac() + _exp_in
return _code
@pytest.mark.parametrize(
"token",
[
{"access_token": "urn:ietf:params:oauth:token-type:access_token"},
{"refresh_token": "urn:ietf:params:oauth:token-type:refresh_token"},
],
)
def test_token_exchange1(self, token):
"""
Test that token exchange requests work correctly with only the required parameters
present
"""
areq = AUTH_REQ.copy()
if list(token.keys())[0] == "refresh_token":
areq["scope"] = ["openid", "offline_access"]
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"][list(token.keys())[0]]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type=token[list(token.keys())[0]]
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzI6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
print(_resp['response_args'])
assert set(_resp["response_args"].keys()) == {
"access_token",
"token_type",
"scope",
"expires_in",
"issued_token_type",
}
@pytest.mark.parametrize(
"token",
[
{"access_token": "urn:ietf:params:oauth:token-type:access_token"},
{"refresh_token": "urn:ietf:params:oauth:token-type:refresh_token"},
],
)
def test_token_exchange2(self, token):
"""
Test that token exchange requests work correctly
"""
areq = AUTH_REQ.copy()
if list(token.keys())[0] == "refresh_token":
areq["scope"] = ["openid", "offline_access"]
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"][list(token.keys())[0]]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type=token[list(token.keys())[0]],
requested_token_type=token[list(token.keys())[0]],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzI6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp["response_args"].keys()) == {
"access_token",
"token_type",
"scope",
"expires_in",
"issued_token_type",
}
@pytest.mark.parametrize(
"token",
[
{"access_token": "urn:ietf:params:oauth:token-type:access_token"},
{"refresh_token": "urn:ietf:params:oauth:token-type:refresh_token"},
],
)
def test_token_exchange_per_client(self, token):
"""
Test that per-client token exchange configuration works correctly
"""
self.context.cdb["client_1"]["token_exchange"] = {
"subject_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"requested_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"default_requested_token_type": "urn:ietf:params:oauth:token-type:access_token",
"policy": {
"": {
"function": "idpyoidc.server.oauth2.token_helper.validate_token_exchange_policy",
"kwargs": {"scope": ["openid", "offline_access"]},
}
},
}
areq = AUTH_REQ.copy()
if list(token.keys())[0] == "refresh_token":
areq["scope"] = ["openid", "offline_access"]
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"][list(token.keys())[0]]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type=token[list(token.keys())[0]],
requested_token_type=token[list(token.keys())[0]],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp["response_args"].keys()) == {
"access_token",
"token_type",
"scope",
"expires_in",
"issued_token_type",
}
def test_token_exchange_scopes_per_client(self):
"""
Test that a client that requests offline_access in a Token Exchange request
only get it if the subject token has it in its scope set, if it is permitted
by the policy and if it is present in the clients allowed scopes.
"""
self.context.cdb["client_1"]["token_exchange"] = {
"subject_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"requested_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"default_requested_token_type": "urn:ietf:params:oauth:token-type:access_token",
"policy": {
"": {
"function": "idpyoidc.server.oauth2.token_helper.validate_token_exchange_policy",
"kwargs": {
"scope": ["openid", "profile", "offline_access"]
},
}
},
}
self.context.cdb["client_1"]["allowed_scopes"] = ["openid", "email", "profile", "offline_access"]
areq = AUTH_REQ.copy()
areq["scope"].append("profile")
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type="urn:ietf:params:oauth:token-type:access_token",
scope="openid profile offline_access"
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
# Note that offline_access is filtered because subject_token has no offline_access
# in its scope
assert set(_resp["response_args"]["scope"]) == set(["profile", "openid"])
def test_token_exchange_unsupported_scopes_per_client(self):
"""
Test that unsupported clients are handled appropriatelly
"""
self.context.cdb["client_1"]["token_exchange"] = {
"subject_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"requested_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"default_requested_token_type": "urn:ietf:params:oauth:token-type:access_token",
"policy": {
"": {
"function": "idpyoidc.server.oauth2.token_helper.validate_token_exchange_policy",
"kwargs": {
"scope": ["openid", "profile", "offline_access"]
},
}
},
"allowed_scopes": ["openid", "email", "profile", "offline_access"]
}
areq = AUTH_REQ.copy()
areq["scope"].append("profile")
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type="urn:ietf:params:oauth:token-type:access_token",
scope="email"
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert "scope" not in _resp
def test_token_exchange_no_scopes_requested(self):
"""
Test that the correct scopes are returned when no scopes requested by the client
"""
self.context.cdb["client_1"]["token_exchange"] = {
"subject_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"requested_token_types_supported": [
"urn:ietf:params:oauth:token-type:access_token",
"urn:ietf:params:oauth:token-type:refresh_token",
],
"default_requested_token_type": "urn:ietf:params:oauth:token-type:access_token",
"policy": {
"": {
"function": "idpyoidc.server.oauth2.token_helper.validate_token_exchange_policy",
"kwargs": {
"scope": ["openid", "offline_access"]
},
}
},
"allowed_scopes": ["openid", "email", "profile", "offline_access"]
}
areq = AUTH_REQ.copy()
areq["scope"].append("profile")
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type="urn:ietf:params:oauth:token-type:access_token"
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert _resp["response_args"]["scope"] == ["openid"]
def test_additional_parameters(self):
"""
Test that a token exchange with additional parameters including
scope, audience and subject_token_type works.
"""
conf = self.endpoint.grant_type_helper["urn:ietf:params:oauth:grant-type:token-exchange"].config
conf["policy"][""]["kwargs"] = {}
conf["policy"][""]["kwargs"]["audience"] = ["https://example.com"]
conf["policy"][""]["kwargs"]["resource"] = ["https://example.com"]
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type="urn:ietf:params:oauth:token-type:access_token",
audience=["https://example.com"],
resource=["https://example.com"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp["response_args"].keys()) == {
"access_token",
"token_type",
"expires_in",
"issued_token_type",
"scope",
}
msg = self.endpoint.do_response(request=_req, **_resp)
assert isinstance(msg, dict)
def test_token_exchange_fails_if_disabled(self):
"""
Test that token exchange fails if it's not included in Token's
grant_types_supported (that are set in its helper attribute).
"""
self.context.cdb["client_1"]["grant_types_supported"] = [
'authorization_code',
'implicit',
'urn:ietf:params:oauth:grant-type:jwt-bearer',
'refresh_token'
]
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
resource=["https://example.com/api"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert _resp["error"] == "invalid_request"
assert (
_resp["error_description"]
== "Unsupported grant_type: urn:ietf:params:oauth:grant-type:token-exchange"
)
def test_wrong_resource(self):
"""
Test that requesting a token for an unknown resource fails.
"""
conf = self.endpoint.grant_type_helper["urn:ietf:params:oauth:grant-type:token-exchange"].config
conf["policy"][""]["kwargs"] = {}
conf["policy"][""]["kwargs"]["resource"] = ["https://example.com"]
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
resource=["https://unknown-resource.com/api"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_target"
assert _resp["error_description"] == "Unknown resource"
def test_refresh_token_audience(self):
"""
Test that requesting a refresh token with audience fails.
"""
areq = AUTH_REQ.copy()
areq["scope"] = ["openid", "offline_access"]
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["refresh_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:refresh_token",
audience=["https://example.com"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_target"
assert _resp["error_description"] == "Refresh token has single owner"
def test_wrong_audience(self):
"""
Test that requesting a token for an unknown audience fails.
"""
conf = self.endpoint.grant_type_helper["urn:ietf:params:oauth:grant-type:token-exchange"].config
conf["policy"][""]["kwargs"] = {}
conf["policy"][""]["kwargs"]["audience"] = ["https://example.com"]
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
audience=["https://unknown-audience.com/"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_target"
assert _resp["error_description"] == "Unknown audience"
def test_exchange_refresh_token_to_refresh_token(self):
"""
Test whether exchanging a refresh token to another refresh token works.
"""
areq = AUTH_REQ.copy()
areq["scope"] = ["openid", "offline_access"]
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["scope"] = "openid"
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["refresh_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:refresh_token",
requested_token_type="urn:ietf:params:oauth:token-type:refresh_token",
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) != {"error", "error_description"}
@pytest.mark.parametrize(
"scopes",
[
["openid", "offline_access"],
["openid"],
],
)
def test_exchange_access_token_to_refresh_token(self, scopes):
areq = AUTH_REQ.copy()
areq["scope"] = scopes
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["scope"] = ["openid"]
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type="urn:ietf:params:oauth:token-type:refresh_token",
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
if "offline_access" in scopes:
assert set(_resp.keys()) != {"error", "error_description"}
else:
assert _resp["error"] == "invalid_request"
@pytest.mark.parametrize(
"missing_attribute",
[
"subject_token_type",
"subject_token",
],
)
def test_missing_parameters(self, missing_attribute):
"""
Test that omitting the subject_token_type fails.
"""
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
audience=["https://example.com"],
resource=["https://example.com/api"],
)
del token_exchange_req[missing_attribute]
_req = self.endpoint.parse_request(
# This is to get passed the deserializing which would otherwise throw an exception
token_exchange_req,
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_request"
assert _resp["error_description"] == f"Missing required attribute '{missing_attribute}'"
@pytest.mark.parametrize(
"unsupported_type",
[
"unknown",
"urn:ietf:params:oauth:token-type:id_token",
"urn:ietf:params:oauth:token-type:saml2",
"urn:ietf:params:oauth:token-type:saml1",
],
)
def test_unsupported_requested_token_type(self, unsupported_type):
"""
Test that requesting a token type that is unknown or unsupported fails.
"""
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
requested_token_type=unsupported_type,
audience=["https://example.com"],
resource=["https://example.com/api"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_request"
assert _resp["error_description"] == "Unsupported requested token type"
@pytest.mark.parametrize(
"unsupported_type",
[
"unknown",
"urn:ietf:params:oauth:token-type:id_token",
"urn:ietf:params:oauth:token-type:saml2",
"urn:ietf:params:oauth:token-type:saml1",
],
)
def test_unsupported_subject_token_type(self, unsupported_type):
"""
Test that providing an unsupported subject token type fails.
"""
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type=unsupported_type,
audience=["https://example.com"],
resource=["https://example.com/api"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_request"
assert _resp["error_description"] == "Subject token invalid"
def test_unsupported_actor_token(self):
"""
Test that providing an actor token fails as it's unsupported.
"""
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])
_token_request = TOKEN_REQ_DICT.copy()
_token_request["code"] = code.value
_req = self.endpoint.parse_request(_token_request)
_resp = self.endpoint.process_request(request=_req)
_token_value = _resp["response_args"]["access_token"]
token_exchange_req = TokenExchangeRequest(
grant_type="urn:ietf:params:oauth:grant-type:token-exchange",
subject_token=_token_value,
subject_token_type="urn:ietf:params:oauth:token-type:access_token",
actor_token=_resp["response_args"]["access_token"],
)
_req = self.endpoint.parse_request(
token_exchange_req.to_urlencoded(),
{"headers": {"authorization": "Basic {}".format("Y2xpZW50XzE6aGVtbGlndA==")}},
)
_resp = self.endpoint.process_request(request=_req)
assert set(_resp.keys()) == {"error", "error_description"}
assert _resp["error"] == "invalid_request"
assert _resp["error_description"] == "Actor token not supported"
def test_invalid_token(self):
"""
Test that providing an invalid token fails.
"""
areq = AUTH_REQ.copy()
session_id = self._create_session(areq)
grant = self.context.authz(session_id, areq)
code = self._mint_code(grant, areq["client_id"])