forked from mozilla-conduit/lando-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_auth.py
385 lines (312 loc) · 13.5 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import copy
import pytest
import requests
import requests_mock
from connexion import ProblemException
from connexion.lifecycle import ConnexionResponse
from flask import g
from landoapi.auth import (
A0User,
fetch_auth0_userinfo,
require_auth0,
require_transplant_authentication,
)
from landoapi.mocks.auth import create_access_token, TEST_KEY_PRIV
from landoapi.mocks.canned_responses.auth0 import CANNED_USERINFO
def noop(*args, **kwargs):
return ConnexionResponse(status_code=200)
def test_require_access_token_missing(app):
with app.test_request_context("/", headers=[]):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=())(noop)()
assert exc_info.value.status == 401
@pytest.mark.parametrize(
"headers,status",
[
([("Authorization", "MALFORMED")], 401),
([("Authorization", "MALFORMED 12345")], 401),
([("Authorization", "BEARER 12345 12345")], 401),
([("Authorization", "")], 401),
([("Authorization", "Bearer bogus")], 400),
],
)
def test_require_access_token_malformed(jwks, app, headers, status):
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=())(noop)()
assert exc_info.value.status == status
@pytest.mark.parametrize(
"exc,status,title",
[
(requests.exceptions.ConnectTimeout, 500, "Auth0 Timeout"),
(requests.exceptions.ReadTimeout, 500, "Auth0 Timeout"),
(requests.exceptions.ProxyError, 500, "Auth0 Connection Problem"),
(requests.exceptions.SSLError, 500, "Auth0 Connection Problem"),
(requests.exceptions.HTTPError, 500, "Auth0 Response Error"),
(requests.exceptions.RequestException, 500, "Auth0 Error"),
],
)
def test_require_auth0_userinfo_auth0_jwks_request_errors(app, exc, status, title):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/.well-known/jwks.json", exc=exc)
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
@pytest.mark.parametrize(
"response_text,status,title",
[
("NOT JSON", 500, "Auth0 Response Error"),
('{"missing_fields_in_json": "weird"}', 500, "Auth0 Response Error"),
],
)
def test_require_auth0_userinfo_auth0_jwks_invalid_response_error(
app, response_text, status, title
):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/.well-known/jwks.json", text=response_text)
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
@pytest.mark.parametrize(
"response_text,status,title", [("NOT JSON", 500, "Auth0 Response Error")]
)
def test_require_auth0_userinfo_auth0_userinfo_invalid_response_error(
jwks, app, response_text, status, title
):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/userinfo", text=response_text)
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
def test_require_access_token_no_kid_match(jwks, app):
key = copy.deepcopy(TEST_KEY_PRIV)
key["kid"] = "BOGUSKID"
token = create_access_token(key=key)
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=())(noop)()
assert exc_info.value.status == 400
assert exc_info.value.title == "Authorization Header Invalid"
assert exc_info.value.detail == (
"Appropriate key for Authorization header could not be found"
)
@pytest.mark.parametrize(
"token_kwargs,status,title",
[
({"exp": 1}, 401, "Token Expired"),
({"iss": "bogus issuer"}, 401, "Invalid Claims"),
({"aud": "bogus audience"}, 401, "Invalid Claims"),
],
)
def test_require_access_token_invalid(jwks, app, token_kwargs, status, title):
token = create_access_token(**token_kwargs)
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=())(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
@pytest.mark.parametrize("token_kwargs", [{}])
def test_require_access_token_valid(jwks, app, token_kwargs):
token = create_access_token(**token_kwargs)
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
resp = require_auth0(scopes=())(noop)()
assert resp.status_code == 200
def test_fetch_auth0_userinfo(app):
with app.app_context():
with requests_mock.mock() as m:
m.get("/userinfo", status_code=200, json=CANNED_USERINFO["STANDARD"])
resp = fetch_auth0_userinfo(create_access_token())
assert resp.status_code == 200
def test_userinfo_cache(app):
with app.app_context():
with requests_mock.mock() as m:
m.get("/userinfo", status_code=200, json=CANNED_USERINFO["STANDARD"])
resp = fetch_auth0_userinfo(create_access_token())
assert resp.status_code == 200
def test_require_auth0_userinfo_expired_token(jwks, app):
# Make sure requiring userinfo also validates the token first.
expired_token = create_access_token(exp=1)
headers = [("Authorization", "Bearer {}".format(expired_token))]
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == 401
assert exc_info.value.title == "Token Expired"
@pytest.mark.parametrize(
"exc,status,title",
[
(requests.exceptions.ConnectTimeout, 500, "Auth0 Timeout"),
(requests.exceptions.ReadTimeout, 500, "Auth0 Timeout"),
(requests.exceptions.ProxyError, 500, "Auth0 Connection Problem"),
(requests.exceptions.SSLError, 500, "Auth0 Connection Problem"),
(requests.exceptions.HTTPError, 500, "Auth0 Response Error"),
(requests.exceptions.RequestException, 500, "Auth0 Error"),
],
)
def test_require_auth0_userinfo_auth0_userinfo_request_errors(
jwks, app, exc, status, title
):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/userinfo", exc=exc)
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
@pytest.mark.parametrize(
"a0status,a0kwargs,status,title",
[
(429, {"text": "Too Many Requests"}, 429, "Auth0 Rate Limit"),
(401, {"text": "Unauthorized"}, 401, "Auth0 Userinfo Unauthorized"),
(200, {"text": "NOT JSON"}, 500, "Auth0 Response Error"),
],
)
def test_require_auth0_userinfo_auth0_failures(
jwks, app, a0status, a0kwargs, status, title
):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/userinfo", status_code=a0status, **a0kwargs)
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=(), userinfo=True)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
def test_require_auth0_userinfo_succeeded(jwks, app):
token = create_access_token()
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with requests_mock.mock() as m:
m.get("/userinfo", status_code=200, json=CANNED_USERINFO["STANDARD"])
resp = require_auth0(scopes=(), userinfo=True)(noop)()
assert isinstance(g.auth0_user, A0User)
assert resp.status_code == 200
@pytest.mark.parametrize(
"userinfo,groups,result",
[
(CANNED_USERINFO["STANDARD"], ("bogus",), False),
(CANNED_USERINFO["STANDARD"], ("active_scm_level_1", "bogus"), False),
(CANNED_USERINFO["STANDARD"], ("active_scm_level_1",), True),
(CANNED_USERINFO["STANDARD"], ("active_scm_level_1", "all_scm_level_1"), True),
(CANNED_USERINFO["NO_CUSTOM_CLAIMS"], ("active_scm_level_1",), False),
(CANNED_USERINFO["NO_CUSTOM_CLAIMS"], ("active_scm_level_1", "bogus"), False),
(CANNED_USERINFO["SINGLE_GROUP"], ("all_scm_level_1",), True),
(CANNED_USERINFO["SINGLE_GROUP"], ("active_scm_level_1",), False),
(
CANNED_USERINFO["SINGLE_GROUP"],
("active_scm_level_1", "all_scm_level_1"),
False,
),
(CANNED_USERINFO["STRING_GROUP"], ("all_scm_level_1",), True),
(CANNED_USERINFO["STRING_GROUP"], ("active_scm_level_1",), False),
(
CANNED_USERINFO["STRING_GROUP"],
("active_scm_level_1", "all_scm_level_1"),
False,
),
(CANNED_USERINFO["STANDARD"], (), True),
],
)
def test_user_is_in_groups(userinfo, groups, result):
token = create_access_token()
user = A0User(token, userinfo)
assert user.is_in_groups(*groups) == result
@pytest.mark.parametrize(
"userinfo,expected_email",
[
(CANNED_USERINFO["STANDARD"], "tuser@example.com"),
(CANNED_USERINFO["NO_EMAIL"], None),
(CANNED_USERINFO["UNVERIFIED_EMAIL"], None),
],
)
def test_user_email(userinfo, expected_email):
token = create_access_token()
user = A0User(token, userinfo)
assert user.email == expected_email
@pytest.mark.parametrize(
"scopes, token_kwargs,status,title",
[
(("profile", "lando"), {"scope": "profile"}, 401, "Missing Scopes"),
(("profile", "lando"), {"scope": "lando"}, 401, "Missing Scopes"),
(("profile", "lando"), {"scope": "lando bogus"}, 401, "Missing Scopes"),
(("profile", "lando"), {"scope": "profile bogus"}, 401, "Missing Scopes"),
(("profile", "lando"), {"scope": "Profile Lando"}, 401, "Missing Scopes"),
],
)
def test_require_scopes_invalid(jwks, app, scopes, token_kwargs, status, title):
token = create_access_token(**token_kwargs)
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_auth0(scopes=scopes)(noop)()
assert exc_info.value.status == status
assert exc_info.value.title == title
@pytest.mark.parametrize(
"scopes, token_kwargs",
[
(("lando", "profile"), {"scope": "lando profile"}),
(("lando", "profile"), {"scope": "profile lando"}),
(("lando", "profile"), {"scope": "lando profile extrascope"}),
(("lando", "profile"), {"scope": "extrascope lando profile"}),
(("lando", "profile"), {"scope": "lando extrascope profile"}),
(("lando", "profile"), {"scope": "extra1 lando extra2 profile extra3"}),
((), {"scope": "lando profile"}),
(("lando",), {"scope": "lando profile"}),
(("profile",), {"scope": "lando profile"}),
(
("scope1", "scope2", "scope3", "scope4", "scope5", "scope6"),
{"scope": "scope1 scope2 scope3 scope4 scope5 scope6"},
),
],
)
def test_require_access_scopes_valid(jwks, app, scopes, token_kwargs):
token = create_access_token(**token_kwargs)
headers = [("Authorization", "Bearer {}".format(token))]
with app.test_request_context("/", headers=headers):
resp = require_auth0(scopes=scopes)(noop)()
assert resp.status_code == 200
@pytest.mark.parametrize(
"pingback_enabled,headers,status",
[
(False, [("API-Key", "someapikey")], 403),
(False, [("API-Key", "thisisanincorrectapikey")], 403),
(False, [], 403),
(True, [], 403),
(True, [("API-Key", "thisisanincorrectapikey")], 403),
],
)
def test_require_transplant_authentication_failures(
config, app, pingback_enabled, headers, status
):
config["PINGBACK_ENABLED"] = "y" if pingback_enabled else "n"
with app.test_request_context("/", headers=headers):
with pytest.raises(ProblemException) as exc_info:
require_transplant_authentication(noop)()
assert exc_info.value.status == status
def test_require_transplant_authentication_success(config, app):
config["PINGBACK_ENABLED"] = "y"
headers = [("API-Key", "someapikey")]
with app.test_request_context("/", headers=headers):
resp = require_transplant_authentication(noop)()
assert resp.status_code == 200