forked from aws/aws-sam-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest_start_api.py
More file actions
3498 lines (2838 loc) · 133 KB
/
Copy pathtest_start_api.py
File metadata and controls
3498 lines (2838 loc) · 133 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 base64
import os
import shutil
import signal
from unittest import skipIf
import uuid
import random
from pathlib import Path
from typing import Dict
import requests
from http.client import HTTPConnection
from concurrent.futures import ThreadPoolExecutor, as_completed
import time
from time import sleep
import pytest
from parameterized import parameterized_class, parameterized
from samcli.commands.local.cli_common.invoke_context import ContainersInitializationMode
from samcli.commands.local.cli_common.options import get_default_layer_cache_dir
from samcli.local.apigw.route import Route
from tests.testing_utils import IS_WINDOWS
from .start_api_integ_base import StartApiIntegBaseClass, WritableStartApiIntegBaseClass
from ..invoke.layer_utils import LayerUtils
@parameterized_class(
("template_path",),
[
("/testdata/start_api/template.yaml",),
("/testdata/start_api/nested-templates/template-parent.yaml",),
("/testdata/start_api/cdk/template_cdk.yaml",),
],
)
class TestServiceHTTP10(StartApiIntegBaseClass):
"""
Testing general requirements around the Service that powers `sam local start-api`
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
self.current_svn_str = HTTPConnection._http_vsn_str
HTTPConnection._http_vsn_str = "HTTP/1.0"
def tearDown(self) -> None:
HTTPConnection._http_vsn_str = self.current_svn_str # type: ignore
def test_static_directory(self):
pass
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_calling_proxy_endpoint_http10(self):
response = requests.get(self.url + "/proxypath/this/is/some/path", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11) # Checks if the response is HTTP/1.1 version
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Get Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_post_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Post Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.post(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_put_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Put Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.put(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_head_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Head Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.head(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_delete_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Delete Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.delete(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_options_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Options Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.options(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_patch_call_with_path_setup_with_any_implicit_api_http10(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.patch(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_large_input_request_http10(self):
# not exact 6 mega, as local start-api sends extra data with the input data
around_six_mega = 6 * 1024 * 1024 - 2 * 1024
data = "a" * around_six_mega
response = requests.post(self.url + "/echoeventbody", data=data, timeout=300)
self.assertEqual(response.status_code, 200)
response_data = response.json()
self.assertEqual(response_data.get("body"), data)
self.assertEqual(response.raw.version, 11)
@parameterized_class(
("template_path",),
[
("/testdata/start_api/template.yaml",),
("/testdata/start_api/nested-templates/template-parent.yaml",),
],
)
class TestServiceHTTP10LMI(StartApiIntegBaseClass):
"""
Testing general requirements around the Service that powers `sam local start-api` with LMI
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
self.current_svn_str = HTTPConnection._http_vsn_str
HTTPConnection._http_vsn_str = "HTTP/1.0"
def tearDown(self) -> None:
HTTPConnection._http_vsn_str = self.current_svn_str # type: ignore
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_capacity_provider_api_http10(self):
response = requests.get(self.url + "/capacity-provider/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
response_json = response.json()
self.assertEqual(response_json["message"], "Hello world capacity provider")
self.assertIn("max_concurrency", response_json)
self.assertEqual(response.raw.version, 11)
@parameterized_class(
("template_path", "container_mode", "endpoint"),
[
("/testdata/start_api/template.yaml", "LAZY", "/sleepfortenseconds/function1"),
("/testdata/start_api/template.yaml", "LAZY", "/sleepfortensecondszipped"),
("/testdata/start_api/template.yaml", "EAGER", "/sleepfortenseconds/function1"),
("/testdata/start_api/cdk/template_cdk.yaml", "LAZY", "/sleepfortenseconds/function1"),
],
)
class TestParallelRequests(StartApiIntegBaseClass):
"""
Test Class centered around sending parallel requests to the service `sam local start-api`
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
HTTPConnection._http_vsn_str = "HTTP/1.1"
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_same_endpoint(self):
"""
Send two requests to the same path at the same time. This is to ensure we can handle
multiple requests at once and do not block/queue up requests
"""
number_of_requests = 10
start_time = time.time()
with ThreadPoolExecutor(number_of_requests) as thread_pool:
futures = [
thread_pool.submit(requests.get, self.url + self.endpoint, timeout=300)
for _ in range(0, number_of_requests)
]
results = [r.result() for r in as_completed(futures)]
end_time = time.time()
for result in results:
self.assertEqual(result.status_code, 200)
self.assertEqual(result.json(), {"message": "HelloWorld! I just slept and waking up."})
self.assertEqual(result.raw.version, 11) # Checks if the response is HTTP/1.1 version
# after checking responses now check the time to complete
self.assertEqual(len(results), 10)
self.assertGreater(end_time - start_time, 10)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_different_endpoints(self):
"""
Send two requests to different paths at the same time. This is to ensure we can handle
multiple requests for different paths and do not block/queue up the requests
"""
number_of_requests = 10
start_time = time.time()
with ThreadPoolExecutor(10) as thread_pool:
test_url_paths = ["/sleepfortenseconds/function0", "/sleepfortenseconds/function1"]
futures = [
thread_pool.submit(
requests.get, self.url + test_url_paths[function_num % len(test_url_paths)], timeout=300
)
for function_num in range(0, number_of_requests)
]
results = [r.result() for r in as_completed(futures)]
end_time = time.time()
self.assertEqual(len(results), 10)
self.assertGreater(end_time - start_time, 10)
for result in results:
self.assertEqual(result.status_code, 200)
self.assertEqual(result.json(), {"message": "HelloWorld! I just slept and waking up."})
self.assertEqual(result.raw.version, 11)
@parameterized_class(
("template_path",),
[
("/testdata/start_api/template.yaml",),
("/testdata/start_api/cdk/template_cdk.yaml",),
],
)
class TestServiceErrorResponses(StartApiIntegBaseClass):
"""
Test Class centered around the Error Responses the Service can return for a given api
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_http_verb_for_endpoint(self):
response = requests.get(self.url + "/id", timeout=300)
self.assertEqual(response.status_code, 403)
self.assertEqual(response.json(), {"message": "Missing Authentication Token"})
self.assertEqual(response.raw.version, 11) # Checks if the response is HTTP/1.1 version
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_response_from_lambda(self):
response = requests.get(self.url + "/invalidresponsereturned", timeout=300)
self.assertEqual(response.status_code, 502)
self.assertEqual(response.json(), {"message": "Internal server error"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_json_response_from_lambda(self):
response = requests.get(self.url + "/invalidresponsehash", timeout=300)
self.assertEqual(response.status_code, 502)
self.assertEqual(response.json(), {"message": "Internal server error"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_request_timeout(self):
pass
class TestServiceFunctionWithInlineCode(StartApiIntegBaseClass):
template_path = "/testdata/start_api/template-inlinecode.yaml"
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_function_without_inline_code_endpoint(self):
response = requests.get(self.url + "/no_inlinecode", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_function_with_inline_code_endpoint(self):
response = requests.get(self.url + "/inlinecode", timeout=300)
self.assertEqual(response.status_code, 501)
self.assertEqual(
response.json(),
{
"message": "Inline code is not supported for sam local commands."
" Please write your code in a separate file."
},
)
@parameterized_class(
("template_path",),
[
("/testdata/start_api/template.yaml",),
("/testdata/start_api/nested-templates/template-parent.yaml",),
("/testdata/start_api/cdk/template_cdk.yaml",),
],
)
class TestService(StartApiIntegBaseClass):
"""
Testing general requirements around the Service that powers `sam local start-api`
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
def test_static_directory(self):
pass
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_calling_proxy_endpoint(self):
response = requests.get(self.url + "/proxypath/this/is/some/path", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11) # Checks if the response is HTTP/1.1 version
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_implicit_api(self):
"""
Get Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_post_call_with_path_setup_with_any_implicit_api(self):
"""
Post Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.post(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_put_call_with_path_setup_with_any_implicit_api(self):
"""
Put Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.put(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_head_call_with_path_setup_with_any_implicit_api(self):
"""
Head Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.head(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_delete_call_with_path_setup_with_any_implicit_api(self):
"""
Delete Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.delete(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_options_call_with_path_setup_with_any_implicit_api(self):
"""
Options Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.options(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_patch_call_with_path_setup_with_any_implicit_api(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.patch(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_large_input_request(self):
# not exact 6 mega, as local start-api sends extra data with the input data
around_six_mega = 6 * 1024 * 1024 - 2 * 1024
data = "a" * around_six_mega
response = requests.post(self.url + "/echoeventbody", data=data, timeout=300)
self.assertEqual(response.status_code, 200)
response_data = response.json()
self.assertEqual(response_data.get("body"), data)
self.assertEqual(response.raw.version, 11)
@parameterized_class(
("template_path",),
[
("/testdata/start_api/template-http-api.yaml",),
("/testdata/start_api/nested-templates/template-http-api-parent.yaml",),
],
)
class TestServiceWithHttpApi(StartApiIntegBaseClass):
"""
Testing general requirements around the Service that powers `sam local start-api`
"""
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
def test_static_directory(self):
pass
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_calling_proxy_endpoint(self):
response = requests.get(self.url + "/proxypath/this/is/some/path", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_capacity_provider_http_api(self):
response = requests.get(self.url + "/capacity-provider/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
response_json = response.json()
self.assertEqual(response_json["message"], "Hello world capacity provider")
self.assertIn("max_concurrency", response_json)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_implicit_api(self):
"""
Get Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_post_call_with_path_setup_with_any_implicit_api(self):
"""
Post Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.post(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_put_call_with_path_setup_with_any_implicit_api(self):
"""
Put Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.put(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_head_call_with_path_setup_with_any_implicit_api(self):
"""
Head Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.head(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_delete_call_with_path_setup_with_any_implicit_api(self):
"""
Delete Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.delete(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_options_call_with_path_setup_with_any_implicit_api(self):
"""
Options Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.options(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_patch_call_with_path_setup_with_any_implicit_api(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.patch(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_valid_v2_lambda_json_response(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/validv2responsehash", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"foo": "bar"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_v1_lambda_json_response(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/invalidv1responsehash", timeout=300)
self.assertEqual(response.status_code, 502)
self.assertEqual(response.json(), {"message": "Internal server error"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_valid_v2_lambda_string_response(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/validv2responsestring", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.text, "This is invalid")
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_valid_v2_lambda_integer_response(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/validv2responseinteger", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.text, "2")
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_v2_lambda_response_skip_unexpected_fields(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/invalidv2response", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_v1_lambda_string_response(self):
"""
Patch Request to a path that was defined as ANY in SAM through AWS::Serverless::Function Events
"""
response = requests.get(self.url + "/invalidv1responsestring", timeout=300)
self.assertEqual(response.status_code, 502)
self.assertEqual(response.json(), {"message": "Internal server error"})
self.assertEqual(response.raw.version, 11)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_invalid_lambda_json_body_response(self):
response = requests.get(self.url + "/invalidresponsebody", timeout=300)
self.assertEqual(response.status_code, 500)
self.assertEqual(response.json(), {"message": "Internal server error"})
self.assertEqual(response.raw.version, 11)
class TestMultiTenantStartApi(StartApiIntegBaseClass):
"""
Test multi-tenant Lambda functions with start-api
"""
template_path = "/testdata/start_api/template-http-api-multi-tenant.yaml"
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_multi_tenant_function_http_api_with_tenant_id(self):
"""Test multi-tenant function via HTTP API with tenant-id header"""
response = requests.get(
self.url + "/multi-tenant-http", headers={"X-Amz-Tenant-Id": "test-tenant-789"}, timeout=300
)
self.assertEqual(response.status_code, 200)
body = response.json()
self.assertEqual(body["tenant_id"], "test-tenant-789")
class TestStartApiWithSwaggerApis(StartApiIntegBaseClass):
template_path = "/testdata/start_api/swagger-template.yaml"
binary_data_file = "testdata/start_api/binarydata.gif"
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_swagger(self):
"""
Get Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.get(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_parse_swagger_body_with_non_case_sensitive_integration_type(self):
"""
Get Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.get(self.url + "/nonsensitiveanyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_post_call_with_path_setup_with_any_swagger(self):
"""
Post Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.post(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_put_call_with_path_setup_with_any_swagger(self):
"""
Put Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.put(self.url + "/anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_head_call_with_path_setup_with_any_swagger(self):
"""
Head Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.head(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_delete_call_with_path_setup_with_any_swagger(self):
"""
Delete Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.delete(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_options_call_with_path_setup_with_any_swagger(self):
"""
Options Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.options(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_patch_call_with_path_setup_with_any_swagger(self):
"""
Patch Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.patch(self.url + "/anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_function_not_defined_in_template(self):
response = requests.get(self.url + "/nofunctionfound", timeout=300)
self.assertEqual(response.status_code, 502)
self.assertEqual(response.json(), {"message": "No function defined for resource method"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_function_with_no_api_event_is_reachable(self):
response = requests.get(self.url + "/functionwithnoapievent", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_lambda_function_resource_is_reachable(self):
response = requests.get(self.url + "/nonserverlessfunction", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_binary_request(self):
"""
This tests that the service can accept and invoke a lambda when given binary data in a request
"""
input_data = self.get_binary_data(self.binary_data_file)
response = requests.post(
self.url + "/echobase64eventbody", headers={"Content-Type": "image/gif"}, data=input_data, timeout=300
)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers.get("Content-Type"), "image/gif")
self.assertEqual(response.content, input_data)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_binary_response(self):
"""
Binary data is returned correctly
"""
expected = self.get_binary_data(self.binary_data_file)
response = requests.get(self.url + "/base64response", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers.get("Content-Type"), "image/gif")
self.assertEqual(response.content, expected)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_non_decoded_binary_response(self):
"""
Binary data is returned correctly
"""
expected = base64.b64encode(self.get_binary_data(self.binary_data_file))
response = requests.get(self.url + "/nondecodedbase64response", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers.get("Content-Type"), "image/gif")
self.assertEqual(response.content, expected)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_decoded_binary_response_base64encoded_field(self):
"""
Binary data is returned correctly
"""
expected = self.get_binary_data(self.binary_data_file)
response = requests.get(self.url + "/decodedbase64responsebas64encoded", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers.get("Content-Type"), "image/gif")
self.assertEqual(response.content, expected)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_decoded_binary_response_base64encoded_field_is_priority(self):
"""
Binary data is returned correctly
"""
expected = base64.b64encode(self.get_binary_data(self.binary_data_file))
response = requests.get(self.url + "/decodedbase64responsebas64encodedpriority", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers.get("Content-Type"), "image/gif")
self.assertEqual(response.content, expected)
class TestStartApiWithSwaggerHttpApis(StartApiIntegBaseClass):
template_path = "/testdata/start_api/swagger-template-http-api.yaml"
binary_data_file = "testdata/start_api/binarydata.gif"
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_swagger(self):
"""
Get Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.get(self.url + "/httpapi-anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_post_call_with_path_setup_with_any_swagger(self):
"""
Post Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.post(self.url + "/httpapi-anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_put_call_with_path_setup_with_any_swagger(self):
"""
Put Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.put(self.url + "/httpapi-anyandall", json={}, timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_head_call_with_path_setup_with_any_swagger(self):
"""
Head Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.head(self.url + "/httpapi-anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_delete_call_with_path_setup_with_any_swagger(self):
"""
Delete Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.delete(self.url + "/httpapi-anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_options_call_with_path_setup_with_any_swagger(self):
"""
Options Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.options(self.url + "/httpapi-anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_patch_call_with_path_setup_with_any_swagger(self):
"""
Patch Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.patch(self.url + "/httpapi-anyandall", timeout=300)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.json(), {"hello": "world"})
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_http_api_payload_v1_should_not_have_operation_id(self):
response = requests.get(self.url + "/httpapi-operation-id-v1", timeout=300)
self.assertEqual(response.status_code, 200)
response_data = response.json()
self.assertEqual(response_data.get("version", {}), "1.0")
# operationName or operationId shouldn't be processed by Httpapi swaggers
request_context_keys = [key.lower() for key in response_data.get("requestContext", {}).keys()]
self.assertTrue("operationid" not in request_context_keys)
self.assertTrue("operationname" not in request_context_keys)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_http_api_payload_v2_should_not_have_operation_id(self):
response = requests.get(self.url + "/httpapi-operation-id-v2", timeout=300)
self.assertEqual(response.status_code, 200)
response_data = response.json()
self.assertEqual(response_data.get("version", {}), "2.0")
# operationName or operationId shouldn't be processed by Httpapi swaggers
request_context_keys = [key.lower() for key in response_data.get("requestContext", {}).keys()]
self.assertTrue("operationid" not in request_context_keys)
self.assertTrue("operationname" not in request_context_keys)
class TestStartApiWithSwaggerRestApis(StartApiIntegBaseClass):
template_path = "/testdata/start_api/swagger-rest-api-template.yaml"
binary_data_file = "testdata/start_api/binarydata.gif"
def setUp(self):
self.url = "http://127.0.0.1:{}".format(self.port)
@pytest.mark.flaky(reruns=3)
@pytest.mark.timeout(timeout=600, method="thread")
def test_get_call_with_path_setup_with_any_swagger(self):
"""
Get Request to a path that was defined as ANY in SAM through Swagger
"""
response = requests.get(self.url + "/anyandall", timeout=300)