-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_main.py
461 lines (382 loc) · 13.3 KB
/
test_main.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
from unittest.mock import patch, Mock
from main import find_first_header_value
from main import find_api_key_in_request
from main import fetch_api_key
from main import lambda_handler
# lambda_handler
def test_lambda_handler_api_key_missing():
try:
lambda_handler({
"headers": {}
}, None)
except Exception as e:
assert str(e) == "Unauthorized"
else:
raise Exception("No exception thrown")
@patch("main.get_api_gateway_client")
@patch("main.get_api_key_cache_entry")
@patch("main.put_api_key_cache_entry")
def test_lambda_handler_api_key_does_not_exist(
mock_put_api_key_cache_entry,
mock_get_api_key_cache_entry,
mock_get_api_gateway_client):
mock_get_api_key_cache_entry.return_value = None
mock_put_api_key_cache_entry.return_value = None
api_gateway_client_paginator = Mock()
api_gateway_client_paginator.paginate.return_value = [{
"items": []
}]
api_gateway_client = Mock()
api_gateway_client.get_paginator.return_value = api_gateway_client_paginator
mock_get_api_gateway_client.return_value = api_gateway_client
try:
lambda_handler({
"headers": {
"authorization": "bearer hello"
}
}, None)
except Exception as e:
assert str(e) == "Unauthorized"
else:
raise Exception("No exception thrown")
@patch("main.current_time_epoch")
@patch("main.fetch_api_key")
@patch("main.get_api_key_cache_entry")
@patch("main.put_api_key_cache_entry")
@patch("main.DEFAULT_PRINCIPAL_ID", "foobar")
@patch("main.PRINCIPAL_ID_TAG_NAME", "principal")
@patch("main.AWS_REGION", "us-east-1")
@patch("main.MAX_API_KEY_CACHE_AGE_SECONDS", 300)
def test_lambda_handler_api_key_given_exists_cached_not_expired(
mock_put_api_key_cache_entry,
mock_get_api_key_cache_entry,
mock_fetch_api_key,
mock_current_time_epoch):
now = 1234567890
mock_current_time_epoch.return_value = now
mock_get_api_key_cache_entry.return_value = {
"id": "alpha",
"value": "hello",
"timestamp": now - 10,
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
}
mock_put_api_key_cache_entry.return_value = None
response = lambda_handler({
"requestContext": {
"accountId": "aws_account_id",
"apiId": "api_id",
"stage": "api_stage"
},
"headers": {
"authorization": "bearer hello"
}
}, None)
assert response == {
"principalId": "principal_id",
"policyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Action": "execute-api:Invoke",
"Effect": "Allow",
"Resource": f"arn:aws:execute-api:us-east-1:aws_account_id:api_id/api_stage/*"
}
]
},
"context": {
"bravo": "charlie"
},
"usageIdentifierKey": "hello"
}
mock_put_api_key_cache_entry.assert_not_called()
mock_fetch_api_key.assert_not_called()
@patch("main.current_time_epoch")
@patch("main.fetch_api_key")
@patch("main.get_api_key_cache_entry")
@patch("main.put_api_key_cache_entry")
@patch("main.DEFAULT_PRINCIPAL_ID", "foobar")
@patch("main.PRINCIPAL_ID_TAG_NAME", "principal")
@patch("main.AWS_REGION", "us-east-1")
@patch("main.MAX_API_KEY_CACHE_AGE_SECONDS", 300)
def test_lambda_handler_api_key_given_exists_cached_expired(
mock_put_api_key_cache_entry,
mock_get_api_key_cache_entry,
mock_fetch_api_key,
mock_current_time_epoch):
now = 1234567890
mock_current_time_epoch.return_value = now
mock_get_api_key_cache_entry.return_value = {
"id": "alpha",
"value": "hello",
"timestamp": now - 3000,
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
}
mock_put_api_key_cache_entry.return_value = None
mock_fetch_api_key.return_value = {
"id": "alpha",
"value": "hello",
"timestamp": now - 3000,
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
}
response = lambda_handler({
"requestContext": {
"accountId": "aws_account_id",
"apiId": "api_id",
"stage": "api_stage"
},
"headers": {
"authorization": "bearer hello"
}
}, None)
assert response == {
"principalId": "principal_id",
"policyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Action": "execute-api:Invoke",
"Effect": "Allow",
"Resource": f"arn:aws:execute-api:us-east-1:aws_account_id:api_id/api_stage/*"
}
]
},
"context": {
"bravo": "charlie"
},
"usageIdentifierKey": "hello"
}
mock_put_api_key_cache_entry.verify_called_with({
"id": "alpha",
"value": "hello",
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
})
mock_fetch_api_key.verify_called_with("hello")
@patch("main.get_api_gateway_client")
@patch("main.get_api_key_cache_entry")
@patch("main.put_api_key_cache_entry")
@patch("main.DEFAULT_PRINCIPAL_ID", "foobar")
@patch("main.PRINCIPAL_ID_TAG_NAME", "principal")
@patch("main.AWS_REGION", "us-east-1")
def test_lambda_handler_api_key_given_exists_not_cached(
mock_put_api_key_cache_entry,
mock_get_api_key_cache_entry,
mock_get_api_gateway_client):
mock_get_api_key_cache_entry.return_value = None
mock_put_api_key_cache_entry.return_value = None
api_gateway_client_paginator = Mock()
api_gateway_client_paginator.paginate.return_value = [{
"items": [
{
"id": "alpha",
"value": "hello",
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
}
]
}]
api_gateway_client = Mock()
api_gateway_client.get_paginator.return_value = api_gateway_client_paginator
mock_get_api_gateway_client.return_value = api_gateway_client
response = lambda_handler({
"requestContext": {
"accountId": "aws_account_id",
"apiId": "api_id",
"stage": "api_stage"
},
"headers": {
"authorization": "bearer hello"
}
}, None)
assert response == {
"principalId": "principal_id",
"policyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Action": "execute-api:Invoke",
"Effect": "Allow",
"Resource": f"arn:aws:execute-api:us-east-1:aws_account_id:api_id/api_stage/*"
}
]
},
"context": {
"bravo": "charlie"
},
"usageIdentifierKey": "hello"
}
mock_put_api_key_cache_entry.verify_called_with({
"id": "alpha",
"value": "hello",
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
})
@patch("main.get_api_gateway_client")
@patch("main.get_api_key_cache_entry")
@patch("main.put_api_key_cache_entry")
@patch("main.DEFAULT_PRINCIPAL_ID", "foobar")
@patch("main.PRINCIPAL_ID_TAG_NAME", "doesnotexist")
@patch("main.AWS_REGION", "us-east-1")
def test_lambda_handler_api_key_given_exists_default_principal_id(
mock_put_api_key_cache_entry,
mock_get_api_key_cache_entry,
mock_get_api_gateway_client):
mock_get_api_key_cache_entry.return_value = None
mock_put_api_key_cache_entry.return_value = None
api_gateway_client_paginator = Mock()
api_gateway_client_paginator.paginate.return_value = [{
"items": [
{
"id": "alpha",
"value": "hello",
"tags": {
"foo": "bar",
"principal": "principal_id",
"context:bravo": "charlie"
}
}
]
}]
api_gateway_client = Mock()
api_gateway_client.get_paginator.return_value = api_gateway_client_paginator
mock_get_api_gateway_client.return_value = api_gateway_client
response = lambda_handler({
"requestContext": {
"accountId": "aws_account_id",
"apiId": "api_id",
"stage": "api_stage"
},
"headers": {
"authorization": "bearer hello"
}
}, None)
assert response == {
"principalId": "foobar",
"policyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Action": "execute-api:Invoke",
"Effect": "Allow",
"Resource": f"arn:aws:execute-api:us-east-1:aws_account_id:api_id/api_stage/*"
}
]
},
"context": {
"bravo": "charlie"
},
"usageIdentifierKey": "hello"
}
# fetch_api_key
@patch("main.get_api_gateway_client")
def test_fetch_api_key_missing(mock_get_api_gateway_client):
api_gateway_client_paginator = Mock()
api_gateway_client_paginator.paginate.return_value = [{
"items": [
{
"id": "a",
"value": "foo"
}
]
}]
api_gateway_client = Mock()
api_gateway_client.get_paginator.return_value = api_gateway_client_paginator
mock_get_api_gateway_client.return_value = api_gateway_client
api_key = fetch_api_key("hello")
assert api_key is None
@patch("main.get_api_gateway_client")
def test_fetch_api_key_present(mock_get_api_gateway_client):
api_gateway_client_paginator = Mock()
api_gateway_client_paginator.paginate.return_value = [{
"items": [
{
"id": "a",
"value": "foo"
},
{
"id": "b",
"value": "hello"
}
]
}]
api_gateway_client = Mock()
api_gateway_client.get_paginator.return_value = api_gateway_client_paginator
mock_get_api_gateway_client.return_value = api_gateway_client
api_key = fetch_api_key("hello")
assert api_key["id"] == "b"
# find_first_header_value
def test_find_first_header_value_absent():
first_header_value = find_first_header_value({"headers": {"foo": "bar"}}, "hello")
assert first_header_value is None
def test_find_first_header_value_present_case_sensitive():
first_header_value = find_first_header_value({"headers": {"hello": "world"}}, "hello")
assert first_header_value == "world"
def test_find_first_header_value_present_case_insensitive():
first_header_value = find_first_header_value({"headers": {"Hello": "world"}}, "hello")
assert first_header_value == "world"
def test_find_first_header_value_present_multiple():
first_header_value = find_first_header_value({"headers": {"hello": "foo,bar"}}, "hello")
assert first_header_value == "foo"
# find_api_key
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(plain)")
def test_find_api_key_authorization_bearer_absent():
api_key = find_api_key_in_request({"headers": {}})
assert api_key is None
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(plain)")
def test_find_api_key_authorization_bearer_present_not_bearer():
api_key = find_api_key_in_request({"headers": {"authorization": "foobar hello"}})
assert api_key is None
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(plain)")
def test_find_api_key_authorization_bearer_present_plain_bearer():
api_key = find_api_key_in_request({"headers": {"authorization": "bearer hello"}})
assert api_key == "hello"
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(base64)")
def test_find_api_key_authorization_bearer_present_base64_bearer():
api_key = find_api_key_in_request({"headers": {"authorization": "bearer aGVsbG8="}})
assert api_key == "hello"
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(plain),header:alpha-bravo-charlie()")
def test_find_api_key_present_first_one_wins():
api_key = find_api_key_in_request({
"headers": {
"authorization": "bearer zulu",
"alpha-bravo-charlie": "yankee"
}
})
assert api_key == "zulu"
@patch("main.AUTHORIZATION_PLAN", "authorization:bearer(plain),header:alpha-bravo-charlie()")
def test_find_api_key_present_second_one_works():
api_key = find_api_key_in_request({
"headers": {
"alpha-bravo-charlie": "yankee"
}
})
assert api_key == "yankee"
@patch("main.AUTHORIZATION_PLAN", "header:alpha-bravo-charlie()")
def test_find_api_key_header_present():
api_key = find_api_key_in_request({"headers": {"alpha-bravo-charlie": "yankee"}})
assert api_key == "yankee"
@patch("main.AUTHORIZATION_PLAN", "header:alpha-bravo-charlie()")
def test_find_api_key_header_absent():
api_key = find_api_key_in_request({"headers": {}})
assert api_key is None