forked from Neoteroi/BlackSheep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_auth.py
556 lines (411 loc) · 14.7 KB
/
test_auth.py
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
import json
from typing import Any, Dict, Optional
import jwt
import pkg_resources
import pytest
from guardpost.authentication import Identity
from guardpost.authorization import AuthorizationContext, Policy, UnauthorizedError
from guardpost.common import AuthenticatedRequirement
from guardpost.jwks import JWKS, InMemoryKeysProvider, KeysProvider
from pytest import raises
from blacksheep.server.application import Application
from blacksheep.server.authentication import (
AuthenticateChallenge,
AuthenticationHandler,
)
from blacksheep.server.authentication.jwt import JWTBearerAuthentication
from blacksheep.server.authorization import (
AuthorizationWithoutAuthenticationError,
Requirement,
allow_anonymous,
auth,
get_www_authenticated_header_from_generic_unauthorized_error,
)
from blacksheep.testing.helpers import get_example_scope
from blacksheep.testing.messages import MockReceive, MockSend
from tests.test_files_serving import get_folder_path
def get_file_path(file_name, folder_name: str = "res") -> str:
return pkg_resources.resource_filename(__name__, f"./{folder_name}/{file_name}")
# region JWTBearer
def test_jwt_bearer_authentication_sets_authority_as_issuer():
authority = "https://sts.windows.net/a2884dee-52e8-4034-8ce2-6b48e18d1ae7/"
auth = JWTBearerAuthentication(
valid_audiences=["api://0ed1cebe-b7ca-45c5-a4bf-a8d586c18d31"],
authority=authority,
)
assert auth._validator._valid_issuers == [authority]
def test_jwt_bearer_authentication_throws_for_missing_issuer():
with pytest.raises(TypeError):
JWTBearerAuthentication(valid_audiences=["foo"])
def get_test_jwks() -> JWKS:
with open(get_file_path("jwks.json"), mode="rt", encoding="utf8") as jwks_file:
jwks_dict = json.loads(jwks_file.read())
return JWKS.from_dict(jwks_dict)
@pytest.fixture(scope="session")
def default_keys_provider() -> KeysProvider:
return InMemoryKeysProvider(get_test_jwks())
def get_access_token(
kid: str, payload: Dict[str, Any], *, fake_kid: Optional[str] = None
):
with open(get_file_path(f"{kid}.pem"), "r") as key_file:
private_key = key_file.read()
return jwt.encode(
payload,
private_key,
algorithm="RS256",
headers={"kid": kid if not fake_kid else fake_kid},
)
# endregion
class MockAuthHandler(AuthenticationHandler):
def __init__(self, identity=None):
if identity is None:
identity = Identity({"id": "001", "name": "Charlie Brown"}, "JWT")
self.identity = identity
async def authenticate(self, context: Any) -> Optional[Identity]:
context.identity = self.identity
return context.identity
class MockNotAuthHandler(AuthenticationHandler):
async def authenticate(self, context: Any) -> Optional[Identity]:
context.identity = Identity({"id": "007"})
# NB: an identity without authentication scheme is treated
# as anonymous identity
return context.identity
class AccessTokenCrashingHandler(AuthenticationHandler):
async def authenticate(self, context: Any) -> Optional[Identity]:
raise AuthenticateChallenge(
"Bearer",
None,
{
"error": "Invalid access token",
"error_description": "Access token expired",
},
)
class AdminRequirement(Requirement):
def handle(self, context: AuthorizationContext):
identity = context.identity
if identity is not None and identity["role"] == "admin":
context.succeed(self)
class AdminsPolicy(Policy):
def __init__(self):
super().__init__("admin", AdminRequirement())
@pytest.mark.asyncio
async def test_authentication_sets_identity_in_request(app):
app.use_authentication().add(MockAuthHandler())
identity = None
@app.router.get("/")
async def home(request):
nonlocal identity
identity = request.identity
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 204
assert identity is not None
assert identity["id"] == "001"
assert identity["name"] == "Charlie Brown"
@pytest.mark.asyncio
async def test_authorization_unauthorized_error(app):
app.use_authentication().add(MockAuthHandler())
app.use_authorization().add(AdminsPolicy())
@auth("admin")
@app.router.get("/")
async def home():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
@pytest.mark.asyncio
async def test_authorization_policy_success(app):
admin = Identity({"id": "001", "name": "Charlie Brown", "role": "admin"}, "JWT")
app.use_authentication().add(MockAuthHandler(admin))
app.use_authorization().add(AdminsPolicy())
@auth("admin")
@app.router.get("/")
async def home():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 204
@pytest.mark.asyncio
async def test_authorization_default_allows_anonymous(app):
app.use_authentication().add(MockAuthHandler())
app.use_authorization().add(AdminsPolicy())
@app.router.get("/")
async def home():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 204
@pytest.mark.asyncio
async def test_authorization_supports_default_require_authenticated(app):
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@app.router.get("/")
async def home():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
@pytest.mark.asyncio
async def test_static_files_allow_anonymous_by_default(app):
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@app.router.get("/")
async def home():
return None
app.serve_files(get_folder_path("files"))
await app.start()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
await app(get_example_scope("GET", "/lorem-ipsum.txt"), MockReceive(), MockSend())
assert app.response.status == 200
content = await app.response.text()
assert content == "Lorem ipsum dolor sit amet\n"
@pytest.mark.asyncio
async def test_static_files_support_authentication(app):
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@app.router.get("/")
async def home():
return None
app.serve_files(get_folder_path("files"), allow_anonymous=False)
await app.start()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
await app(get_example_scope("GET", "/lorem-ipsum.txt"), MockReceive(), MockSend())
assert app.response.status == 401
@pytest.mark.asyncio
async def test_static_files_support_authentication_by_route(app):
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@app.router.get("/")
async def home():
return None
app.serve_files(get_folder_path("files"), allow_anonymous=False)
app.serve_files(get_folder_path("files2"), allow_anonymous=True, root_path="/login")
await app.start()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
await app(get_example_scope("GET", "/lorem-ipsum.txt"), MockReceive(), MockSend())
assert app.response.status == 401
await app(get_example_scope("GET", "/login/index.html"), MockReceive(), MockSend())
assert app.response.status == 200
content = await app.response.text()
assert (
content
== """<!DOCTYPE html>
<html>
<head>
<title>Example.</title>
<link rel="stylesheet" type="text/css" href="/styles/main.css" />
</head>
<body>
<h1>Lorem ipsum</h1>
<p>Dolor sit amet.</p>
<script src="/scripts/main.js"></script>
</body>
</html>
"""
)
@pytest.mark.asyncio
async def test_authorization_supports_allow_anonymous(app):
from blacksheep.server.responses import text
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@allow_anonymous()
@app.router.get("/")
async def home():
return text("Hi There!")
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 200
@pytest.mark.asyncio
async def test_authentication_challenge_response(app):
app.use_authentication().add(AccessTokenCrashingHandler())
app.use_authorization().add(
AdminsPolicy()
).default_policy += AuthenticatedRequirement()
@app.router.get("/")
async def home():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 401
header = app.response.get_single_header(b"WWW-Authenticate")
assert header is not None
assert header == (
b'Bearer, error="Invalid access token", '
b'error_description="Access token expired"'
)
@pytest.mark.asyncio
async def test_authorization_strategy_without_authentication_raises(app):
app.use_authorization()
with raises(AuthorizationWithoutAuthenticationError):
app.prepare()
@pytest.mark.parametrize(
"scheme,realm,parameters,expected_value",
[
["Basic", None, None, b"Basic"],
["Bearer", "Mushrooms Kingdom", None, b'Bearer realm="Mushrooms Kingdom"'],
[
"Bearer",
"Mushrooms Kingdom",
{
"title": "Something",
"error": "Invalid access token",
"error_description": "access token expired",
},
b'Bearer realm="Mushrooms Kingdom", '
b'title="Something", '
b'error="Invalid access token", '
b'error_description="access token expired"',
],
],
)
def test_authentication_challenge_error(scheme, realm, parameters, expected_value):
error = AuthenticateChallenge(scheme, realm, parameters)
header = error.get_header()
assert header[0] == b"WWW-Authenticate"
assert header[1] == expected_value
@pytest.mark.parametrize(
"exc,expected_value",
[
(UnauthorizedError(None, [], scheme="AAD"), b"AAD"),
(UnauthorizedError(None, [], scheme="example"), b"example"),
(
UnauthorizedError(None, [], scheme="Something-Something"),
b"Something-Something",
),
],
)
def test_get_www_authenticated_header_from_generic_unauthorized_error(
exc, expected_value
):
header = get_www_authenticated_header_from_generic_unauthorized_error(exc)
assert header is not None
name, value = header
assert name == b"WWW-Authenticate"
assert value == expected_value
@pytest.mark.asyncio
async def test_authorization_default_requires_authenticated_user(app):
app.use_authentication().add(MockNotAuthHandler())
app.use_authorization()
@app.router.get("/")
async def home():
return None
@auth()
@app.router.get("/admin")
async def admin():
return None
app.prepare()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response.status == 204
await app(get_example_scope("GET", "/admin"), MockReceive(), MockSend())
assert app.response.status == 401
@pytest.mark.asyncio
async def test_jwt_bearer_authentication(app, default_keys_provider):
app.use_authentication().add(
JWTBearerAuthentication(
valid_audiences=["a"],
valid_issuers=["b"],
keys_provider=default_keys_provider,
)
)
identity: Optional[Identity] = None
@app.router.get("/")
async def home(request):
nonlocal identity
identity = request.identity
return None
await app.start()
await app(get_example_scope("GET", "/"), MockReceive(), MockSend())
assert app.response is not None
assert app.response.status == 204
assert identity is not None
assert identity.is_authenticated() is False
# request with valid Bearer Token
access_token = get_access_token(
"0",
{
"aud": "a",
"iss": "b",
"id": "001",
"name": "Charlie Brown",
},
)
await app(
get_example_scope(
"GET",
"/",
extra_headers=[(b"Authorization", b"Bearer " + access_token.encode())],
),
MockReceive(),
MockSend(),
)
assert app.response is not None
assert app.response.status == 204
assert identity is not None
assert identity["id"] == "001"
assert identity["name"] == "Charlie Brown"
# request with invalid Bearer Token (invalid audience)
access_token = get_access_token(
"0",
{
"aud": "NO",
"iss": "b",
"id": "001",
"name": "Charlie Brown",
},
)
await app(
get_example_scope(
"GET",
"/",
extra_headers=[(b"Authorization", b"Bearer " + access_token.encode())],
),
MockReceive(),
MockSend(),
)
assert app.response is not None
assert app.response.status == 204
assert identity is not None
assert identity.is_authenticated() is False
# request with invalid Bearer Token (invalid header)
access_token = get_access_token(
"0",
{
"aud": "a",
"iss": "b",
"id": "001",
"name": "Charlie Brown",
},
)
await app(
get_example_scope(
"GET",
"/",
extra_headers=[(b"Authorization", access_token.encode())],
),
MockReceive(),
MockSend(),
)
assert app.response is not None
assert app.response.status == 204
assert identity is not None
assert identity.is_authenticated() is False
def test_set_authentication_strategy_more_than_once(app: Application):
auth_strategy = app.use_authentication()
assert app.use_authentication() is auth_strategy
def test_set_authorization_strategy_more_than_once(app: Application):
auth_strategy = app.use_authorization()
assert app.use_authorization() is auth_strategy