local-web-services-python-sdk 0.2.0__tar.gz → 0.19.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (6857) hide show
  1. local_web_services_python_sdk-0.19.0/Makefile +78 -0
  2. local_web_services_python_sdk-0.19.0/PKG-INFO +164 -0
  3. local_web_services_python_sdk-0.19.0/README.md +137 -0
  4. local_web_services_python_sdk-0.19.0/pyproject.toml +103 -0
  5. local_web_services_python_sdk-0.19.0/src/lws_testing/__init__.py +53 -0
  6. local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/capacity.py +63 -0
  7. local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/fake.py +113 -0
  8. local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/iam.py +117 -0
  9. local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/lifecycle.py +50 -0
  10. local_web_services_python_sdk-0.19.0/src/lws_testing/_discovery/cdk.py +115 -0
  11. local_web_services_python_sdk-0.19.0/src/lws_testing/_logs.py +130 -0
  12. local_web_services_python_sdk-0.19.0/src/lws_testing/_management/__init__.py +1 -0
  13. local_web_services_python_sdk-0.19.0/src/lws_testing/_management/aws_fake.py +121 -0
  14. local_web_services_python_sdk-0.19.0/src/lws_testing/_management/chaos.py +38 -0
  15. local_web_services_python_sdk-0.19.0/src/lws_testing/_management/fake.py +147 -0
  16. local_web_services_python_sdk-0.19.0/src/lws_testing/_management/state.py +54 -0
  17. local_web_services_python_sdk-0.19.0/src/lws_testing/_session_helpers.py +90 -0
  18. local_web_services_python_sdk-0.19.0/src/lws_testing/_spec.py +98 -0
  19. local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_extended_services.py +158 -0
  20. local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_management_app.py +58 -0
  21. local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_provider_wrappers.py +195 -0
  22. local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_spec_converters.py +90 -0
  23. local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/inprocess.py +482 -0
  24. local_web_services_python_sdk-0.19.0/src/lws_testing/services.py +44 -0
  25. local_web_services_python_sdk-0.19.0/src/lws_testing/session.py +498 -0
  26. local_web_services_python_sdk-0.19.0/tests/architecture/conftest.py +13 -0
  27. local_web_services_python_sdk-0.19.0/tests/architecture/tests/__init__.py +0 -0
  28. local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/__init__.py +0 -0
  29. local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_bdd_pattern.py +5 -0
  30. local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_no_httpx_imports.py +5 -0
  31. local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_no_skipped_tests.py +5 -0
  32. local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_resource_naming.py +5 -0
  33. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_aaa_comments.py +5 -0
  34. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_client_class_naming.py +5 -0
  35. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_file_length.py +7 -0
  36. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_file_naming.py +5 -0
  37. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_init_imports_all_steps.py +5 -0
  38. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_inprocess_wiring.py +82 -0
  39. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_bare_except.py +5 -0
  40. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_magic_strings_in_assertions.py +7 -0
  41. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_session_helpers_in_constants.py +7 -0
  42. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_steps_in_conftest.py +5 -0
  43. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_one_step_per_file.py +5 -0
  44. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_provider_feature_e2e_coverage.py +282 -0
  45. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_step_decorator_matches_directory.py +7 -0
  46. local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_step_file_name_matches_function.py +7 -0
  47. local_web_services_python_sdk-0.19.0/tests/architecture/tests/unit/__init__.py +0 -0
  48. local_web_services_python_sdk-0.19.0/tests/architecture/tests/unit/test_one_class_per_file.py +5 -0
  49. local_web_services_python_sdk-0.19.0/tests/e2e/__init__.py +0 -0
  50. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/__init__.py +0 -0
  51. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/client.py +128 -0
  52. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/conftest.py +9 -0
  53. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/constants.py +23 -0
  54. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/__init__.py +94 -0
  55. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/aid_in_api_status.py +12 -0
  56. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/aid_not_in_api_status.py +10 -0
  57. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_already_exists.py +12 -0
  58. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_deployment_created.py +10 -0
  59. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_does_not_already_exist.py +10 -0
  60. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_does_not_exist.py +14 -0
  61. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_exists.py +12 -0
  62. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_active_given.py +10 -0
  63. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_creating_given.py +11 -0
  64. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_not_active_given.py +17 -0
  65. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_not_creating_given.py +10 -0
  66. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/backend_integration_attached.py +10 -0
  67. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/backend_integration_called.py +11 -0
  68. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/child_resource_created.py +10 -0
  69. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_deleted_when_no_stage.py +10 -0
  70. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_does_not_exist.py +10 -0
  71. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_exists.py +13 -0
  72. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_is_active_given.py +10 -0
  73. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_is_not_active_given.py +11 -0
  74. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_slot_already_in_use.py +10 -0
  75. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_slot_available.py +10 -0
  76. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_already_exists.py +14 -0
  77. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_exist.py +10 -0
  78. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_exist_v2.py +10 -0
  79. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_have_throttling_configured.py +10 -0
  80. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_exists.py +13 -0
  81. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_has_throttling_configured.py +11 -0
  82. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_is_active.py +10 -0
  83. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_is_not_active.py +11 -0
  84. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/did_in_deployment_status.py +10 -0
  85. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/did_not_in_deployment_status.py +10 -0
  86. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/existing_method_updated.py +10 -0
  87. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/get_method_created_on_resource.py +10 -0
  88. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_deleted.py +10 -0
  89. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_does_not_exist.py +26 -0
  90. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_exists.py +10 -0
  91. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_response_configured.py +10 -0
  92. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_deleted_with_integration.py +10 -0
  93. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_exist.py +26 -0
  94. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_have_api_association.py +11 -0
  95. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_have_integration.py +10 -0
  96. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_exists.py +13 -0
  97. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_has_api_association.py +10 -0
  98. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_has_integration.py +10 -0
  99. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_response_configured.py +10 -0
  100. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_in_integration_status.py +10 -0
  101. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_in_method_status.py +10 -0
  102. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_not_in_method_status.py +10 -0
  103. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/no_resource_slot_is_available.py +12 -0
  104. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/non_root_resource_deleted.py +10 -0
  105. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_does_not_exist.py +10 -0
  106. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_exists.py +12 -0
  107. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_is_active_given.py +10 -0
  108. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_is_not_active_given.py +11 -0
  109. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_already_exists.py +14 -0
  110. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_created.py +10 -0
  111. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_deleted.py +10 -0
  112. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_exist.py +10 -0
  113. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_exist_v2.py +10 -0
  114. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_have_throttling_configured.py +10 -0
  115. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_exists.py +13 -0
  116. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_has_throttling_configured.py +11 -0
  117. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_is_active.py +10 -0
  118. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_is_not_active.py +11 -0
  119. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_redeployed.py +10 -0
  120. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/request_made_to_throttled_stage.py +11 -0
  121. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_does_not_exist.py +10 -0
  122. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_does_not_have_path.py +11 -0
  123. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_exists.py +12 -0
  124. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_has_path.py +10 -0
  125. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_active_given.py +10 -0
  126. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_not_active_given.py +11 -0
  127. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_not_root_resource.py +22 -0
  128. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_root_resource.py +10 -0
  129. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_allocated.py +11 -0
  130. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_is_available.py +10 -0
  131. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_unallocated.py +10 -0
  132. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rest_api_created_with_root_resource.py +12 -0
  133. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rest_api_deleted.py +16 -0
  134. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rid_in_resource_status.py +12 -0
  135. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rid_not_in_resource_api.py +10 -0
  136. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/root_resource_initialized.py +10 -0
  137. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/sk_in_stage_exists.py +10 -0
  138. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/sk_in_stage_throttling.py +11 -0
  139. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_integration_exists.py +13 -0
  140. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_already_exists.py +13 -0
  141. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_does_not_already_exist.py +10 -0
  142. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_exists.py +13 -0
  143. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_disabled_for_prod_stage.py +10 -0
  144. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_dev.py +11 -0
  145. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_for_prod_stage.py +11 -0
  146. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_prod.py +11 -0
  147. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_not_enabled_dev.py +10 -0
  148. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_not_enabled_prod.py +10 -0
  149. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/test_scenarios.py +27 -0
  150. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/__init__.py +41 -0
  151. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_deployments_belong_to_active_apis.py +10 -0
  152. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_resources_belong_to_active_apis.py +10 -0
  153. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_stages_belong_to_active_apis.py +10 -0
  154. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_stages_reference_active_deployments.py +10 -0
  155. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_existing_integrations_correspond_to_existing_methods.py +10 -0
  156. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_existing_methods_belong_to_active_resources.py +10 -0
  157. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_rest_apis_listed_then.py +14 -0
  158. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/api_is_active_with_root_resource.py +15 -0
  159. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/api_is_deleted_with_all_resources.py +21 -0
  160. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/deployment_is_active_then.py +15 -0
  161. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/deployment_is_deleted_then.py +12 -0
  162. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_exists_pointing_to_deployment.py +18 -0
  163. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_no_longer_exists.py +14 -0
  164. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_points_to_new_deployment.py +14 -0
  165. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_requests_are_not_throttled.py +11 -0
  166. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_requests_are_throttled.py +11 -0
  167. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/each_active_api_has_root_resource.py +10 -0
  168. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/every_api_has_valid_status.py +10 -0
  169. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_exists_then.py +15 -0
  170. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_is_deleted_then.py +12 -0
  171. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_response_exists_then.py +15 -0
  172. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_times_out_or_responds.py +11 -0
  173. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_exists_on_resource_then.py +15 -0
  174. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_is_deleted_then.py +12 -0
  175. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_remains_unchanged_then.py +10 -0
  176. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_response_exists_then.py +15 -0
  177. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/new_resource_is_active_then.py +15 -0
  178. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/operation_is_rejected_then.py +14 -0
  179. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_exists_pointing_to_deployment.py +18 -0
  180. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_no_longer_exists.py +14 -0
  181. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_points_to_new_deployment.py +14 -0
  182. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_requests_are_not_throttled.py +11 -0
  183. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_requests_are_throttled.py +11 -0
  184. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/request_is_throttled_or_passes_non_deterministically.py +11 -0
  185. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/resource_is_deleted_then.py +10 -0
  186. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_active_then.py +13 -0
  187. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_created_then.py +14 -0
  188. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_creating_then.py +12 -0
  189. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_deleted_then.py +13 -0
  190. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_retrieved_then.py +14 -0
  191. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/root_resource_is_active_then.py +18 -0
  192. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/__init__.py +32 -0
  193. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/activate_rest_api.py +14 -0
  194. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/attach_backend_integration.py +33 -0
  195. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/backend_integration_called_when.py +11 -0
  196. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/configure_200_integration_response.py +31 -0
  197. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/configure_200_method_response.py +31 -0
  198. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_api_deployment.py +28 -0
  199. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_child_resource.py +27 -0
  200. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_dev_stage.py +31 -0
  201. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_get_method_on_resource.py +37 -0
  202. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_prod_stage.py +31 -0
  203. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_rest_api.py +18 -0
  204. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_rest_api_with_root_resource.py +18 -0
  205. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_deployment_no_stage.py +11 -0
  206. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_dev_stage.py +22 -0
  207. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_integration.py +28 -0
  208. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_method_with_integration.py +28 -0
  209. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_non_root_resource.py +27 -0
  210. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_prod_stage.py +22 -0
  211. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_rest_api.py +22 -0
  212. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_rest_api_quoted.py +23 -0
  213. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/disable_throttling_dev_stage.py +35 -0
  214. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/disable_throttling_prod_stage.py +35 -0
  215. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/enable_throttling_dev_stage.py +35 -0
  216. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/enable_throttling_prod_stage.py +35 -0
  217. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/get_rest_api.py +22 -0
  218. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/init_root_resource.py +29 -0
  219. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/list_rest_apis.py +16 -0
  220. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/redeploy_dev_stage.py +25 -0
  221. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/redeploy_prod_stage.py +25 -0
  222. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/request_to_throttled_dev_stage.py +11 -0
  223. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/request_to_throttled_prod_stage.py +11 -0
  224. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/update_existing_method.py +11 -0
  225. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/__init__.py +0 -0
  226. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/client.py +36 -0
  227. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/conftest.py +9 -0
  228. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/constants.py +7 -0
  229. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/__init__.py +45 -0
  230. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_aid_in_api_status.py +12 -0
  231. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_aid_not_in_api_status.py +10 -0
  232. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_already_exists.py +12 -0
  233. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_already_has_authorizer.py +11 -0
  234. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_does_not_exist.py +10 -0
  235. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_exists.py +12 -0
  236. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_authorizer.py +11 -0
  237. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_no_authorizer.py +10 -0
  238. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_no_cognito_authorizer.py +10 -0
  239. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_is_active_given.py +10 -0
  240. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_is_not_active_given.py +11 -0
  241. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_not_already_exist.py +10 -0
  242. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_authorizer_configured.py +11 -0
  243. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_jwt_issued.py +11 -0
  244. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_mismatched_token.py +11 -0
  245. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_request_slot.py +11 -0
  246. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_token_slot_available.py +11 -0
  247. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_valid_token.py +11 -0
  248. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pid_in_pool_status.py +12 -0
  249. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pid_not_in_pool_status.py +10 -0
  250. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_already_exists.py +12 -0
  251. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_does_not_exist.py +10 -0
  252. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_exists.py +12 -0
  253. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_has_been_created.py +12 -0
  254. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_is_active_given.py +10 -0
  255. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_is_not_active_given.py +11 -0
  256. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_not_already_exist.py +10 -0
  257. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_authorized.py +16 -0
  258. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_rejected.py +11 -0
  259. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_slot_available.py +10 -0
  260. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_rest_api_has_been_created.py +12 -0
  261. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_rid_not_in_req_status.py +10 -0
  262. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_belongs_to_pool_user.py +11 -0
  263. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_from_different_pool.py +13 -0
  264. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_not_belong_to_pool_user.py +13 -0
  265. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_slot_available.py +10 -0
  266. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_uid_in_user_status.py +11 -0
  267. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_already_exists.py +11 -0
  268. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_confirmed.py +11 -0
  269. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_does_not_exist.py +10 -0
  270. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_exists.py +11 -0
  271. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_is_confirmed.py +11 -0
  272. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_is_not_confirmed.py +11 -0
  273. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_not_already_exist.py +10 -0
  274. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_valid_token_exists.py +11 -0
  275. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/test_scenarios.py +27 -0
  276. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/__init__.py +11 -0
  277. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/_inv_apigateway_cognito_every_api_with_a_configured_authorizer_references_an_act.py +12 -0
  278. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/_inv_apigateway_cognito_every_authorized_request_s_token_belongs_to_a_user_in_th.py +12 -0
  279. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/_inv_apigateway_cognito_every_authorized_request_was_validated_against_a_valid_t.py +10 -0
  280. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/_inv_apigateway_cognito_every_rejected_request_s_token_belongs_to_a_user_in_a_di.py +15 -0
  281. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/api_is_active_no_cognito_authorizer.py +23 -0
  282. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/api_will_validate_jwt.py +13 -0
  283. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/apigw_cognito_pool_is_active_then.py +17 -0
  284. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/request_is_authorized.py +11 -0
  285. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/request_is_rejected.py +16 -0
  286. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/user_is_confirmed.py +11 -0
  287. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/valid_token_issued.py +11 -0
  288. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/__init__.py +7 -0
  289. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/authorize_request.py +13 -0
  290. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/cognito_issues_jwt_token.py +11 -0
  291. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/configure_cognito_authorizer.py +11 -0
  292. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/confirm_user_in_pool.py +11 -0
  293. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/create_cognito_user_pool_apigw.py +19 -0
  294. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/create_rest_api_cognito.py +19 -0
  295. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/reject_request.py +11 -0
  296. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/__init__.py +0 -0
  297. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/client.py +81 -0
  298. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/conftest.py +9 -0
  299. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/constants.py +13 -0
  300. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/__init__.py +35 -0
  301. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_aid_in_api_status.py +12 -0
  302. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_aid_not_in_api_status.py +10 -0
  303. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_already_exists.py +12 -0
  304. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_already_has_integration.py +11 -0
  305. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_exists_and_active.py +12 -0
  306. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_been_created.py +13 -0
  307. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_integration.py +17 -0
  308. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_no_integration.py +10 -0
  309. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_is_active_given.py +10 -0
  310. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_is_not_active_given.py +11 -0
  311. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_not_already_exist.py +10 -0
  312. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_not_exist_or_not_active.py +11 -0
  313. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_integration_configured.py +14 -0
  314. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_item_slot_available.py +10 -0
  315. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_no_item_slot.py +10 -0
  316. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_no_request_slot.py +11 -0
  317. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_slot_available.py +10 -0
  318. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_write_failed.py +16 -0
  319. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_written_200.py +18 -0
  320. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_already_deleting.py +20 -0
  321. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_already_exists.py +12 -0
  322. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_deletion_initiated.py +14 -0
  323. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_does_not_exist.py +10 -0
  324. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_exists.py +12 -0
  325. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_exists_and_active.py +12 -0
  326. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_has_been_created.py +12 -0
  327. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_is_active_given.py +10 -0
  328. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_not_already_exist.py +10 -0
  329. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_not_exist_or_not_active.py +20 -0
  330. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_active.py +15 -0
  331. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_deleting.py +20 -0
  332. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_not_active.py +20 -0
  333. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_not_deleting.py +10 -0
  334. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_tid_in_table_status.py +12 -0
  335. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_tid_not_in_table_status.py +10 -0
  336. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/test_scenarios.py +27 -0
  337. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/__init__.py +8 -0
  338. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/_inv_apigateway_dynamodb_every_existing_item_references_a_table_that_exists.py +10 -0
  339. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/_inv_apigateway_dynamodb_every_successful_request_references_an_api_that_exists.py +10 -0
  340. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/api_will_write_to_table.py +26 -0
  341. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_api_is_active_no_integration.py +20 -0
  342. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_table_is_active_then.py +17 -0
  343. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_table_is_deleting.py +14 -0
  344. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/item_exists_request_success.py +21 -0
  345. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/request_failed_no_item.py +11 -0
  346. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/__init__.py +6 -0
  347. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/configure_dynamodb_integration.py +25 -0
  348. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/create_dynamodb_table_apigw.py +24 -0
  349. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/create_rest_api_dynamodb.py +19 -0
  350. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/initiate_table_deletion.py +19 -0
  351. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/request_fails_table_deleting.py +13 -0
  352. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/request_writes_to_dynamodb.py +35 -0
  353. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/__init__.py +0 -0
  354. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/client.py +34 -0
  355. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/conftest.py +9 -0
  356. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/constants.py +9 -0
  357. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/__init__.py +34 -0
  358. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_aid_in_api_status.py +12 -0
  359. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_aid_not_in_api_status.py +10 -0
  360. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_already_exists.py +12 -0
  361. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_already_has_integration.py +11 -0
  362. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_does_not_exist.py +10 -0
  363. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_exists.py +12 -0
  364. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_lambda_integration.py +11 -0
  365. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_no_integration.py +10 -0
  366. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_no_lambda_integration.py +10 -0
  367. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_is_active_given.py +10 -0
  368. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_is_not_active_given.py +11 -0
  369. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_not_already_exist.py +10 -0
  370. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_fid_not_in_func_status.py +10 -0
  371. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_already_exists.py +12 -0
  372. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_does_not_exist.py +10 -0
  373. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_exists.py +12 -0
  374. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_has_been_deployed.py +12 -0
  375. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_is_active_given.py +10 -0
  376. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_is_not_active_given.py +20 -0
  377. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_not_already_exist.py +10 -0
  378. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_iid_in_inv_status.py +11 -0
  379. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integrated_function_is_active.py +11 -0
  380. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integrated_function_is_not_active.py +11 -0
  381. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integration_configured.py +14 -0
  382. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_completed_success.py +19 -0
  383. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_failed.py +16 -0
  384. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_is_in_progress.py +11 -0
  385. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_slot_available.py +11 -0
  386. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_invocation_is_in_progress.py +10 -0
  387. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_invocation_slot.py +11 -0
  388. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_request_slot.py +11 -0
  389. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_request_received_invoked.py +16 -0
  390. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_request_slot_available.py +10 -0
  391. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_rest_api_has_been_created.py +13 -0
  392. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/test_scenarios.py +27 -0
  393. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/__init__.py +9 -0
  394. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/_inv_apigateway_lambda_every_in_progress_invocation_has_a_corresponding_in_progr.py +12 -0
  395. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/_inv_apigateway_lambda_every_in_progress_invocation_references_an_active_lambda_.py +12 -0
  396. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/_inv_apigateway_lambda_every_in_progress_request_references_an_active_api.py +10 -0
  397. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/api_will_invoke_function.py +11 -0
  398. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/apigw_lambda_api_is_active_no_integration.py +20 -0
  399. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/apigw_lambda_function_is_active_then.py +17 -0
  400. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/invocation_failed_request_failed.py +11 -0
  401. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/invocation_success_request_success.py +13 -0
  402. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/request_and_invocation_in_progress.py +11 -0
  403. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/__init__.py +6 -0
  404. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/api_receives_request_invokes_lambda.py +13 -0
  405. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/configure_lambda_integration_apigw.py +11 -0
  406. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/create_rest_api_lambda.py +19 -0
  407. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/deploy_lambda_function_apigw.py +25 -0
  408. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/lambda_invocation_fails_apigw.py +13 -0
  409. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/lambda_invocation_succeeds_apigw.py +13 -0
  410. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/__init__.py +0 -0
  411. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/client.py +73 -0
  412. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/conftest.py +9 -0
  413. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/constants.py +15 -0
  414. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/__init__.py +37 -0
  415. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_aid_in_api_status.py +12 -0
  416. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_aid_not_in_api_status.py +10 -0
  417. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_already_exists.py +12 -0
  418. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_already_has_integration.py +11 -0
  419. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_exists_and_active.py +12 -0
  420. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_been_created.py +12 -0
  421. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_integration.py +17 -0
  422. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_no_integration.py +10 -0
  423. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_is_active_given.py +10 -0
  424. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_is_not_active_given.py +21 -0
  425. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_not_already_exist.py +10 -0
  426. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_not_exist_or_not_active.py +21 -0
  427. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bid_in_bucket_status.py +12 -0
  428. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bid_not_in_bucket_status.py +10 -0
  429. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_already_deleted.py +11 -0
  430. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_already_exists.py +12 -0
  431. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_does_not_exist.py +10 -0
  432. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_exists.py +12 -0
  433. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_exists_and_active.py +12 -0
  434. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_has_been_created.py +12 -0
  435. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_has_been_deleted.py +13 -0
  436. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_active_given.py +11 -0
  437. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_deleted.py +11 -0
  438. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_not_active_given.py +20 -0
  439. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_not_deleted.py +10 -0
  440. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_not_already_exist.py +10 -0
  441. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_not_exist_or_not_active.py +20 -0
  442. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_get_request_retrieved.py +15 -0
  443. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_object_in_bucket.py +11 -0
  444. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_object_slot.py +10 -0
  445. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_request_slot.py +10 -0
  446. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_object_exists_in_bucket.py +11 -0
  447. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_object_slot_available.py +10 -0
  448. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_put_request_written.py +13 -0
  449. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_request_failed_bucket_deleted.py +11 -0
  450. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_request_slot_available.py +10 -0
  451. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_s3_integration_configured.py +11 -0
  452. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/test_scenarios.py +27 -0
  453. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/__init__.py +9 -0
  454. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/_inv_apigateway_s3api_every_existing_object_references_a_bucket_that_exists.py +10 -0
  455. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/_inv_apigateway_s3api_every_successful_request_references_an_api_that_exists.py +10 -0
  456. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/api_will_proxy_to_s3.py +19 -0
  457. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_api_is_active_no_integration.py +20 -0
  458. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_bucket_is_active_then.py +17 -0
  459. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_bucket_is_deleted_then.py +14 -0
  460. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_request_is_success.py +14 -0
  461. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/object_exists_request_success.py +25 -0
  462. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/request_failed_no_such_bucket.py +11 -0
  463. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/__init__.py +7 -0
  464. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/configure_s3_integration_apigw.py +25 -0
  465. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/create_rest_api_s3api.py +19 -0
  466. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/create_s3_bucket_apigw.py +19 -0
  467. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/delete_s3_bucket_apigw.py +19 -0
  468. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/get_request_retrieves_object.py +13 -0
  469. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/put_request_writes_object.py +29 -0
  470. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/request_fails_bucket_deleted.py +11 -0
  471. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/__init__.py +0 -0
  472. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/client.py +72 -0
  473. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/conftest.py +9 -0
  474. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/constants.py +17 -0
  475. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/__init__.py +35 -0
  476. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_aid_in_api_status.py +12 -0
  477. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_aid_not_in_api_status.py +10 -0
  478. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_already_exists.py +12 -0
  479. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_already_has_integration.py +11 -0
  480. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_exists_and_active.py +12 -0
  481. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_been_created.py +12 -0
  482. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_integration.py +17 -0
  483. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_no_integration.py +10 -0
  484. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_is_active_given.py +10 -0
  485. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_is_not_active_given.py +21 -0
  486. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_not_already_exist.py +10 -0
  487. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_not_exist_or_not_active.py +21 -0
  488. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_integration_configured_seq.py +11 -0
  489. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_message_slot_available.py +10 -0
  490. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_no_message_slot.py +10 -0
  491. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_no_request_slot.py +10 -0
  492. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_failed_topic_deleted.py +16 -0
  493. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_published_200.py +15 -0
  494. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_slot_available.py +10 -0
  495. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_active.py +15 -0
  496. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_deleted.py +11 -0
  497. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_not_active.py +20 -0
  498. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_not_deleted.py +10 -0
  499. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_tid_in_topic_status.py +12 -0
  500. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_tid_not_in_topic_status.py +10 -0
  501. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_already_deleted.py +20 -0
  502. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_already_exists.py +12 -0
  503. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_does_not_exist.py +10 -0
  504. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_exists.py +12 -0
  505. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_exists_and_active.py +12 -0
  506. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_has_been_created.py +12 -0
  507. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_has_been_deleted.py +14 -0
  508. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_is_active_given.py +10 -0
  509. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_not_already_exist.py +10 -0
  510. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_not_exist_or_not_active.py +20 -0
  511. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/test_scenarios.py +27 -0
  512. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/__init__.py +8 -0
  513. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/_inv_apigateway_sns_every_published_message_references_a_topic_that_exists.py +10 -0
  514. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/_inv_apigateway_sns_every_successful_request_references_an_api_that_exists.py +10 -0
  515. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/api_will_publish_to_topic.py +22 -0
  516. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_api_is_active_no_integration.py +20 -0
  517. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_topic_is_active_then.py +17 -0
  518. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_topic_is_deleted_then.py +14 -0
  519. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/message_published_request_success.py +14 -0
  520. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/request_failed_no_message.py +11 -0
  521. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/__init__.py +6 -0
  522. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/configure_sns_integration_apigw.py +25 -0
  523. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/create_rest_api_sns.py +19 -0
  524. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/create_sns_topic_apigw.py +19 -0
  525. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/delete_sns_topic_apigw.py +19 -0
  526. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/request_fails_topic_deleted.py +13 -0
  527. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/request_publishes_to_sns.py +31 -0
  528. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/__init__.py +0 -0
  529. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/client.py +72 -0
  530. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/conftest.py +9 -0
  531. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/constants.py +13 -0
  532. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/__init__.py +33 -0
  533. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_aid_in_api_status.py +12 -0
  534. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_aid_not_in_api_status.py +10 -0
  535. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_already_exists.py +12 -0
  536. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_already_has_integration.py +11 -0
  537. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_does_not_exist.py +10 -0
  538. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_exists.py +12 -0
  539. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_no_integration.py +10 -0
  540. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_no_sqs_integration.py +10 -0
  541. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_sqs_integration.py +17 -0
  542. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_is_active_given.py +10 -0
  543. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_is_not_active_given.py +21 -0
  544. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_not_already_exist.py +10 -0
  545. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_available_message_exists.py +11 -0
  546. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_backend_consumer_processed.py +11 -0
  547. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_integration_configured_seq.py +11 -0
  548. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_message_slot_available.py +10 -0
  549. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_mid_in_msg_status.py +11 -0
  550. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_available_message.py +10 -0
  551. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_message_slot.py +10 -0
  552. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_request_slot.py +10 -0
  553. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_qid_not_in_queue_status.py +10 -0
  554. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_already_exists.py +12 -0
  555. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_does_not_exist.py +10 -0
  556. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_exists.py +12 -0
  557. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_has_been_created.py +12 -0
  558. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_is_active_given.py +10 -0
  559. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_is_not_active_given.py +21 -0
  560. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_not_already_exist.py +10 -0
  561. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_request_enqueued.py +11 -0
  562. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_request_slot_available.py +10 -0
  563. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_rest_api_has_been_created.py +12 -0
  564. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_target_queue_is_active.py +15 -0
  565. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_target_queue_is_not_active.py +21 -0
  566. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/test_scenarios.py +27 -0
  567. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/__init__.py +7 -0
  568. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/_inv_apigateway_sqs_every_accepted_request_references_an_active_api.py +10 -0
  569. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/_inv_apigateway_sqs_every_available_message_belongs_to_an_active_queue.py +10 -0
  570. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/api_will_enqueue_requests.py +23 -0
  571. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_api_is_active_no_integration.py +20 -0
  572. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_message_is_deleted.py +16 -0
  573. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_queue_is_active_then.py +18 -0
  574. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/request_accepted_message_available.py +27 -0
  575. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/__init__.py +5 -0
  576. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/api_receives_request_enqueues.py +28 -0
  577. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/backend_consumer_processes_message.py +30 -0
  578. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/configure_sqs_integration_apigw.py +25 -0
  579. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/create_rest_api_sqs.py +19 -0
  580. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/create_sqs_queue_apigw.py +19 -0
  581. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/__init__.py +0 -0
  582. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/client.py +72 -0
  583. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/conftest.py +9 -0
  584. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/constants.py +23 -0
  585. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/__init__.py +34 -0
  586. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_aid_in_api_status.py +12 -0
  587. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_aid_not_in_api_status.py +10 -0
  588. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_already_exists.py +12 -0
  589. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_already_has_integration.py +11 -0
  590. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_does_not_exist.py +10 -0
  591. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_exists.py +12 -0
  592. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_no_integration.py +10 -0
  593. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_no_sfn_integration.py +10 -0
  594. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_sfn_integration.py +17 -0
  595. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_is_active_given.py +10 -0
  596. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_is_not_active_given.py +21 -0
  597. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_not_already_exist.py +10 -0
  598. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_eid_in_exec_status.py +11 -0
  599. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_completed_success.py +16 -0
  600. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_failed.py +11 -0
  601. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_is_running.py +11 -0
  602. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_slot_available.py +11 -0
  603. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integrated_sm_is_active.py +15 -0
  604. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integrated_sm_is_not_active.py +20 -0
  605. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integration_configured_seq.py +13 -0
  606. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_execution_is_running.py +10 -0
  607. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_execution_slot.py +10 -0
  608. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_request_slot.py +10 -0
  609. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_request_slot_available.py +10 -0
  610. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_request_started_execution.py +18 -0
  611. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_rest_api_has_been_created.py +12 -0
  612. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_already_exists.py +12 -0
  613. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_does_not_exist.py +10 -0
  614. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_exists.py +12 -0
  615. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_has_been_created.py +12 -0
  616. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_is_active_given.py +10 -0
  617. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_is_not_active_given.py +20 -0
  618. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_not_already_exist.py +10 -0
  619. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_smid_not_in_sm_status.py +10 -0
  620. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/test_scenarios.py +27 -0
  621. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/__init__.py +9 -0
  622. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/_inv_apigateway_stepfunctions_every_in_progress_request_references_an_active_api.py +10 -0
  623. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/_inv_apigateway_stepfunctions_every_running_execution_has_a_corresponding_in_pro.py +12 -0
  624. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/_inv_apigateway_stepfunctions_every_running_execution_references_an_active_state.py +12 -0
  625. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/api_will_start_execution.py +26 -0
  626. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/apigw_sfn_api_is_active_no_integration.py +20 -0
  627. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/apigw_sfn_sm_is_active_then.py +17 -0
  628. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/execution_failed_request_failed.py +13 -0
  629. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/execution_succeeded_request_success.py +16 -0
  630. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/request_in_progress_execution_running.py +13 -0
  631. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/__init__.py +6 -0
  632. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/api_receives_request_starts_execution.py +34 -0
  633. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/configure_sfn_integration_apigw.py +28 -0
  634. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/create_rest_api_sfn.py +19 -0
  635. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/create_sfn_state_machine_apigw.py +21 -0
  636. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/sfn_execution_fails_apigw.py +11 -0
  637. local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/sfn_execution_succeeds_apigw.py +16 -0
  638. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/__init__.py +0 -0
  639. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/client.py +64 -0
  640. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/conftest.py +9 -0
  641. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/constants.py +10 -0
  642. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/__init__.py +26 -0
  643. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_already_exists.py +12 -0
  644. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_does_not_exist.py +10 -0
  645. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_exists.py +12 -0
  646. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_fid_in_fake_status.py +12 -0
  647. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_fid_not_in_fake_status.py +10 -0
  648. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_has_been_created.py +12 -0
  649. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_has_been_deleted.py +13 -0
  650. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_header_filtered_request_intercepted.py +14 -0
  651. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_is_active.py +10 -0
  652. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_is_not_active.py +12 -0
  653. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_no_operation_slot_available.py +11 -0
  654. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_not_already_exist.py +10 -0
  655. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_oid_in_op_status.py +13 -0
  656. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_does_not_exist.py +10 -0
  657. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_does_not_have_header_filter.py +10 -0
  658. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_exists.py +13 -0
  659. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_been_added.py +13 -0
  660. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_been_removed.py +14 -0
  661. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_header_filter.py +12 -0
  662. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_no_header_filter.py +10 -0
  663. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_is_active.py +10 -0
  664. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_is_not_active.py +12 -0
  665. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_slot_available.py +10 -0
  666. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_request_intercepted.py +14 -0
  667. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_uncovered_request_reached_provider.py +13 -0
  668. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/system_is_initialized.py +10 -0
  669. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/test_scenarios.py +27 -0
  670. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/__init__.py +10 -0
  671. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/_inv_aws_fake_every_active_operation_belongs_to_an_active_aws_fake.py +10 -0
  672. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/_inv_aws_fake_every_aws_fake_is_tied_to_a_known_service.py +10 -0
  673. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/aws_fake_is_active_then.py +10 -0
  674. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/aws_fake_is_deleted_then.py +10 -0
  675. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/canned_response_returned_then.py +10 -0
  676. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/canned_response_returned_when_header_matches_then.py +10 -0
  677. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_active_on_aws_fake_then.py +10 -0
  678. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_deleted_then.py +10 -0
  679. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_rejected_then.py +10 -0
  680. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/request_passes_through_then.py +10 -0
  681. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/__init__.py +7 -0
  682. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/add_operation_to_aws_fake.py +27 -0
  683. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/create_aws_fake.py +17 -0
  684. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/delete_aws_fake.py +18 -0
  685. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/fallthrough_request_reaches_provider.py +15 -0
  686. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/intercept_aws_fake_request.py +15 -0
  687. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/intercept_header_filtered_request.py +15 -0
  688. local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/remove_operation_from_aws_fake.py +18 -0
  689. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/__init__.py +0 -0
  690. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/client.py +19 -0
  691. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/conftest.py +9 -0
  692. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/constants.py +13 -0
  693. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/__init__.py +15 -0
  694. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_error_rate_configured.py +13 -0
  695. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_has_been_disabled.py +13 -0
  696. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_has_been_enabled.py +13 -0
  697. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_enabled.py +13 -0
  698. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_enabled_for_the_service.py +13 -0
  699. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_not_enabled.py +11 -0
  700. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_latency_configured.py +15 -0
  701. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_service_call_delayed.py +10 -0
  702. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_service_call_injected_with_error.py +10 -0
  703. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_status_retrieved.py +13 -0
  704. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_svc_in_chaos_enabled.py +13 -0
  705. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/error_rate_not_set_to_full.py +11 -0
  706. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/error_rate_set_to_full.py +13 -0
  707. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/latency_configured_for_service.py +15 -0
  708. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/latency_not_configured_for_service.py +11 -0
  709. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/test_scenarios.py +27 -0
  710. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/__init__.py +9 -0
  711. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/_inv_chaos_every_chaos_configured_service_is_a_known_service.py +10 -0
  712. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_config_returned.py +15 -0
  713. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_is_disabled.py +17 -0
  714. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_is_enabled.py +17 -0
  715. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_error_rate_updated.py +13 -0
  716. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_latency_updated.py +13 -0
  717. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_operation_is_rejected.py +13 -0
  718. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_service_call_delayed.py +13 -0
  719. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_service_call_receives_chaos_error.py +13 -0
  720. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/__init__.py +7 -0
  721. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_error_rate_configured.py +19 -0
  722. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_is_disabled.py +19 -0
  723. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_is_enabled.py +19 -0
  724. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_latency_configured.py +21 -0
  725. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_status_retrieved.py +18 -0
  726. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_service_call_delayed_by_latency.py +28 -0
  727. local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_service_call_injected_with_error.py +28 -0
  728. local_web_services_python_sdk-0.19.0/tests/e2e/client.py +93 -0
  729. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/__init__.py +0 -0
  730. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/client.py +20 -0
  731. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/conftest.py +9 -0
  732. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/constants.py +5 -0
  733. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/__init__.py +7 -0
  734. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/sid_in_stack_status.py +10 -0
  735. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/sid_not_in_stack_status.py +10 -0
  736. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_already_existed.py +12 -0
  737. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_did_not_already_exist.py +10 -0
  738. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_did_not_exist.py +11 -0
  739. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_existed.py +12 -0
  740. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/system_is_initialized.py +10 -0
  741. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/test_scenarios.py +27 -0
  742. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/__init__.py +7 -0
  743. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/deleted_stacks_not_describable_invariant.py +11 -0
  744. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/operation_is_rejected.py +14 -0
  745. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_is_create_complete.py +17 -0
  746. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_is_update_complete.py +17 -0
  747. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_no_longer_exists.py +21 -0
  748. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_status_valid_invariant.py +11 -0
  749. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/unique_stack_names_invariant.py +11 -0
  750. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/__init__.py +3 -0
  751. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/create_stack.py +20 -0
  752. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/delete_stack.py +24 -0
  753. local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/update_stack.py +26 -0
  754. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/__init__.py +0 -0
  755. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/client.py +56 -0
  756. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/conftest.py +7 -0
  757. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/constants.py +15 -0
  758. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/__init__.py +55 -0
  759. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_has_been_created.py +12 -0
  760. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_has_been_created_with_an_eventbridge_event_bus_arn.py +12 -0
  761. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_has_been_created_with_an_s3_bucket.py +12 -0
  762. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_has_been_created_without_eventbridge_event_bus_arn.py +12 -0
  763. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_is_configured_with_an_eventbridge_event_bus_arn_that_does_not_exist.py +24 -0
  764. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_with_eventbridge_event_bus_arn_is_logging.py +14 -0
  765. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_prior_delivery_failure_occurred_because_the_bucket_did_not_exist.py +26 -0
  766. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_prior_lookup_events_response_returned_a_next_token.py +20 -0
  767. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_trail_is_created_with_an_s3_bucket.py +12 -0
  768. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/an_eventbridge_event_bus_exists.py +16 -0
  769. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/an_eventbridge_rule_matches_on_source_aws_cloudtrail_and_detail_event_name_create_bucket.py +30 -0
  770. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/an_s3_log_file_has_been_written_by_the_flush_cycle.py +28 -0
  771. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/at_least_one_trail_is_logging.py +13 -0
  772. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/awsiamamiddleware_is_configured_in_enforce_mode.py +10 -0
  773. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/eid_in_event_status.py +12 -0
  774. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/eid_not_in_event_status.py +12 -0
  775. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/event_status_eid_not_buffered.py +11 -0
  776. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_accumulate_in_the_internal_buffer.py +16 -0
  777. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_are_in_the_internal_buffer.py +16 -0
  778. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_for_create_queue_and_create_table_are_in_the_buffer.py +26 -0
  779. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_from_multiple_services_are_in_the_buffer.py +26 -0
  780. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_from_two_different_callers_are_in_the_buffer.py +20 -0
  781. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_have_accumulated_in_the_buffer.py +24 -0
  782. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_were_captured_at_different_times.py +24 -0
  783. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_were_captured_over_a_30_minute_period.py +24 -0
  784. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/more_than_50_matching_events_are_in_the_buffer.py +17 -0
  785. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/multiple_events_are_in_the_buffer.py +24 -0
  786. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_cloudtrail_provider_is_registered.py +11 -0
  787. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_cloudtrail_trail_has_been_created_with_that_name.py +10 -0
  788. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_trail_is_in_logging_state.py +12 -0
  789. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/s3_and_dynamodb_events_are_in_the_buffer.py +26 -0
  790. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/several_service_api_calls_have_been_made.py +26 -0
  791. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/start_logging_has_been_called_on_the_trail.py +12 -0
  792. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/start_logging_is_called.py +12 -0
  793. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/stop_logging_has_been_called_on_the_trail.py +12 -0
  794. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_active_trail_count_has_reached_the_maximum.py +16 -0
  795. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_active_trail_count_is_below_the_maximum.py +11 -0
  796. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_associated_trail_is_logging.py +10 -0
  797. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_caller_does_not_have_permission_for_the_operation.py +10 -0
  798. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_event_was_buffered.py +19 -0
  799. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_already_existed.py +13 -0
  800. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_did_not_already_exist.py +11 -0
  801. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_did_not_exist.py +11 -0
  802. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_existed.py +13 -0
  803. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_deleted.py +14 -0
  804. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_logging.py +15 -0
  805. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_not_deleted.py +11 -0
  806. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_not_logging.py +11 -0
  807. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_bucket_configured_on_the_trail_does_not_exist.py +13 -0
  808. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_bucket_exists.py +16 -0
  809. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_bucket_has_now_been_created.py +16 -0
  810. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_provider_has_no_bucket_with_the_trails_configured_name.py +10 -0
  811. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/tname_in_trail_status.py +14 -0
  812. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/tname_not_in_trail_status.py +10 -0
  813. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/two_cloudtrail_trails_have_been_created.py +12 -0
  814. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/test_scenarios.py +24 -0
  815. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/__init__.py +82 -0
  816. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_data_event_with_event_name_put_item_is_buffered.py +17 -0
  817. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_data_event_with_event_name_put_object_is_buffered.py +17 -0
  818. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_event_is_buffered_with_error_code_access_denied.py +35 -0
  819. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_management_event_is_buffered.py +15 -0
  820. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_management_event_with_event_name_create_bucket_is_buffered.py +17 -0
  821. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_management_event_with_event_name_create_queue_is_buffered.py +17 -0
  822. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_management_event_with_event_name_create_table_is_buffered.py +17 -0
  823. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_deleted_trail_is_never_in_logging_state.py +24 -0
  824. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_gzip_compressed_json_log_file_is_written_to_the_trails_s3_bucket.py +27 -0
  825. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_next_token_is_included_in_the_response.py +16 -0
  826. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_warning_is_logged.py +10 -0
  827. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/active_trail_count_never_exceeds_max.py +10 -0
  828. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/all_buffered_events_reference_valid_trails.py +12 -0
  829. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/all_matching_buffered_events_are_returned.py +15 -0
  830. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/an_eventbridge_event_is_published_to_the_configured_bus.py +14 -0
  831. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/both_trails_are_included_in_the_response.py +23 -0
  832. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/buffered_events_are_returned.py +15 -0
  833. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/each_element_in_records_is_a_valid_cloudtrail_event.py +22 -0
  834. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/event_capture_continues_normally.py +18 -0
  835. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_are_returned_in_reverse_chronological_order.py +22 -0
  836. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_only_delivered_when_logging.py +12 -0
  837. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_reference_valid_trails_invariant.py +12 -0
  838. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/fifty_events_are_returned.py +16 -0
  839. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/get_trail_status_returns_a_latest_delivery_error.py +24 -0
  840. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/is_logging_is_true.py +13 -0
  841. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/it_is_valid_json_with_a_top_level_records_array.py +21 -0
  842. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/latest_delivery_error_is_cleared.py +24 -0
  843. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/log_files_appear_under_the_cloudtrail_s3_key_path.py +25 -0
  844. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/lookup_events_returns_the_captured_events.py +14 -0
  845. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_cloudtrail_error_is_raised.py +11 -0
  846. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_create_table_events_are_included.py +24 -0
  847. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_error_is_raised.py +11 -0
  848. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_error_is_returned_at_creation_time.py +11 -0
  849. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_eventbridge_put_events_call_is_made.py +14 -0
  850. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_new_cloudtrail_event_is_buffered_for_the_logging_trail.py +27 -0
  851. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_s3_log_file_is_written_to_the_trails_bucket.py +23 -0
  852. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_create_queue_events_are_returned.py +25 -0
  853. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_events_with_event_time_within_that_window_are_returned.py +15 -0
  854. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_events_with_s3_bucket_resources_are_returned.py +28 -0
  855. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_events_with_user_identity_user_name_equal_to_developer_are_returned.py +15 -0
  856. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_sqs_events_are_returned.py +25 -0
  857. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/subsequent_events_are_forwarded_to_eventbridge.py +11 -0
  858. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffer_is_cleared_after_the_flush.py +19 -0
  859. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_aws_region.py +25 -0
  860. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_id.py +25 -0
  861. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_name.py +25 -0
  862. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_source.py +25 -0
  863. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_time.py +25 -0
  864. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_type.py +25 -0
  865. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_version.py +28 -0
  866. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_recipient_account_id.py +25 -0
  867. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_source_ip_address.py +25 -0
  868. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_user_identity.py +25 -0
  869. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_capacity_limit_is_respected.py +15 -0
  870. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_event_will_be_buffered.py +11 -0
  871. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_event_will_be_delivered.py +11 -0
  872. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_logging_will_be_disabled.py +15 -0
  873. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_logging_will_be_enabled.py +15 -0
  874. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_will_be_created.py +18 -0
  875. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_will_be_deleted.py +19 -0
  876. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_buffer_is_not_lost.py +14 -0
  877. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_error_code_set_to_the_aws_error_code.py +30 -0
  878. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_error_message_set.py +30 -0
  879. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_dynamodb.py +36 -0
  880. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_s3.py +31 -0
  881. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_sqs.py +33 -0
  882. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_no_error_code.py +28 -0
  883. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_resources_array_contains_the_object_arn.py +28 -0
  884. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_resources_array_contains_the_table_arn.py +28 -0
  885. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_event_detail_contains_the_full_cloudtrail_event_json.py +13 -0
  886. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_event_has_detail_type_aws_api_call_via_cloudtrail.py +13 -0
  887. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_event_has_source_aws_cloudtrail.py +13 -0
  888. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_rule_target_is_invoked.py +11 -0
  889. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_flush_succeeds.py +18 -0
  890. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_next_page_of_events_is_returned.py +15 -0
  891. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_operation_is_rejected.py +11 -0
  892. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_s3_key_follows_the_standard_cloudtrail_path_format.py +17 -0
  893. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_sqs_call_succeeds_normally.py +11 -0
  894. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_configuration_and_logging_state_are_returned.py +18 -0
  895. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_count_is_consistent.py +15 -0
  896. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_is_created_successfully.py +11 -0
  897. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trails_s3_bucket_is_updated.py +17 -0
  898. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/__init__.py +38 -0
  899. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_caller_invokes_an_operation_that_returns_an_aws_error.py +21 -0
  900. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_event_is_delivered_to_s3.py +19 -0
  901. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_event_is_recorded.py +22 -0
  902. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_trail_is_created.py +20 -0
  903. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_trail_is_deleted.py +18 -0
  904. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_flush_is_attempted.py +18 -0
  905. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_service_api_call_is_made.py +17 -0
  906. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_service_operation_is_called.py +17 -0
  907. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/any_aws_service_operation_is_called.py +17 -0
  908. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_bucket_is_called_on_the_s3_provider.py +17 -0
  909. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_queue_is_called_on_the_sqs_provider.py +17 -0
  910. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_table_is_called_on_the_dynamodb_provider.py +22 -0
  911. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_trail_is_called.py +19 -0
  912. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/get_trail_is_called_with_the_trail_name.py +17 -0
  913. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/get_trail_status_is_called.py +17 -0
  914. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/list_trails_is_called.py +15 -0
  915. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called.py +15 -0
  916. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_event_name_create_queue.py +17 -0
  917. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_event_source_sqs.py +19 -0
  918. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_next_token.py +19 -0
  919. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_resource_type_s3_bucket.py +17 -0
  920. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_time_range.py +23 -0
  921. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_username_developer.py +17 -0
  922. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_without_next_token.py +15 -0
  923. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_without_time_range.py +15 -0
  924. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/multiple_service_api_calls_are_made.py +18 -0
  925. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/put_item_is_called_on_the_dynamodb_provider.py +30 -0
  926. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/put_object_is_called_on_the_s3_provider.py +22 -0
  927. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/start_logging_is_called_on_the_cloudtrail_trail.py +18 -0
  928. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/stop_logging_is_called_on_the_cloudtrail_trail.py +22 -0
  929. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_file_is_downloaded_and_decompressed.py +31 -0
  930. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_flush_cycle_runs.py +18 -0
  931. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_flush_interval_elapses.py +18 -0
  932. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_flush_interval_elapses_or_the_high_water_mark_is_reached.py +18 -0
  933. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_next_scheduled_flush_runs.py +18 -0
  934. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/update_trail_is_called_with_a_new_s3_bucket_name.py +19 -0
  935. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/update_trail_is_called_with_an_empty_eventbridge_event_bus_arn.py +19 -0
  936. local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/update_trail_is_called_with_an_eventbridge_event_bus_arn.py +19 -0
  937. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/__init__.py +0 -0
  938. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/client.py +26 -0
  939. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/conftest.py +9 -0
  940. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/constants.py +7 -0
  941. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/__init__.py +29 -0
  942. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_already_exists.py +12 -0
  943. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_does_not_exist.py +10 -0
  944. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_exists.py +12 -0
  945. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_exists_and_is_active.py +12 -0
  946. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_active_given.py +10 -0
  947. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_already_deleted.py +20 -0
  948. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_deleted_given.py +11 -0
  949. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_not_deleted_given.py +11 -0
  950. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_not_already_exist.py +10 -0
  951. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_not_exist_or_not_active.py +13 -0
  952. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_busid_in_bus_status.py +12 -0
  953. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_busid_not_in_bus_status.py +10 -0
  954. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_event_bus_has_been_created.py +12 -0
  955. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_event_bus_has_been_deleted.py +14 -0
  956. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_pid_in_pool_status.py +12 -0
  957. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_pid_not_in_pool_status.py +10 -0
  958. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_publishing_enabled.py +11 -0
  959. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_action_delivered.py +16 -0
  960. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_action_delivery_failed.py +13 -0
  961. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_pool_has_been_created.py +12 -0
  962. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/event_slot_available.py +10 -0
  963. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/no_event_slot_available.py +10 -0
  964. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_already_exists.py +12 -0
  965. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_already_has_eventbridge_config.py +11 -0
  966. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_exists_and_is_active.py +12 -0
  967. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_has_eventbridge_config.py +11 -0
  968. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_has_no_eventbridge_config.py +10 -0
  969. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_not_already_exist.py +10 -0
  970. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_not_exist_or_not_active.py +10 -0
  971. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/test_scenarios.py +27 -0
  972. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/__init__.py +8 -0
  973. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/_inv_cognito_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  974. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/_inv_cognito_events_every_delivered_event_references_a_pool_that_exists.py +10 -0
  975. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/bus_is_active_then.py +16 -0
  976. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/bus_is_deleted_then.py +10 -0
  977. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/event_delivered_to_bus.py +11 -0
  978. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/event_delivery_failed.py +11 -0
  979. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/pool_is_active_no_eventbridge.py +16 -0
  980. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/pool_will_send_events_to_bus.py +11 -0
  981. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/__init__.py +6 -0
  982. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/create_event_bus.py +18 -0
  983. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/create_user_pool.py +18 -0
  984. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/delete_event_bus.py +18 -0
  985. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/enable_event_publishing.py +11 -0
  986. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/user_action_event_delivered.py +13 -0
  987. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/user_action_event_delivery_fails.py +11 -0
  988. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/__init__.py +0 -0
  989. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/client.py +33 -0
  990. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/conftest.py +9 -0
  991. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/constants.py +25 -0
  992. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/__init__.py +72 -0
  993. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_added_user_to_group.py +11 -0
  994. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_confirmed_user.py +11 -0
  995. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_initiated_auth.py +11 -0
  996. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_removed_user_from_group.py +11 -0
  997. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_reset_password.py +11 -0
  998. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_set_password.py +11 -0
  999. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_updated_attributes.py +11 -0
  1000. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_authenticated_session_expired.py +11 -0
  1001. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_confirmed_user_initiated_auth.py +11 -0
  1002. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_has_been_created.py +11 -0
  1003. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_has_been_deleted.py +11 -0
  1004. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_id_in_group_status.py +11 -0
  1005. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_pool_id_in_pool_status.py +12 -0
  1006. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_pool_id_not_in_pool_status.py +10 -0
  1007. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_session_id_in_session_status.py +11 -0
  1008. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_compromised.py +11 -0
  1009. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_disabled.py +11 -0
  1010. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_enabled.py +11 -0
  1011. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_has_been_created.py +20 -0
  1012. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_has_been_deleted.py +25 -0
  1013. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_id_in_user_enabled.py +11 -0
  1014. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_id_in_user_status.py +11 -0
  1015. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_pool_has_been_created.py +12 -0
  1016. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_pool_has_been_deleted.py +14 -0
  1017. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_responded_to_challenge.py +11 -0
  1018. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_verification_code_delivery_failed.py +11 -0
  1019. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_already_exists.py +24 -0
  1020. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_does_not_exist.py +10 -0
  1021. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_exists.py +24 -0
  1022. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_is_active.py +10 -0
  1023. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_is_not_active.py +12 -0
  1024. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_not_already_exist.py +10 -0
  1025. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_already_exists.py +12 -0
  1026. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_does_not_exist.py +19 -0
  1027. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_exists.py +12 -0
  1028. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_is_active_given.py +10 -0
  1029. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_is_not_active_given.py +11 -0
  1030. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_not_already_exist.py +10 -0
  1031. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_does_not_exist.py +10 -0
  1032. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_exists.py +12 -0
  1033. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_authenticated.py +12 -0
  1034. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_challenge_required.py +12 -0
  1035. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_not_authenticated.py +12 -0
  1036. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_not_challenge_required.py +12 -0
  1037. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_slot_available.py +10 -0
  1038. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_slot_not_available.py +10 -0
  1039. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_already_exists.py +20 -0
  1040. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_and_group_belong_to_different_pools.py +11 -0
  1041. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_and_group_belong_to_same_pool.py +10 -0
  1042. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_does_not_exist.py +10 -0
  1043. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_does_not_have_enabled_flag.py +12 -0
  1044. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_exists.py +20 -0
  1045. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_has_enabled_flag.py +24 -0
  1046. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_already_deleted.py +27 -0
  1047. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_confirmed.py +26 -0
  1048. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_deleted.py +12 -0
  1049. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_disabled.py +23 -0
  1050. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_enabled.py +10 -0
  1051. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_force_change_password.py +10 -0
  1052. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_in_force_change_password_state.py +10 -0
  1053. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_in_reset_required_state.py +14 -0
  1054. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_already_deleted.py +10 -0
  1055. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_confirmed.py +38 -0
  1056. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_deleted.py +10 -0
  1057. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_disabled.py +10 -0
  1058. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_enabled.py +23 -0
  1059. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_force_change_password.py +11 -0
  1060. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_in_force_change_password_state.py +11 -0
  1061. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_in_reset_required_state.py +10 -0
  1062. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_unconfirmed.py +11 -0
  1063. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_unconfirmed.py +14 -0
  1064. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_not_already_exist.py +10 -0
  1065. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/test_scenarios.py +27 -0
  1066. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/__init__.py +31 -0
  1067. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_deleted_users_do_not_have_active_authenticated_sessions.py +10 -0
  1068. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_disabled_users_do_not_have_active_authenticated_sessions.py +10 -0
  1069. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_every_auth_session_has_a_valid_status.py +10 -0
  1070. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_every_group_membership_references_an_existing_active_group.py +10 -0
  1071. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_every_non_deleted_user_has_an_enabled_flag_set.py +10 -0
  1072. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_every_user_has_a_valid_status.py +10 -0
  1073. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/_inv_cognito_idp_every_user_pool_has_a_valid_status_active_or_deleted.py +10 -0
  1074. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/group_is_active_and_associated_then.py +10 -0
  1075. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/group_is_deleted_then.py +10 -0
  1076. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/operation_is_rejected_then.py +12 -0
  1077. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_active_then.py +18 -0
  1078. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_simple_then.py +17 -0
  1079. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_then.py +17 -0
  1080. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_with_users_groups_then.py +17 -0
  1081. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_authenticated_or_challenge_failed_then.py +12 -0
  1082. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_created_authenticated_then.py +10 -0
  1083. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_created_challenge_required_then.py +10 -0
  1084. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_expired_then.py +10 -0
  1085. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_attributes_are_updated_then.py +12 -0
  1086. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_exists_in_force_change_password_and_enabled_then.py +21 -0
  1087. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_confirmed_then.py +19 -0
  1088. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_deleted_sessions_cleared_then.py +12 -0
  1089. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_deleted_then.py +10 -0
  1090. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_disabled_then.py +16 -0
  1091. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_enabled_then.py +16 -0
  1092. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_force_change_password_then.py +19 -0
  1093. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_in_compromised_state_then.py +11 -0
  1094. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_in_reset_required_state_then.py +19 -0
  1095. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_member_of_group_then.py +10 -0
  1096. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_not_member_of_group_then.py +12 -0
  1097. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_remains_unconfirmed_then.py +12 -0
  1098. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/__init__.py +20 -0
  1099. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_add_user_to_group.py +24 -0
  1100. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_confirm_user_registration.py +23 -0
  1101. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_initiates_auth.py +26 -0
  1102. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_remove_user_from_group.py +24 -0
  1103. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_reset_user_password.py +23 -0
  1104. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_set_user_password.py +26 -0
  1105. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_update_user_attributes.py +25 -0
  1106. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/authenticated_session_expires.py +23 -0
  1107. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/confirmed_user_initiates_auth.py +25 -0
  1108. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_group_in_user_pool.py +24 -0
  1109. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_user_by_admin.py +26 -0
  1110. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_user_pool.py +21 -0
  1111. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_group.py +23 -0
  1112. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_user_by_admin.py +23 -0
  1113. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_user_pool.py +20 -0
  1114. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/disable_user_by_admin.py +23 -0
  1115. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/enable_user_by_admin.py +23 -0
  1116. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/mark_user_compromised.py +23 -0
  1117. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/user_responds_to_auth_challenge.py +33 -0
  1118. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/verification_code_delivery_fails.py +23 -0
  1119. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/__init__.py +0 -0
  1120. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/client.py +41 -0
  1121. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/conftest.py +9 -0
  1122. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/constants.py +9 -0
  1123. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/__init__.py +35 -0
  1124. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_fid_not_in_func_status.py +10 -0
  1125. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_already_exists.py +12 -0
  1126. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_does_not_exist.py +10 -0
  1127. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_exists.py +12 -0
  1128. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_has_been_deployed.py +12 -0
  1129. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_is_active_given.py +10 -0
  1130. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_is_not_active_given.py +20 -0
  1131. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_not_already_exist.py +10 -0
  1132. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_iid_in_inv_status.py +11 -0
  1133. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_invocation_is_in_progress.py +11 -0
  1134. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_invocation_slot_available.py +11 -0
  1135. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_invocation_is_in_progress.py +10 -0
  1136. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_invocation_slot_available.py +10 -0
  1137. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_user_slot_available.py +10 -0
  1138. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pid_in_pool_status.py +12 -0
  1139. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pid_not_in_pool_status.py +10 -0
  1140. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_already_exists.py +12 -0
  1141. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_already_has_trigger.py +11 -0
  1142. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_does_not_exist.py +10 -0
  1143. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_exists.py +12 -0
  1144. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_no_pre_signup_trigger.py +10 -0
  1145. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_no_trigger.py +10 -0
  1146. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_pre_signup_trigger.py +11 -0
  1147. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_is_active_given.py +10 -0
  1148. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_is_not_active_given.py +21 -0
  1149. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_not_already_exist.py +10 -0
  1150. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_allowed.py +11 -0
  1151. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_denied.py +11 -0
  1152. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_trigger_configured.py +11 -0
  1153. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_trigger_function_is_active.py +11 -0
  1154. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_trigger_function_is_not_active.py +11 -0
  1155. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_initiated_signup_with_trigger.py +13 -0
  1156. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_pool_has_been_created.py +12 -0
  1157. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_signed_up_no_trigger.py +13 -0
  1158. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_slot_available.py +10 -0
  1159. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/test_scenarios.py +27 -0
  1160. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/__init__.py +11 -0
  1161. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/_inv_cognito_lambda_every_in_progress_invocation_is_for_a_pending_user.py +10 -0
  1162. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/_inv_cognito_lambda_every_in_progress_invocation_references_an_active_lambda_fun.py +12 -0
  1163. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/_inv_cognito_lambda_every_pending_user_has_a_corresponding_in_progress_invocatio.py +10 -0
  1164. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/cognito_lambda_function_is_active_then.py +17 -0
  1165. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/cognito_lambda_pool_is_active_then.py +17 -0
  1166. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/invocation_failed_user_rejected.py +11 -0
  1167. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/invocation_success_user_confirmed.py +11 -0
  1168. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/pool_is_active_no_trigger.py +17 -0
  1169. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/signups_will_invoke_function.py +11 -0
  1170. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/user_is_immediately_confirmed.py +19 -0
  1171. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/user_is_pending_trigger_invoked.py +11 -0
  1172. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/__init__.py +7 -0
  1173. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/configure_lambda_trigger.py +11 -0
  1174. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/create_cognito_user_pool.py +19 -0
  1175. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/deploy_lambda_function_cognito.py +25 -0
  1176. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/pre_signup_lambda_allows.py +11 -0
  1177. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/pre_signup_lambda_denies.py +11 -0
  1178. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/user_initiates_signup_with_trigger.py +13 -0
  1179. local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/user_signs_up_without_trigger.py +34 -0
  1180. local_web_services_python_sdk-0.19.0/tests/e2e/conftest.py +45 -0
  1181. local_web_services_python_sdk-0.19.0/tests/e2e/constants.py +57 -0
  1182. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/__init__.py +0 -0
  1183. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/client.py +40 -0
  1184. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/conftest.py +9 -0
  1185. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/constants.py +9 -0
  1186. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/__init__.py +75 -0
  1187. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cid_in_cluster_status.py +12 -0
  1188. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cid_not_in_cluster_status.py +10 -0
  1189. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_already_exists.py +12 -0
  1190. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_does_not_exist.py +10 -0
  1191. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_exists.py +12 -0
  1192. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_has_no_non_deleted_instances.py +10 -0
  1193. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_has_non_deleted_instances.py +12 -0
  1194. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_available_given.py +10 -0
  1195. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_creating_given.py +13 -0
  1196. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_deleting_given.py +11 -0
  1197. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_modifying_given.py +17 -0
  1198. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_available_given.py +12 -0
  1199. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_creating_given.py +10 -0
  1200. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_deleting_given.py +10 -0
  1201. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_modifying_given.py +10 -0
  1202. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_restoring_given.py +10 -0
  1203. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_restoring_given.py +15 -0
  1204. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_not_already_exist.py +10 -0
  1205. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_config_modified.py +11 -0
  1206. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_creation_failed.py +11 -0
  1207. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_deletion_completed.py +12 -0
  1208. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_been_created.py +12 -0
  1209. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_been_deleted.py +11 -0
  1210. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_finished_creating.py +12 -0
  1211. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_modification_completed.py +13 -0
  1212. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_restore_completed.py +15 -0
  1213. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_restored_from_snapshot.py +11 -0
  1214. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_failover_triggered.py +15 -0
  1215. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_config_modified.py +11 -0
  1216. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_deletion_completed.py +12 -0
  1217. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_been_created.py +11 -0
  1218. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_been_deleted.py +11 -0
  1219. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_finished_creating.py +12 -0
  1220. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_modification_completed.py +13 -0
  1221. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_deletion_completed.py +15 -0
  1222. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_been_created.py +11 -0
  1223. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_been_deleted.py +11 -0
  1224. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_finished_creating.py +15 -0
  1225. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/iid_in_instance_status.py +13 -0
  1226. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_belongs_to_cluster.py +12 -0
  1227. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_does_not_belong_to_cluster.py +10 -0
  1228. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_does_not_exist.py +10 -0
  1229. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_exists.py +13 -0
  1230. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_already_primary.py +11 -0
  1231. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_available_given.py +10 -0
  1232. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_creating_given.py +11 -0
  1233. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_deleting_given.py +11 -0
  1234. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_modifying_given.py +17 -0
  1235. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_available_given.py +11 -0
  1236. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_creating_given.py +10 -0
  1237. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_deleting_given.py +10 -0
  1238. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_modifying_given.py +10 -0
  1239. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_primary_of_cluster.py +11 -0
  1240. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_the_primary.py +11 -0
  1241. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_primary_of_cluster.py +11 -0
  1242. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_the_primary.py +11 -0
  1243. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_slot_available.py +10 -0
  1244. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_slot_not_available.py +10 -0
  1245. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_was_not_already_primary.py +11 -0
  1246. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/new_primary_instance_does_not_exist.py +10 -0
  1247. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/new_primary_instance_exists.py +12 -0
  1248. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/sid_in_snapshot_status.py +13 -0
  1249. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_does_not_exist.py +10 -0
  1250. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_exists.py +13 -0
  1251. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_available_given.py +10 -0
  1252. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_creating_given.py +11 -0
  1253. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_deleting_given.py +11 -0
  1254. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_available_given.py +11 -0
  1255. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_creating_given.py +10 -0
  1256. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_deleting_given.py +10 -0
  1257. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_slot_available.py +10 -0
  1258. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_slot_not_available.py +10 -0
  1259. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/system_is_initialized.py +10 -0
  1260. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/target_cluster_slot_available.py +10 -0
  1261. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/target_cluster_slot_not_available.py +10 -0
  1262. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/test_scenarios.py +27 -0
  1263. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/__init__.py +27 -0
  1264. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_has_new_primary_then.py +11 -0
  1265. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_available_then.py +11 -0
  1266. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_creating_then.py +11 -0
  1267. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_deleted_then.py +14 -0
  1268. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_deleting_then.py +14 -0
  1269. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_failed_then.py +11 -0
  1270. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_modifying_then.py +18 -0
  1271. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_returns_to_available_then.py +18 -0
  1272. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/creating_snapshot_references_non_deleted_cluster.py +12 -0
  1273. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/deleted_cluster_has_no_non_deleted_instances.py +10 -0
  1274. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/deleting_cluster_receives_no_new_instances.py +10 -0
  1275. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_cluster_has_valid_status.py +10 -0
  1276. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_instance_has_valid_status.py +10 -0
  1277. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_snapshot_has_valid_status.py +10 -0
  1278. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/failed_cluster_has_no_available_instances.py +10 -0
  1279. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_available_then.py +13 -0
  1280. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_creating_then.py +13 -0
  1281. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_deleted_then.py +16 -0
  1282. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_deleting_then.py +14 -0
  1283. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_modifying_then.py +18 -0
  1284. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_returns_to_available_then.py +18 -0
  1285. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/operation_is_rejected_then.py +15 -0
  1286. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/restored_cluster_is_restoring_then.py +11 -0
  1287. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_available_then.py +11 -0
  1288. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_creating_then.py +13 -0
  1289. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_deleted_then.py +14 -0
  1290. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_deleting_then.py +14 -0
  1291. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/__init__.py +20 -0
  1292. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_creation_fails.py +11 -0
  1293. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_deletion_completes.py +15 -0
  1294. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_finishes_creating.py +15 -0
  1295. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_modification_completes.py +20 -0
  1296. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_restore_completes.py +15 -0
  1297. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_cluster.py +11 -0
  1298. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_cluster_snapshot.py +11 -0
  1299. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_instance.py +11 -0
  1300. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_cluster.py +11 -0
  1301. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_cluster_snapshot.py +11 -0
  1302. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_instance.py +11 -0
  1303. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/failover_db_cluster.py +15 -0
  1304. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_deletion_completes.py +15 -0
  1305. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_finishes_creating.py +15 -0
  1306. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_modification_completes.py +20 -0
  1307. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/modify_db_cluster.py +11 -0
  1308. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/modify_db_instance.py +11 -0
  1309. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/restore_db_cluster_from_snapshot.py +11 -0
  1310. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/snapshot_deletion_completes.py +15 -0
  1311. local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/snapshot_finishes_creating.py +15 -0
  1312. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/__init__.py +0 -0
  1313. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/client.py +31 -0
  1314. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/conftest.py +9 -0
  1315. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/constants.py +7 -0
  1316. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/__init__.py +26 -0
  1317. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_already_exists.py +12 -0
  1318. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_does_not_exist.py +10 -0
  1319. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_exists.py +12 -0
  1320. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_active_given.py +10 -0
  1321. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_already_deleted.py +20 -0
  1322. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_deleted_given.py +11 -0
  1323. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_not_deleted_given.py +11 -0
  1324. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_not_already_exist.py +10 -0
  1325. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_already_exists.py +12 -0
  1326. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_available_given.py +11 -0
  1327. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_modifying_given.py +12 -0
  1328. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_not_available_given.py +11 -0
  1329. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_not_modifying_given.py +11 -0
  1330. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_not_already_exist.py +10 -0
  1331. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_busid_in_bus_status.py +12 -0
  1332. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_busid_not_in_bus_status.py +10 -0
  1333. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cid_in_cluster_status.py +12 -0
  1334. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cid_not_in_cluster_status.py +10 -0
  1335. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_has_been_created.py +11 -0
  1336. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_completed.py +12 -0
  1337. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_delivered.py +16 -0
  1338. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_delivery_failed.py +15 -0
  1339. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_event_bus_has_been_created.py +12 -0
  1340. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_event_bus_has_been_deleted.py +14 -0
  1341. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/event_slot_available.py +10 -0
  1342. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/no_event_slot_available.py +10 -0
  1343. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/test_scenarios.py +27 -0
  1344. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/__init__.py +8 -0
  1345. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/_inv_docdb_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  1346. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/_inv_docdb_events_every_delivered_event_references_a_cluster_that_exists.py +10 -0
  1347. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/bus_is_active_then.py +16 -0
  1348. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/bus_is_deleted_then.py +10 -0
  1349. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_is_available_again_then.py +11 -0
  1350. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_is_available_then.py +11 -0
  1351. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_modifying_and_event_delivered.py +11 -0
  1352. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_modifying_but_no_event.py +11 -0
  1353. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/__init__.py +6 -0
  1354. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modification_completes.py +11 -0
  1355. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modify_event_delivered.py +13 -0
  1356. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modify_event_fails.py +13 -0
  1357. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/create_db_cluster.py +11 -0
  1358. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/create_event_bus.py +18 -0
  1359. local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/delete_event_bus.py +18 -0
  1360. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/__init__.py +0 -0
  1361. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/client.py +102 -0
  1362. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/conftest.py +9 -0
  1363. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/constants.py +18 -0
  1364. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/__init__.py +68 -0
  1365. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/condition_is_not_satisfied.py +10 -0
  1366. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/condition_is_satisfied.py +12 -0
  1367. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_all_items_scanned.py +12 -0
  1368. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_all_tables_listed.py +12 -0
  1369. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_committed_transaction_cleared.py +11 -0
  1370. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_existing_item_has_been_deleted.py +17 -0
  1371. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_existing_item_has_been_updated.py +13 -0
  1372. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_gsi_caught_up.py +11 -0
  1373. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_conditionally_written.py +12 -0
  1374. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_has_been_read.py +13 -0
  1375. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_has_been_written.py +13 -0
  1376. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_items_have_been_queried.py +13 -0
  1377. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_in_gsi_pending.py +11 -0
  1378. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_in_table_status.py +12 -0
  1379. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_not_in_table_status.py +10 -0
  1380. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_pending_transaction_resolved.py +11 -0
  1381. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_read_throttling_toggled.py +11 -0
  1382. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_rolled_back_transaction_cleared.py +11 -0
  1383. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_deletion_completed.py +14 -0
  1384. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_created.py +12 -0
  1385. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_deleted.py +14 -0
  1386. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_described.py +12 -0
  1387. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_finished_creating.py +12 -0
  1388. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_committed.py +11 -0
  1389. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_pending.py +11 -0
  1390. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_rolled_back.py +11 -0
  1391. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transactional_write_initiated.py +12 -0
  1392. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_write_throttling_toggled.py +11 -0
  1393. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_did_not_exist.py +10 -0
  1394. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_existed.py +14 -0
  1395. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_exists.py +11 -0
  1396. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_does_not_exist.py +10 -0
  1397. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_does_not_exist_in_table.py +10 -0
  1398. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_exists.py +12 -0
  1399. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_exists_in_table.py +12 -0
  1400. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_is_not_present.py +19 -0
  1401. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_is_present.py +12 -0
  1402. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/items_with_different_attribute_values.py +14 -0
  1403. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/no_transaction_in_progress.py +10 -0
  1404. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/no_transaction_is_pending.py +10 -0
  1405. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/reads_not_throttled.py +10 -0
  1406. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/reads_throttled.py +11 -0
  1407. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_already_exists.py +12 -0
  1408. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_does_not_exist.py +10 -0
  1409. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_does_not_have_pending_gsi_propagation.py +10 -0
  1410. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_exists.py +12 -0
  1411. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_has_pending_gsi_propagation.py +11 -0
  1412. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_active_given.py +10 -0
  1413. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_creating_given.py +11 -0
  1414. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_deleting_given.py +11 -0
  1415. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_active_given.py +17 -0
  1416. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_creating_given.py +10 -0
  1417. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_deleting_given.py +10 -0
  1418. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_not_already_exist.py +10 -0
  1419. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/there_are_no_writes_pending_gsi_propagation.py +10 -0
  1420. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/there_are_writes_pending_gsi_propagation.py +11 -0
  1421. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_in_progress.py +11 -0
  1422. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_committed_given.py +11 -0
  1423. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_not_committed.py +10 -0
  1424. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_not_rolled_back.py +10 -0
  1425. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_pending_given.py +11 -0
  1426. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_rolled_back_given.py +11 -0
  1427. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_does_not_exist.py +10 -0
  1428. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_exists.py +12 -0
  1429. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_is_active.py +10 -0
  1430. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_is_not_active.py +20 -0
  1431. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/writes_not_throttled.py +10 -0
  1432. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/writes_throttled.py +11 -0
  1433. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/test_scenarios.py +27 -0
  1434. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/__init__.py +43 -0
  1435. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/_inv_dynamodb_every_table_has_a_valid_status_creating_active_or_deleted.py +10 -0
  1436. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/all_items_returned_then.py +14 -0
  1437. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/all_tables_listed_then.py +14 -0
  1438. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/deleted_tables_not_target_of_pending_transaction.py +10 -0
  1439. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/every_table_has_valid_status.py +19 -0
  1440. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_is_consistent_with_table.py +11 -0
  1441. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_pending_write_count_non_negative.py +10 -0
  1442. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_query_only_when_table_active.py +10 -0
  1443. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_deleted_or_unchanged_then.py +14 -0
  1444. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_does_not_exist_then.py +14 -0
  1445. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_exists_and_gsi_pending_then.py +17 -0
  1446. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_is_deleted_then.py +14 -0
  1447. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_is_updated_then.py +18 -0
  1448. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_updated_or_unchanged_then.py +14 -0
  1449. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_value_returned_then.py +14 -0
  1450. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_written_if_condition_holds_then.py +19 -0
  1451. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/items_only_in_non_deleted_tables.py +10 -0
  1452. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/list_of_tables_returned_then.py +14 -0
  1453. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/matching_items_returned_from_gsi.py +16 -0
  1454. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/matching_items_returned_then.py +14 -0
  1455. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/only_matching_items_returned_then.py +16 -0
  1456. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/pending_transaction_references_existing_table.py +10 -0
  1457. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/query_results_contain_item_then.py +19 -0
  1458. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/reads_are_throttled_then.py +11 -0
  1459. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/reads_throttled_or_unthrottled.py +11 -0
  1460. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/scan_results_contain_item_then.py +16 -0
  1461. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_description_returned_then.py +14 -0
  1462. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_enters_deleting_state_then.py +22 -0
  1463. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_active_then.py +17 -0
  1464. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_creating_then.py +19 -0
  1465. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_deleted_status_then.py +17 -0
  1466. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_deleted_then.py +17 -0
  1467. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_marked_deleted_then.py +17 -0
  1468. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_metadata_returned_then.py +14 -0
  1469. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_committed_or_rolled_back_then.py +11 -0
  1470. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_cleared_then.py +11 -0
  1471. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_committed_then.py +10 -0
  1472. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_pending_then.py +11 -0
  1473. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_rolled_back_then.py +11 -0
  1474. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_slot_is_free_then.py +11 -0
  1475. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_status_always_valid.py +10 -0
  1476. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/writes_are_throttled_then.py +11 -0
  1477. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/writes_throttled_or_unthrottled.py +11 -0
  1478. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/__init__.py +31 -0
  1479. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/activate_table.py +41 -0
  1480. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/clear_committed_transaction.py +11 -0
  1481. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/clear_rolled_back_transaction.py +11 -0
  1482. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/commit_transaction.py +11 -0
  1483. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/conditional_put_item.py +22 -0
  1484. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/conditional_write_item.py +22 -0
  1485. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/create_table.py +23 -0
  1486. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_existing_item.py +33 -0
  1487. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_item.py +20 -0
  1488. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_table.py +18 -0
  1489. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/describe_table.py +18 -0
  1490. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/get_item.py +25 -0
  1491. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/gsi_catches_up.py +11 -0
  1492. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/list_tables.py +16 -0
  1493. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/propagate_gsi.py +11 -0
  1494. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/put_item.py +21 -0
  1495. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_gsi.py +22 -0
  1496. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_items_by_key.py +23 -0
  1497. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_table.py +23 -0
  1498. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/resolve_pending_transaction.py +11 -0
  1499. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/rollback_transaction.py +11 -0
  1500. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/scan_table.py +18 -0
  1501. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/scan_table_with_filter.py +19 -0
  1502. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/set_throttle_reads.py +11 -0
  1503. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/set_throttle_writes.py +11 -0
  1504. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/table_deletion_completes.py +42 -0
  1505. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/toggle_read_throttling.py +11 -0
  1506. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/toggle_write_throttling.py +11 -0
  1507. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/transact_write_items.py +30 -0
  1508. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/update_existing_item.py +37 -0
  1509. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/update_item.py +24 -0
  1510. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/__init__.py +0 -0
  1511. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/client.py +56 -0
  1512. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/conftest.py +9 -0
  1513. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/constants.py +17 -0
  1514. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/__init__.py +43 -0
  1515. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_available_record_exists.py +19 -0
  1516. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_eid_in_esm_status.py +14 -0
  1517. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_eid_not_in_esm_status.py +10 -0
  1518. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_already_exists.py +25 -0
  1519. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_does_not_exist.py +11 -0
  1520. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_exists.py +14 -0
  1521. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_has_been_created.py +14 -0
  1522. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_is_enabled.py +14 -0
  1523. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_is_not_enabled.py +12 -0
  1524. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_not_already_exist.py +10 -0
  1525. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_polled_and_invoked.py +16 -0
  1526. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_fid_not_in_func_status.py +10 -0
  1527. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_already_exists.py +12 -0
  1528. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_does_not_exist.py +12 -0
  1529. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_exists.py +12 -0
  1530. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_has_been_deployed.py +12 -0
  1531. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_is_active_given.py +10 -0
  1532. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_is_not_active_given.py +23 -0
  1533. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_not_already_exist.py +10 -0
  1534. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_iid_in_inv_status.py +11 -0
  1535. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_failed.py +11 -0
  1536. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_is_in_progress.py +12 -0
  1537. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_slot_available.py +11 -0
  1538. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_success.py +11 -0
  1539. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_mapped_function_is_active.py +14 -0
  1540. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_mapped_function_is_not_active.py +12 -0
  1541. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_available_record.py +12 -0
  1542. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_invocation_is_in_progress.py +10 -0
  1543. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_invocation_slot_available.py +10 -0
  1544. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_record_slot_available.py +10 -0
  1545. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_record_slot_available.py +10 -0
  1546. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_stream_record_produced.py +16 -0
  1547. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_already_exists.py +12 -0
  1548. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_does_not_exist.py +10 -0
  1549. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_exists.py +12 -0
  1550. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_been_created_with_stream.py +12 -0
  1551. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_no_stream.py +10 -0
  1552. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_stream.py +17 -0
  1553. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_is_active_given.py +10 -0
  1554. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_is_not_active_given.py +20 -0
  1555. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_not_already_exist.py +10 -0
  1556. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_tid_in_table_status.py +12 -0
  1557. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_tid_not_in_table_status.py +10 -0
  1558. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/test_scenarios.py +27 -0
  1559. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/__init__.py +10 -0
  1560. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/change_record_available.py +13 -0
  1561. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/dynamodb_lambda_function_is_active_then.py +17 -0
  1562. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/esm_is_enabled.py +26 -0
  1563. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_enabled_esm_references_active_table.py +12 -0
  1564. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_in_progress_initiated_by_enabled_esm.py +12 -0
  1565. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_in_progress_references_active_function.py +12 -0
  1566. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invocation_failed_record_available.py +16 -0
  1567. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invocation_success_record_processed.py +14 -0
  1568. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/record_being_processed.py +18 -0
  1569. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/table_is_active_stream_ready.py +19 -0
  1570. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/__init__.py +7 -0
  1571. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/create_dynamodb_table_with_stream.py +28 -0
  1572. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/create_event_source_mapping.py +22 -0
  1573. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/deploy_lambda_function_dynamodb.py +25 -0
  1574. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/esm_polls_and_invokes.py +33 -0
  1575. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/lambda_invocation_fails.py +14 -0
  1576. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/lambda_invocation_succeeds.py +14 -0
  1577. local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/table_change_produces_record.py +25 -0
  1578. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/__init__.py +0 -0
  1579. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/client.py +60 -0
  1580. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/conftest.py +9 -0
  1581. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/constants.py +13 -0
  1582. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/__init__.py +114 -0
  1583. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/automatic_failover_enabled.py +11 -0
  1584. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/automatic_failover_not_enabled.py +10 -0
  1585. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_in_cluster_status.py +12 -0
  1586. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_in_tag_exists.py +12 -0
  1587. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_not_in_cluster_status.py +10 -0
  1588. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_already_exists.py +12 -0
  1589. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_does_not_exist.py +10 -0
  1590. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_does_not_use_redis_engine.py +12 -0
  1591. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_exists.py +12 -0
  1592. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_already_primary.py +11 -0
  1593. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_available_given.py +10 -0
  1594. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_creating_given.py +13 -0
  1595. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_deleting_given.py +11 -0
  1596. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_modifying_given.py +17 -0
  1597. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_already_primary.py +11 -0
  1598. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_available_given.py +13 -0
  1599. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_creating_given.py +10 -0
  1600. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_deleting_given.py +10 -0
  1601. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_modifying_given.py +10 -0
  1602. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_part_of_rg.py +10 -0
  1603. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_part_of_this_rg.py +10 -0
  1604. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_restoring_given.py +10 -0
  1605. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_snapshotting_given.py +10 -0
  1606. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_part_of_rg.py +11 -0
  1607. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_part_of_this_rg.py +11 -0
  1608. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_restoring_given.py +11 -0
  1609. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_snapshotting_given.py +11 -0
  1610. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_standalone.py +12 -0
  1611. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_not_already_exist.py +10 -0
  1612. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_slot_available.py +10 -0
  1613. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_slot_available_for_primary.py +10 -0
  1614. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_uses_redis_engine.py +10 -0
  1615. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_automatic_failover_promoted.py +11 -0
  1616. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_config_modified.py +11 -0
  1617. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_created_from_snapshot.py +11 -0
  1618. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_deletion_completed.py +12 -0
  1619. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_modification_completed.py +13 -0
  1620. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_restore_completed.py +11 -0
  1621. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_memcached_cluster_has_been_created.py +12 -0
  1622. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_pg_has_been_created.py +12 -0
  1623. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_pg_has_been_deleted.py +11 -0
  1624. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_redis_cluster_has_been_created.py +12 -0
  1625. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_replica_added.py +11 -0
  1626. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_replica_creation_completed.py +14 -0
  1627. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_config_modified.py +11 -0
  1628. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_deletion_completed.py +12 -0
  1629. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_finished_creating.py +12 -0
  1630. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_has_been_created.py +12 -0
  1631. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_has_been_deleted.py +11 -0
  1632. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_modification_completed.py +13 -0
  1633. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_sg_has_been_created.py +12 -0
  1634. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_sg_has_been_deleted.py +11 -0
  1635. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_created.py +11 -0
  1636. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_deletion_completed.py +13 -0
  1637. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_finished_creating.py +13 -0
  1638. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_has_been_deleted.py +11 -0
  1639. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_standalone_cluster_finished_creating.py +12 -0
  1640. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_standalone_cluster_has_been_deleted.py +11 -0
  1641. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_tags_added.py +11 -0
  1642. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_tags_removed.py +11 -0
  1643. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_cluster_slot_available.py +10 -0
  1644. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_cluster_slot_available_for_primary.py +10 -0
  1645. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_replica_cluster_exists.py +10 -0
  1646. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_already_exists.py +12 -0
  1647. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_does_not_exist.py +10 -0
  1648. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_exists.py +12 -0
  1649. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_is_not_present.py +12 -0
  1650. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_is_present.py +10 -0
  1651. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_not_already_exist.py +10 -0
  1652. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pgid_in_pg_exists.py +12 -0
  1653. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pgid_not_in_pg_exists.py +10 -0
  1654. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/replica_cluster_exists.py +11 -0
  1655. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_does_not_exist.py +10 -0
  1656. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_does_not_have_tags.py +10 -0
  1657. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_exists.py +12 -0
  1658. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_has_tags.py +10 -0
  1659. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_already_exists.py +12 -0
  1660. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_does_not_exist.py +10 -0
  1661. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_exists.py +12 -0
  1662. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_available_given.py +10 -0
  1663. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_creating_given.py +13 -0
  1664. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_deleting_given.py +11 -0
  1665. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_modifying_given.py +17 -0
  1666. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_available_given.py +13 -0
  1667. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_creating_given.py +10 -0
  1668. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_deleting_given.py +10 -0
  1669. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_modifying_given.py +10 -0
  1670. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_not_already_exist.py +10 -0
  1671. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rgid_in_rg_status.py +12 -0
  1672. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rgid_not_in_rg_status.py +10 -0
  1673. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_already_exists.py +12 -0
  1674. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_does_not_exist.py +10 -0
  1675. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_exists.py +12 -0
  1676. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_is_not_present.py +12 -0
  1677. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_is_present.py +10 -0
  1678. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_not_already_exist.py +10 -0
  1679. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sgid_in_sg_exists.py +12 -0
  1680. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sgid_not_in_sg_exists.py +10 -0
  1681. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sid_in_snapshot_status.py +13 -0
  1682. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_belongs_to_cluster.py +10 -0
  1683. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_does_not_belong_to_cluster.py +11 -0
  1684. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_does_not_exist.py +10 -0
  1685. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_exists.py +13 -0
  1686. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_available_given.py +10 -0
  1687. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_creating_given.py +11 -0
  1688. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_deleting_given.py +11 -0
  1689. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_available_given.py +11 -0
  1690. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_creating_given.py +10 -0
  1691. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_deleting_given.py +10 -0
  1692. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_slot_available.py +10 -0
  1693. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_slot_not_available.py +10 -0
  1694. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/system_is_initialized.py +10 -0
  1695. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/target_cluster_slot_available.py +10 -0
  1696. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/target_cluster_slot_not_available.py +10 -0
  1697. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/test_scenarios.py +27 -0
  1698. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/__init__.py +33 -0
  1699. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/active_resources_have_tags.py +10 -0
  1700. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/available_rg_has_primary.py +12 -0
  1701. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_available_then.py +16 -0
  1702. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_creating_memcached_then.py +16 -0
  1703. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_creating_then.py +21 -0
  1704. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_deleted_then.py +14 -0
  1705. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_deleting_then.py +14 -0
  1706. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_modifying_then.py +18 -0
  1707. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_restoring_then.py +18 -0
  1708. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_returns_to_available_then.py +11 -0
  1709. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/memcached_clusters_not_in_rg.py +12 -0
  1710. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/new_cluster_creating_associated_with_rg_then.py +13 -0
  1711. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/operation_is_rejected_then.py +15 -0
  1712. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/parameter_group_exists_then.py +20 -0
  1713. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/parameter_group_no_longer_exists_then.py +14 -0
  1714. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/replica_cluster_is_available_then.py +11 -0
  1715. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/resource_remains_tagged_then.py +11 -0
  1716. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/resource_tag_state_unchanged_then.py +10 -0
  1717. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_and_clusters_deleting_then.py +14 -0
  1718. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_and_primary_available_then.py +13 -0
  1719. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_has_new_primary_then.py +11 -0
  1720. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_creating_then.py +20 -0
  1721. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_deleted_then.py +14 -0
  1722. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_modifying_then.py +20 -0
  1723. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_returns_to_available_then.py +11 -0
  1724. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_available_cluster_returns_then.py +18 -0
  1725. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_creating_cluster_snapshotting_then.py +18 -0
  1726. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_is_deleted_then.py +14 -0
  1727. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_is_deleting_then.py +14 -0
  1728. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshots_reference_redis_clusters.py +10 -0
  1729. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshotting_cluster_has_snapshot.py +12 -0
  1730. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/subnet_group_exists_then.py +20 -0
  1731. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/subnet_group_no_longer_exists_then.py +14 -0
  1732. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/__init__.py +28 -0
  1733. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/add_replica_to_rg.py +11 -0
  1734. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/add_tags_to_resource.py +11 -0
  1735. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/automatic_failover_rg.py +11 -0
  1736. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_deletion_completes.py +15 -0
  1737. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_finishes_creating.py +15 -0
  1738. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_modification_completes.py +20 -0
  1739. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_restore_completes.py +20 -0
  1740. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_cluster_from_snapshot.py +26 -0
  1741. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_memcached_cluster.py +25 -0
  1742. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_parameter_group.py +24 -0
  1743. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_redis_cluster.py +25 -0
  1744. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_replication_group.py +25 -0
  1745. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_snapshot_from_cluster.py +22 -0
  1746. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_subnet_group.py +24 -0
  1747. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_cache_cluster.py +22 -0
  1748. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_parameter_group.py +22 -0
  1749. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_replication_group.py +22 -0
  1750. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_snapshot.py +22 -0
  1751. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_subnet_group.py +22 -0
  1752. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/modify_cache_cluster.py +22 -0
  1753. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/modify_replication_group.py +21 -0
  1754. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/remove_tags_from_resource.py +11 -0
  1755. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/replica_creation_completes.py +17 -0
  1756. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_deletion_completes.py +17 -0
  1757. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_finishes_creating.py +17 -0
  1758. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_modification_completes.py +13 -0
  1759. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/snapshot_deletion_completes.py +20 -0
  1760. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/snapshot_finishes_creating.py +20 -0
  1761. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/__init__.py +0 -0
  1762. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/client.py +29 -0
  1763. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/conftest.py +9 -0
  1764. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/constants.py +11 -0
  1765. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/__init__.py +35 -0
  1766. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cid_in_cluster_status.py +12 -0
  1767. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cid_not_in_cluster_status.py +10 -0
  1768. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_already_exists.py +12 -0
  1769. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_already_has_sns_notification.py +11 -0
  1770. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_exists_and_is_available.py +12 -0
  1771. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_has_no_sns_notification.py +10 -0
  1772. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_has_sns_notification.py +11 -0
  1773. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_is_modifying_given.py +12 -0
  1774. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_is_not_modifying_given.py +11 -0
  1775. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_not_already_exist.py +10 -0
  1776. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_not_exist_or_not_available.py +10 -0
  1777. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_created.py +12 -0
  1778. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_event_notification_failed.py +16 -0
  1779. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_event_published.py +16 -0
  1780. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_modification_completed.py +12 -0
  1781. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_modification_event_failed.py +11 -0
  1782. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_modification_event_sent.py +13 -0
  1783. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_notification_configured.py +11 -0
  1784. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_notification_published.py +11 -0
  1785. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_topic_has_been_created.py +17 -0
  1786. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_topic_has_been_deleted.py +10 -0
  1787. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/message_slot_available.py +10 -0
  1788. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/no_message_slot_available.py +10 -0
  1789. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/tid_in_topic_status.py +17 -0
  1790. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/tid_not_in_topic_status.py +10 -0
  1791. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_already_exists.py +12 -0
  1792. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_does_not_exist.py +11 -0
  1793. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_exists.py +12 -0
  1794. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_exists_and_is_active.py +12 -0
  1795. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_active_given.py +10 -0
  1796. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_already_deleted.py +20 -0
  1797. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_deleted_given.py +11 -0
  1798. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_not_deleted_given.py +11 -0
  1799. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_not_already_exist.py +10 -0
  1800. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_not_exist_or_not_active.py +13 -0
  1801. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/test_scenarios.py +27 -0
  1802. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/__init__.py +9 -0
  1803. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/_inv_elasticache_sns_every_published_notification_references_a_cluster_that_exis.py +10 -0
  1804. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/_inv_elasticache_sns_every_published_notification_references_a_topic_that_exists.py +10 -0
  1805. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_available_no_sns.py +11 -0
  1806. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_is_available_again_then.py +11 -0
  1807. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_modifying_and_notification_published.py +15 -0
  1808. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_modifying_but_no_notification.py +11 -0
  1809. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_will_publish_lifecycle_events.py +11 -0
  1810. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/topic_is_active_then.py +16 -0
  1811. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/topic_is_deleted_then.py +10 -0
  1812. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/__init__.py +7 -0
  1813. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_event_notification_delivered.py +19 -0
  1814. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_event_notification_fails.py +15 -0
  1815. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_modification_completes.py +11 -0
  1816. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/configure_notification.py +11 -0
  1817. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/create_cache_cluster.py +11 -0
  1818. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/create_topic.py +19 -0
  1819. local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/delete_topic.py +19 -0
  1820. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/__init__.py +0 -0
  1821. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/client.py +30 -0
  1822. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/conftest.py +9 -0
  1823. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/constants.py +7 -0
  1824. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/__init__.py +50 -0
  1825. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/did_in_domain_status.py +12 -0
  1826. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/did_not_in_domain_status.py +10 -0
  1827. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_already_exists.py +12 -0
  1828. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_does_not_exist.py +10 -0
  1829. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_exists.py +12 -0
  1830. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_has_no_pending_config_change.py +11 -0
  1831. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_has_pending_config_change.py +12 -0
  1832. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_in_domain_status.py +12 -0
  1833. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_active_given.py +10 -0
  1834. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_being_deleted_given.py +15 -0
  1835. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_creating_given.py +18 -0
  1836. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_deleted_given.py +11 -0
  1837. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_deleting_given.py +15 -0
  1838. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_active_given.py +18 -0
  1839. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_being_deleted_given.py +10 -0
  1840. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_creating_given.py +10 -0
  1841. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_deleted_given.py +10 -0
  1842. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_deleting_given.py +10 -0
  1843. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_processing_given.py +10 -0
  1844. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_processing_given.py +12 -0
  1845. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_not_already_exist.py +10 -0
  1846. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_not_in_domain_status.py +10 -0
  1847. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_config_update_begun.py +12 -0
  1848. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_config_update_completed.py +13 -0
  1849. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_created_and_available.py +12 -0
  1850. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_finished_creating.py +12 -0
  1851. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_failed_to_write.py +19 -0
  1852. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_indexed_document.py +17 -0
  1853. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_invoked.py +17 -0
  1854. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_document_indexed_in_active_index.py +11 -0
  1855. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_config_update_requested.py +20 -0
  1856. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_created.py +12 -0
  1857. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_finished_deleting.py +12 -0
  1858. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_finished_processing_config_update.py +11 -0
  1859. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_index_created_in_active_domain.py +11 -0
  1860. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_index_deleted_from_active_domain.py +11 -0
  1861. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_node_failure.py +11 -0
  1862. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_replica_sync_lag.py +11 -0
  1863. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_shards_reallocated.py +11 -0
  1864. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_tags_added_to_domain.py +17 -0
  1865. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_tags_removed_from_domain.py +21 -0
  1866. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_already_exists.py +11 -0
  1867. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_does_not_exist.py +10 -0
  1868. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_exists.py +11 -0
  1869. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_is_active_given.py +11 -0
  1870. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_is_not_active_given.py +11 -0
  1871. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_not_already_exist.py +10 -0
  1872. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/system_is_initialized.py +10 -0
  1873. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/tag_key_does_not_exist.py +10 -0
  1874. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/tag_key_exists.py +11 -0
  1875. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/test_scenarios.py +27 -0
  1876. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/__init__.py +18 -0
  1877. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/active_index_belongs_to_non_deleted_domain.py +12 -0
  1878. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/active_tag_belongs_to_non_deleted_domain.py +12 -0
  1879. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/document_count_increases_then.py +11 -0
  1880. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_enters_processing_recovering_then.py +11 -0
  1881. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_active_then.py +16 -0
  1882. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_active_with_new_config_then.py +16 -0
  1883. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_creating_then.py +21 -0
  1884. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_deleted_then.py +14 -0
  1885. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_deleting_then.py +14 -0
  1886. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_processing_then.py +16 -0
  1887. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/index_is_active_then.py +13 -0
  1888. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/index_is_deleted_then.py +11 -0
  1889. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/operation_is_rejected_then.py +15 -0
  1890. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/pending_config_only_on_processing_domain.py +10 -0
  1891. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/replica_catches_up_then.py +13 -0
  1892. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/shard_layout_updated_then.py +11 -0
  1893. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/tags_associated_then.py +12 -0
  1894. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/tags_removed_then.py +14 -0
  1895. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/__init__.py +14 -0
  1896. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/add_tags.py +23 -0
  1897. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/create_elasticsearch_domain.py +20 -0
  1898. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/create_index.py +11 -0
  1899. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/delete_elasticsearch_domain.py +20 -0
  1900. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/delete_index.py +11 -0
  1901. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_creating.py +15 -0
  1902. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_deleting.py +15 -0
  1903. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_processing.py +20 -0
  1904. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/index_document.py +11 -0
  1905. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/node_failure.py +11 -0
  1906. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/remove_tags.py +22 -0
  1907. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/replica_sync_lag.py +11 -0
  1908. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/shard_reallocation.py +11 -0
  1909. local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/update_elasticsearch_domain_config.py +20 -0
  1910. local_web_services_python_sdk-0.19.0/tests/e2e/events/__init__.py +0 -0
  1911. local_web_services_python_sdk-0.19.0/tests/e2e/events/client.py +65 -0
  1912. local_web_services_python_sdk-0.19.0/tests/e2e/events/conftest.py +9 -0
  1913. local_web_services_python_sdk-0.19.0/tests/e2e/events/constants.py +23 -0
  1914. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/__init__.py +58 -0
  1915. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_already_exists.py +12 -0
  1916. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_does_not_exist.py +10 -0
  1917. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_exists.py +12 -0
  1918. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_has_no_rules.py +10 -0
  1919. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_has_rules.py +13 -0
  1920. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_active_given.py +10 -0
  1921. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_default.py +10 -0
  1922. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_not_active_given.py +18 -0
  1923. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_not_default.py +10 -0
  1924. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_name_in_bus_status.py +12 -0
  1925. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_not_already_exist.py +10 -0
  1926. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/dlq_is_empty.py +11 -0
  1927. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/dlq_not_empty.py +11 -0
  1928. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_all_buses_have_been_listed.py +10 -0
  1929. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_all_rules_have_been_listed.py +12 -0
  1930. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_created.py +12 -0
  1931. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_deleted.py +10 -0
  1932. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_described.py +12 -0
  1933. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_dlq_entry_retried_or_discarded.py +11 -0
  1934. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_dlq_not_empty.py +11 -0
  1935. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_have_been_published.py +25 -0
  1936. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_created.py +12 -0
  1937. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_deleted.py +10 -0
  1938. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_described.py +12 -0
  1939. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_disabled.py +17 -0
  1940. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_enabled.py +17 -0
  1941. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_for_rule_have_been_listed.py +12 -0
  1942. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_have_been_added.py +12 -0
  1943. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_have_been_removed.py +10 -0
  1944. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_in_bus_status.py +12 -0
  1945. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_is_not_default.py +10 -0
  1946. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_not_in_bus_status.py +10 -0
  1947. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/no_rule_associated_with_bus.py +19 -0
  1948. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/no_target_associated_with_rule.py +19 -0
  1949. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_already_exists.py +12 -0
  1950. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_associated_with_bus.py +12 -0
  1951. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_does_not_exist.py +10 -0
  1952. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_exists.py +12 -0
  1953. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_has_active_targets.py +13 -0
  1954. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_has_no_active_targets.py +10 -0
  1955. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_already_deleted_given.py +14 -0
  1956. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_deleted_given.py +14 -0
  1957. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_disabled_given.py +13 -0
  1958. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_enabled_given.py +10 -0
  1959. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_deleted_given.py +10 -0
  1960. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_disabled_given.py +10 -0
  1961. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_enabled_given.py +19 -0
  1962. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_name_in_rule_status.py +12 -0
  1963. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_name_not_in_rule_status.py +10 -0
  1964. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_not_already_deleted_given.py +10 -0
  1965. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_not_already_exist.py +10 -0
  1966. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rules_event_bus_does_not_match.py +15 -0
  1967. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rules_event_bus_matches.py +10 -0
  1968. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_associated_with_rule.py +12 -0
  1969. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_association_active.py +10 -0
  1970. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_association_not_active.py +15 -0
  1971. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_is_associated_with_rule.py +12 -0
  1972. local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_not_associated_with_rule.py +10 -0
  1973. local_web_services_python_sdk-0.19.0/tests/e2e/events/test_scenarios.py +27 -0
  1974. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/__init__.py +25 -0
  1975. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/_inv_events_every_event_bus_has_a_valid_status_active_or_deleted.py +10 -0
  1976. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/_inv_events_every_rule_has_a_valid_pattern_type_event_pattern_or_schedule.py +10 -0
  1977. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/_inv_events_every_rule_has_a_valid_status_enabled_disabled_or_deleted.py +10 -0
  1978. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/default_bus_cannot_be_deleted.py +16 -0
  1979. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/dlq_never_exceeds_capacity.py +10 -0
  1980. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/entry_removed_from_dlq.py +11 -0
  1981. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_details_returned.py +13 -0
  1982. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_is_active_then.py +16 -0
  1983. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_is_deleted_then.py +16 -0
  1984. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_event_bus_has_valid_status.py +22 -0
  1985. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_has_valid_pattern_type.py +14 -0
  1986. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_has_valid_status.py +27 -0
  1987. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_references_existing_bus.py +14 -0
  1988. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_event_buses_returned.py +11 -0
  1989. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_rules_returned.py +11 -0
  1990. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_targets_returned.py +13 -0
  1991. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/matching_rules_route_events.py +12 -0
  1992. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/no_enabled_rule_references_deleted_bus.py +10 -0
  1993. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_can_only_be_deleted_without_targets.py +14 -0
  1994. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_details_returned.py +11 -0
  1995. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_deleted_then.py +10 -0
  1996. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_disabled_then.py +17 -0
  1997. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_enabled_then.py +17 -0
  1998. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/targets_associated_with_rule.py +10 -0
  1999. local_web_services_python_sdk-0.19.0/tests/e2e/events/then/targets_disassociated_from_rule.py +10 -0
  2000. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/__init__.py +15 -0
  2001. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/create_event_bus.py +19 -0
  2002. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/delete_event_bus.py +19 -0
  2003. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/delete_rule.py +19 -0
  2004. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/describe_event_bus.py +19 -0
  2005. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/describe_rule.py +19 -0
  2006. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/disable_rule.py +19 -0
  2007. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/enable_rule.py +19 -0
  2008. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_event_buses.py +17 -0
  2009. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_rules.py +19 -0
  2010. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_targets_by_rule.py +21 -0
  2011. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_events.py +28 -0
  2012. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_rule.py +24 -0
  2013. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_targets.py +23 -0
  2014. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/remove_targets.py +21 -0
  2015. local_web_services_python_sdk-0.19.0/tests/e2e/events/when/retry_dead_letter.py +11 -0
  2016. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/__init__.py +0 -0
  2017. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/client.py +40 -0
  2018. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/conftest.py +9 -0
  2019. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/constants.py +19 -0
  2020. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/__init__.py +44 -0
  2021. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/a_rule_is_enabled.py +13 -0
  2022. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_already_exists.py +12 -0
  2023. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_exists.py +12 -0
  2024. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_exists_and_is_active.py +12 -0
  2025. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_not_already_exist.py +10 -0
  2026. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_not_exist_or_not_active.py +10 -0
  2027. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/event_slot_available.py +10 -0
  2028. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_bus_has_been_created.py +12 -0
  2029. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_busid_in_bus_status.py +12 -0
  2030. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_busid_not_in_bus_status.py +10 -0
  2031. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_event_matched_and_written.py +16 -0
  2032. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_event_matched_write_failed.py +16 -0
  2033. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rid_in_rule_status.py +12 -0
  2034. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_created_targeting_table.py +12 -0
  2035. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_disabled.py +19 -0
  2036. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_enabled.py +19 -0
  2037. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_table_deletion_initiated.py +10 -0
  2038. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_table_has_been_created.py +12 -0
  2039. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_tid_in_table_status.py +12 -0
  2040. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_tid_not_in_table_status.py +10 -0
  2041. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/item_slot_available.py +10 -0
  2042. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_event_slot_available.py +10 -0
  2043. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_item_slot_available.py +10 -0
  2044. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_rule_is_enabled.py +10 -0
  2045. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_already_exists.py +12 -0
  2046. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_does_not_exist.py +10 -0
  2047. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_exists.py +13 -0
  2048. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_already_disabled.py +15 -0
  2049. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_already_enabled.py +10 -0
  2050. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_disabled_given.py +15 -0
  2051. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_enabled_given.py +10 -0
  2052. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_not_already_exist.py +10 -0
  2053. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_already_exists.py +12 -0
  2054. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_does_not_exist.py +10 -0
  2055. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_exists.py +12 -0
  2056. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_exists_and_is_active.py +12 -0
  2057. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_is_active_given.py +10 -0
  2058. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_is_already_deleting.py +21 -0
  2059. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_not_already_exist.py +10 -0
  2060. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_not_exist_or_not_active.py +12 -0
  2061. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_active.py +10 -0
  2062. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_deleting.py +21 -0
  2063. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_not_active.py +10 -0
  2064. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_not_deleting.py +10 -0
  2065. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/test_scenarios.py +27 -0
  2066. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/__init__.py +10 -0
  2067. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/_inv_events_dynamodb_every_existing_item_references_a_table_that_exists.py +10 -0
  2068. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/_inv_events_dynamodb_every_matched_event_references_a_rule_that_exists.py +10 -0
  2069. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/bus_is_active_then.py +16 -0
  2070. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/event_matched_but_no_item_written.py +11 -0
  2071. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/item_exists_and_event_matched.py +13 -0
  2072. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_disabled_with_dynamo_target.py +12 -0
  2073. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_is_disabled_then.py +17 -0
  2074. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_is_enabled_then.py +17 -0
  2075. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/table_is_active_then.py +16 -0
  2076. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/table_is_deleting_then.py +10 -0
  2077. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/__init__.py +8 -0
  2078. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_dynamo_table.py +23 -0
  2079. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_event_bus.py +18 -0
  2080. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_rule_targeting_dynamodb.py +30 -0
  2081. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/delete_dynamo_table.py +18 -0
  2082. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/disable_rule.py +20 -0
  2083. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/enable_rule.py +20 -0
  2084. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/event_matches_rule_and_writes_item.py +13 -0
  2085. local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/event_matches_rule_but_table_deleting.py +17 -0
  2086. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/__init__.py +0 -0
  2087. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/client.py +57 -0
  2088. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/conftest.py +9 -0
  2089. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/constants.py +13 -0
  2090. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/__init__.py +34 -0
  2091. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bid_in_bus_status.py +12 -0
  2092. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bid_not_in_bus_status.py +10 -0
  2093. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_already_exists.py +12 -0
  2094. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_does_not_exist.py +10 -0
  2095. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_exists.py +12 -0
  2096. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_is_active_given.py +10 -0
  2097. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_is_not_active_given.py +20 -0
  2098. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_not_already_exist.py +10 -0
  2099. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_enabled_rule_exists.py +22 -0
  2100. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_fid_in_func_status.py +12 -0
  2101. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_fid_not_in_func_status.py +10 -0
  2102. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_already_exists.py +12 -0
  2103. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_does_not_exist.py +11 -0
  2104. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_exists.py +12 -0
  2105. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_is_active_given.py +10 -0
  2106. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_is_not_active_given.py +20 -0
  2107. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_not_already_exist.py +10 -0
  2108. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_iid_in_inv_status.py +22 -0
  2109. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_invocation_is_in_progress.py +22 -0
  2110. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_invocation_slot_available.py +11 -0
  2111. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_enabled_rule.py +11 -0
  2112. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_invocation_is_in_progress.py +10 -0
  2113. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_invocation_slot_available.py +10 -0
  2114. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rid_not_in_rule_status.py +10 -0
  2115. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rule_already_exists.py +20 -0
  2116. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rule_not_already_exist.py +10 -0
  2117. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_bus_created.py +12 -0
  2118. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_event_published_and_invoked.py +21 -0
  2119. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_function_deployed.py +17 -0
  2120. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_invocation_completed.py +17 -0
  2121. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_invocation_failed.py +17 -0
  2122. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_rule_created.py +25 -0
  2123. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_target_function_is_active.py +10 -0
  2124. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_target_function_is_not_active.py +11 -0
  2125. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/test_scenarios.py +27 -0
  2126. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/__init__.py +9 -0
  2127. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/_inv_events_lambda_every_enabled_rule_references_an_active_event_bus.py +10 -0
  2128. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/_inv_events_lambda_every_in_progress_invocation_references_an_active_lambda_func.py +12 -0
  2129. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/_inv_events_lambda_every_in_progress_invocation_was_triggered_by_an_enabled_rule.py +12 -0
  2130. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_bus_is_active_then.py +17 -0
  2131. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_function_is_active_then.py +17 -0
  2132. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_failed.py +16 -0
  2133. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_in_progress_then.py +16 -0
  2134. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_success.py +16 -0
  2135. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/rule_is_enabled.py +19 -0
  2136. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/__init__.py +6 -0
  2137. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/create_event_bus.py +19 -0
  2138. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/create_eventbridge_rule.py +39 -0
  2139. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/deploy_lambda_function_events.py +25 -0
  2140. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/events_lambda_invocation_completes.py +16 -0
  2141. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/events_lambda_invocation_fails.py +16 -0
  2142. local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/put_event_triggers_invocation.py +13 -0
  2143. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/__init__.py +0 -0
  2144. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/client.py +43 -0
  2145. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/conftest.py +9 -0
  2146. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/constants.py +19 -0
  2147. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/__init__.py +33 -0
  2148. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/available_message_exists_on_topic.py +19 -0
  2149. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/enabled_rule_exists_targeting_topic.py +14 -0
  2150. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_already_exists.py +12 -0
  2151. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_does_not_exist.py +10 -0
  2152. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_exists.py +12 -0
  2153. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_is_active_given.py +10 -0
  2154. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_is_not_active_given.py +20 -0
  2155. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_not_already_exist.py +10 -0
  2156. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_bid_in_bus_status.py +12 -0
  2157. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_bid_not_in_bus_status.py +10 -0
  2158. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_mid_in_msg_status.py +11 -0
  2159. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_rid_not_in_rule_status.py +10 -0
  2160. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_bus_created.py +12 -0
  2161. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_event_published.py +13 -0
  2162. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_message_consumed.py +11 -0
  2163. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_rule_created.py +12 -0
  2164. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_topic_created.py +12 -0
  2165. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_tid_in_topic_status.py +12 -0
  2166. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_tid_not_in_topic_status.py +10 -0
  2167. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/message_slot_available.py +10 -0
  2168. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_available_message_on_topic.py +11 -0
  2169. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_enabled_rule_targeting_topic.py +13 -0
  2170. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_message_slot_available.py +10 -0
  2171. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/rule_already_exists.py +12 -0
  2172. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/rule_not_already_exist.py +10 -0
  2173. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/target_topic_is_active.py +10 -0
  2174. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/target_topic_is_not_active.py +20 -0
  2175. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_already_exists.py +12 -0
  2176. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_does_not_exist.py +10 -0
  2177. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_exists.py +12 -0
  2178. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_is_active_given.py +10 -0
  2179. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_is_not_active_given.py +20 -0
  2180. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_not_already_exist.py +10 -0
  2181. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/test_scenarios.py +27 -0
  2182. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/__init__.py +7 -0
  2183. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/_inv_events_sns_every_available_message_belongs_to_an_active_topic.py +10 -0
  2184. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/_inv_events_sns_every_enabled_rule_references_an_active_event_bus.py +10 -0
  2185. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/event_bus_is_active_then.py +16 -0
  2186. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/message_available_on_topic.py +10 -0
  2187. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/message_is_deleted.py +11 -0
  2188. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/rule_enabled_and_targeting_topic.py +12 -0
  2189. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/topic_is_active_then.py +16 -0
  2190. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/__init__.py +5 -0
  2191. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/consume_message_from_sns.py +11 -0
  2192. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/create_event_bus.py +18 -0
  2193. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/create_topic.py +19 -0
  2194. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/put_event_to_bus_routed_to_sns.py +29 -0
  2195. local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/put_rule_targeting_sns.py +28 -0
  2196. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/__init__.py +0 -0
  2197. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/client.py +44 -0
  2198. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/conftest.py +9 -0
  2199. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/constants.py +19 -0
  2200. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/__init__.py +34 -0
  2201. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/available_message_exists_in_queue.py +16 -0
  2202. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/enabled_rule_exists_targeting_queue.py +15 -0
  2203. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_already_exists.py +12 -0
  2204. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_does_not_exist.py +10 -0
  2205. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_exists.py +12 -0
  2206. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_is_active_given.py +10 -0
  2207. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_is_not_active_given.py +20 -0
  2208. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_not_already_exist.py +10 -0
  2209. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_bid_in_bus_status.py +12 -0
  2210. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_bid_not_in_bus_status.py +10 -0
  2211. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_mid_in_msg_status.py +11 -0
  2212. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_qid_in_queue_status.py +12 -0
  2213. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_qid_not_in_queue_status.py +10 -0
  2214. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_rid_not_in_rule_status.py +10 -0
  2215. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_bus_created.py +12 -0
  2216. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_event_published.py +13 -0
  2217. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_message_consumed.py +11 -0
  2218. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_queue_created.py +12 -0
  2219. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_rule_created.py +13 -0
  2220. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/message_slot_available.py +10 -0
  2221. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_available_message_in_queue.py +11 -0
  2222. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_enabled_rule_targeting_queue.py +13 -0
  2223. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_message_slot_available.py +10 -0
  2224. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_already_exists.py +12 -0
  2225. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_does_not_exist.py +10 -0
  2226. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_existed.py +12 -0
  2227. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_exists.py +12 -0
  2228. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_is_active_given.py +10 -0
  2229. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_is_not_active_given.py +21 -0
  2230. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_not_already_exist.py +10 -0
  2231. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/rule_already_exists.py +13 -0
  2232. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/rule_not_already_exist.py +10 -0
  2233. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/target_queue_is_active.py +10 -0
  2234. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/target_queue_is_not_active.py +21 -0
  2235. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/test_scenarios.py +27 -0
  2236. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/__init__.py +7 -0
  2237. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/_inv_events_sqs_every_available_message_belongs_to_an_active_queue.py +10 -0
  2238. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/_inv_events_sqs_every_enabled_rule_references_an_active_event_bus.py +10 -0
  2239. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/event_bus_is_active_then.py +16 -0
  2240. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/message_available_in_target_queue.py +10 -0
  2241. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/message_is_deleted.py +10 -0
  2242. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/queue_is_active_then.py +16 -0
  2243. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/rule_enabled_targeting_queue.py +12 -0
  2244. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/__init__.py +5 -0
  2245. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/consume_message_from_sqs.py +29 -0
  2246. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/create_event_bus.py +18 -0
  2247. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/create_queue.py +18 -0
  2248. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/put_event_routed_to_sqs.py +29 -0
  2249. local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/put_rule_targeting_sqs.py +28 -0
  2250. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/__init__.py +0 -0
  2251. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/client.py +52 -0
  2252. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/conftest.py +9 -0
  2253. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/constants.py +23 -0
  2254. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/__init__.py +34 -0
  2255. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/enabled_rule_exists_targeting_sfn.py +15 -0
  2256. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_already_exists.py +12 -0
  2257. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_does_not_exist.py +10 -0
  2258. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_exists.py +12 -0
  2259. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_is_active_given.py +10 -0
  2260. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_is_not_active_given.py +20 -0
  2261. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_not_already_exist.py +10 -0
  2262. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_bid_in_bus_status.py +12 -0
  2263. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_bid_not_in_bus_status.py +10 -0
  2264. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_eid_in_exec_status.py +11 -0
  2265. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_rid_not_in_rule_status.py +10 -0
  2266. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_bus_created.py +12 -0
  2267. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_event_published.py +13 -0
  2268. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_execution_completed.py +11 -0
  2269. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_execution_failed.py +11 -0
  2270. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_rule_created.py +19 -0
  2271. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_sm_created.py +12 -0
  2272. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_smid_in_sm_status.py +12 -0
  2273. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_smid_not_in_sm_status.py +10 -0
  2274. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/execution_is_running.py +17 -0
  2275. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/execution_slot_available.py +11 -0
  2276. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_enabled_rule_targeting_sfn.py +11 -0
  2277. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_execution_is_running.py +11 -0
  2278. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_execution_slot_available.py +10 -0
  2279. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/rule_already_exists.py +14 -0
  2280. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/rule_not_already_exist.py +10 -0
  2281. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_already_exists.py +12 -0
  2282. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_does_not_exist.py +11 -0
  2283. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_exists.py +12 -0
  2284. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_is_active_given.py +10 -0
  2285. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_is_not_active_given.py +22 -0
  2286. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_not_already_exist.py +10 -0
  2287. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/target_sm_is_active.py +10 -0
  2288. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/target_sm_is_not_active.py +20 -0
  2289. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/test_scenarios.py +27 -0
  2290. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/__init__.py +9 -0
  2291. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/_inv_events_stepfunctions_every_enabled_rule_references_an_active_event_bus.py +10 -0
  2292. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/_inv_events_stepfunctions_every_running_execution_references_an_active_state_mac.py +12 -0
  2293. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/_inv_events_stepfunctions_every_running_execution_was_started_by_an_enabled_rule.py +12 -0
  2294. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/event_bus_is_active_then.py +16 -0
  2295. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_failed_then.py +11 -0
  2296. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_running_then.py +10 -0
  2297. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_succeeded_then.py +11 -0
  2298. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/rule_enabled_targeting_sfn.py +12 -0
  2299. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/sm_is_active_then.py +18 -0
  2300. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/__init__.py +6 -0
  2301. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/create_event_bus.py +18 -0
  2302. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/create_state_machine.py +22 -0
  2303. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/put_event_triggers_sfn.py +34 -0
  2304. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/put_rule_targeting_sfn.py +29 -0
  2305. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/running_execution_fails.py +11 -0
  2306. local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/running_execution_succeeds.py +11 -0
  2307. local_web_services_python_sdk-0.19.0/tests/e2e/fake/__init__.py +0 -0
  2308. local_web_services_python_sdk-0.19.0/tests/e2e/fake/client.py +54 -0
  2309. local_web_services_python_sdk-0.19.0/tests/e2e/fake/conftest.py +9 -0
  2310. local_web_services_python_sdk-0.19.0/tests/e2e/fake/constants.py +10 -0
  2311. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/__init__.py +22 -0
  2312. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_chaos_has_been_enabled_or_disabled.py +13 -0
  2313. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_route_has_been_added.py +13 -0
  2314. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_route_has_been_removed.py +14 -0
  2315. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_has_been_created.py +12 -0
  2316. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_has_been_deleted.py +13 -0
  2317. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_status_has_been_retrieved.py +13 -0
  2318. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/no_route_slot_available.py +11 -0
  2319. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/rid_in_route_status.py +13 -0
  2320. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_does_not_exist.py +10 -0
  2321. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_exists.py +13 -0
  2322. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_is_active.py +10 -0
  2323. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_is_not_active.py +12 -0
  2324. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_slot_available.py +10 -0
  2325. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_already_exists.py +12 -0
  2326. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_does_not_already_exist.py +10 -0
  2327. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_does_not_exist.py +10 -0
  2328. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_exists.py +12 -0
  2329. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_is_active.py +10 -0
  2330. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_is_not_active.py +12 -0
  2331. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/sid_in_server_status.py +12 -0
  2332. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/sid_not_in_server_status.py +10 -0
  2333. local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/system_is_initialized.py +10 -0
  2334. local_web_services_python_sdk-0.19.0/tests/e2e/fake/test_scenarios.py +27 -0
  2335. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/__init__.py +9 -0
  2336. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/_inv_fake_every_active_route_belongs_to_an_active_server.py +10 -0
  2337. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/_inv_fake_every_server_has_a_valid_protocol.py +10 -0
  2338. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/chaos_enabled_flag_updated.py +10 -0
  2339. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/operation_is_rejected.py +10 -0
  2340. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/route_is_active_on_server.py +10 -0
  2341. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/route_is_deleted.py +10 -0
  2342. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_is_active_with_chaos_disabled.py +10 -0
  2343. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_is_deleted_and_routes_removed.py +10 -0
  2344. local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_name_protocol_route_count_returned.py +10 -0
  2345. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/__init__.py +6 -0
  2346. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/add_route_to_fake_server.py +29 -0
  2347. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/create_fake_server.py +17 -0
  2348. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/delete_fake_server.py +18 -0
  2349. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/get_status_of_fake_server.py +17 -0
  2350. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/remove_route_from_fake_server.py +20 -0
  2351. local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/set_chaos_enabled_for_fake_server.py +19 -0
  2352. local_web_services_python_sdk-0.19.0/tests/e2e/given/__init__.py +1 -0
  2353. local_web_services_python_sdk-0.19.0/tests/e2e/given/system_initialized.py +10 -0
  2354. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/__init__.py +0 -0
  2355. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/client.py +29 -0
  2356. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/conftest.py +9 -0
  2357. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/constants.py +11 -0
  2358. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/__init__.py +56 -0
  2359. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_already_exists.py +13 -0
  2360. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_does_not_exist.py +10 -0
  2361. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_exists.py +12 -0
  2362. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_is_not_stored_given.py +11 -0
  2363. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_is_stored_given.py +10 -0
  2364. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_not_already_exist.py +10 -0
  2365. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_slot_available.py +10 -0
  2366. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_slot_not_available.py +10 -0
  2367. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_deleted.py +11 -0
  2368. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_retrieval_initiated.py +11 -0
  2369. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_uploaded.py +13 -0
  2370. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_empty_vault_deleted.py +10 -0
  2371. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_inventory_retrieval_initiated.py +18 -0
  2372. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_completed.py +11 -0
  2373. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_failed.py +11 -0
  2374. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_output_retrieved.py +11 -0
  2375. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_aborted.py +28 -0
  2376. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_completed.py +41 -0
  2377. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_initiated.py +20 -0
  2378. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_part_uploaded.py +31 -0
  2379. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_vault_created.py +12 -0
  2380. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_vault_inventory_refreshed.py +11 -0
  2381. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/jid_in_job_status.py +11 -0
  2382. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_does_not_exist.py +10 -0
  2383. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_exists.py +11 -0
  2384. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_in_progress_given.py +11 -0
  2385. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_not_in_progress_given.py +10 -0
  2386. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_not_succeeded_given.py +10 -0
  2387. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_succeeded_given.py +11 -0
  2388. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_output_is_available_given.py +11 -0
  2389. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_output_is_not_available_given.py +10 -0
  2390. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_slot_available.py +10 -0
  2391. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_slot_not_available.py +10 -0
  2392. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/part_already_uploaded.py +11 -0
  2393. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/part_not_already_uploaded.py +10 -0
  2394. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/system_is_initialized.py +10 -0
  2395. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_already_exists.py +20 -0
  2396. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_does_not_exist.py +10 -0
  2397. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_exists.py +20 -0
  2398. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_id_in_upload_status.py +11 -0
  2399. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_in_upload_status.py +11 -0
  2400. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_is_in_progress_given.py +10 -0
  2401. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_is_not_in_progress_given.py +18 -0
  2402. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_not_already_exist.py +10 -0
  2403. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_already_exists.py +12 -0
  2404. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_does_not_exist.py +10 -0
  2405. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_exists.py +12 -0
  2406. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_archives.py +12 -0
  2407. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_in_progress_jobs.py +11 -0
  2408. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_no_archives.py +10 -0
  2409. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_no_in_progress_jobs.py +10 -0
  2410. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_in_vault_status.py +12 -0
  2411. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_is_active_given.py +10 -0
  2412. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_is_not_active_given.py +11 -0
  2413. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_not_already_exist.py +10 -0
  2414. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_not_in_vault_status.py +10 -0
  2415. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/test_scenarios.py +27 -0
  2416. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/__init__.py +20 -0
  2417. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_is_deleted_then.py +14 -0
  2418. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_is_stored_then.py +21 -0
  2419. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_retrieval_job_has_archive_id.py +12 -0
  2420. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/in_progress_job_references_active_vault.py +10 -0
  2421. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_failed_then.py +11 -0
  2422. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_in_progress_for_archive_then.py +11 -0
  2423. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_in_progress_for_vault_then.py +14 -0
  2424. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_succeeded_then.py +11 -0
  2425. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_output_marked_retrieved_then.py +11 -0
  2426. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_output_only_for_succeeded_jobs.py +10 -0
  2427. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/operation_is_rejected_then.py +15 -0
  2428. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/part_is_recorded_then.py +19 -0
  2429. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/stored_archives_belong_to_active_vault.py +10 -0
  2430. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_aborted_then.py +14 -0
  2431. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_completed_then.py +21 -0
  2432. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_in_progress_then.py +19 -0
  2433. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_archive_count_non_negative.py +10 -0
  2434. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_inventory_marked_fresh_then.py +19 -0
  2435. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_is_active_then.py +17 -0
  2436. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_is_deleted_then.py +14 -0
  2437. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/__init__.py +14 -0
  2438. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/abort_multipart_upload.py +24 -0
  2439. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/complete_multipart_upload.py +27 -0
  2440. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/create_vault.py +20 -0
  2441. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/delete_archive.py +11 -0
  2442. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/delete_vault.py +20 -0
  2443. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/get_job_output.py +11 -0
  2444. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_archive_retrieval.py +11 -0
  2445. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_inventory_retrieval.py +22 -0
  2446. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_multipart_upload.py +24 -0
  2447. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/job_completes_successfully.py +11 -0
  2448. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/job_fails.py +11 -0
  2449. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/refresh_vault_inventory.py +25 -0
  2450. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/upload_archive.py +20 -0
  2451. local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/upload_multipart_part.py +28 -0
  2452. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/__init__.py +0 -0
  2453. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/client.py +26 -0
  2454. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/conftest.py +9 -0
  2455. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/constants.py +11 -0
  2456. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/__init__.py +36 -0
  2457. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_active.py +11 -0
  2458. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_deleted.py +11 -0
  2459. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_not_deleted.py +11 -0
  2460. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_job_is_in_progress.py +11 -0
  2461. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_job_slot_available.py +10 -0
  2462. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_no_job_is_in_progress.py +10 -0
  2463. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_no_job_slot_available.py +11 -0
  2464. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_jid_in_job_status.py +11 -0
  2465. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_message_slot_available.py +10 -0
  2466. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_no_message_slot_available.py +11 -0
  2467. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_completed_notification_failed.py +16 -0
  2468. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_completed_notification_published.py +13 -0
  2469. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_initiated.py +16 -0
  2470. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_notification_configured.py +11 -0
  2471. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_topic_created.py +12 -0
  2472. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_topic_deleted.py +10 -0
  2473. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_vault_created.py +12 -0
  2474. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_tid_in_topic_status.py +12 -0
  2475. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_tid_not_in_topic_status.py +10 -0
  2476. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_already_exists.py +12 -0
  2477. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_does_not_exist.py +10 -0
  2478. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_exists.py +12 -0
  2479. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_exists_and_is_active.py +12 -0
  2480. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_is_active_given.py +10 -0
  2481. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_is_already_deleted.py +20 -0
  2482. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_not_already_exist.py +10 -0
  2483. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_not_exist_or_not_active.py +13 -0
  2484. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_vid_in_vault_status.py +12 -0
  2485. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_vid_not_in_vault_status.py +10 -0
  2486. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_already_exists.py +12 -0
  2487. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_already_has_sns_notification.py +11 -0
  2488. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_does_not_exist.py +10 -0
  2489. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_exists.py +12 -0
  2490. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_has_no_sns_notification.py +10 -0
  2491. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_has_sns_notification.py +11 -0
  2492. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_not_already_exist.py +10 -0
  2493. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/test_scenarios.py +27 -0
  2494. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/__init__.py +9 -0
  2495. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/_inv_glacier_sns_every_published_notification_references_a_job_that_exists.py +10 -0
  2496. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/_inv_glacier_sns_every_published_notification_references_a_topic_that_exists.py +10 -0
  2497. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_is_in_progress_then.py +15 -0
  2498. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_succeeded_no_notification.py +11 -0
  2499. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_succeeded_notification_published.py +11 -0
  2500. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_sns_topic_is_active_then.py +17 -0
  2501. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_sns_topic_is_deleted_then.py +14 -0
  2502. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/vault_exists_no_notification.py +17 -0
  2503. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/vault_will_publish_notifications.py +11 -0
  2504. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/__init__.py +7 -0
  2505. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/configure_sns_notification_on_vault.py +11 -0
  2506. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/create_glacier_vault.py +19 -0
  2507. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/create_sns_topic_glacier.py +19 -0
  2508. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/delete_sns_topic_glacier.py +19 -0
  2509. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/glacier_job_completes_and_notifies.py +11 -0
  2510. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/glacier_job_completes_notification_fails.py +13 -0
  2511. local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/initiate_glacier_job.py +23 -0
  2512. local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/__init__.py +0 -0
  2513. local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/conftest.py +1 -0
  2514. local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/test_scenarios.py +1 -0
  2515. local_web_services_python_sdk-0.19.0/tests/e2e/init/__init__.py +0 -0
  2516. local_web_services_python_sdk-0.19.0/tests/e2e/init/conftest.py +1 -0
  2517. local_web_services_python_sdk-0.19.0/tests/e2e/init/test_scenarios.py +1 -0
  2518. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/__init__.py +0 -0
  2519. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/client.py +30 -0
  2520. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/conftest.py +9 -0
  2521. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/constants.py +17 -0
  2522. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/__init__.py +93 -0
  2523. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/active_executions_at_or_above_concurrency_limit.py +11 -0
  2524. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/active_executions_below_concurrency_limit.py +11 -0
  2525. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_available.py +11 -0
  2526. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_empty.py +11 -0
  2527. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_has_function_assigned.py +11 -0
  2528. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_no_function_assigned.py +11 -0
  2529. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_occupied.py +11 -0
  2530. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_already_exists.py +11 -0
  2531. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_does_not_exist.py +10 -0
  2532. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_exists.py +11 -0
  2533. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_not_already_exist.py +10 -0
  2534. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_active_execs.py +11 -0
  2535. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_has_policy.py +22 -0
  2536. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_status.py +17 -0
  2537. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_not_in_func_status.py +10 -0
  2538. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_already_exists.py +12 -0
  2539. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_exist.py +10 -0
  2540. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_active_execution_tracking.py +11 -0
  2541. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_active_executions_tracked.py +11 -0
  2542. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_concurrency_configured.py +11 -0
  2543. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_positive_concurrency_limit.py +11 -0
  2544. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_resource_policy.py +18 -0
  2545. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_resource_policy_entry.py +10 -0
  2546. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_unreserved_concurrency.py +11 -0
  2547. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_exists.py +12 -0
  2548. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_execution_tracking.py +11 -0
  2549. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_executions.py +11 -0
  2550. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_executions_tracked.py +11 -0
  2551. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_at_least_one_active_execution.py +11 -0
  2552. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_concurrency_configured.py +11 -0
  2553. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_no_active_executions.py +10 -0
  2554. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_no_active_executions_tracking.py +11 -0
  2555. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_positive_concurrency_limit.py +11 -0
  2556. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_resource_policy.py +10 -0
  2557. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_resource_policy_entry.py +22 -0
  2558. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_unreserved_concurrency.py +11 -0
  2559. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_active_given.py +10 -0
  2560. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_deleted_given.py +15 -0
  2561. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_deleting_given.py +15 -0
  2562. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_failed_given.py +11 -0
  2563. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_active_given.py +20 -0
  2564. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_deleted_given.py +10 -0
  2565. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_deleting_given.py +10 -0
  2566. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_failed_given.py +10 -0
  2567. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_pending_given.py +10 -0
  2568. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_pending_given.py +13 -0
  2569. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_not_already_exist.py +10 -0
  2570. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_active_function_deleted.py +10 -0
  2571. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_exhausted.py +11 -0
  2572. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_retried.py +11 -0
  2573. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_succeeded.py +11 -0
  2574. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_concurrency_set.py +12 -0
  2575. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_disabled_esm_deleted.py +11 -0
  2576. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_enabled_esm_deleted.py +11 -0
  2577. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_created.py +11 -0
  2578. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_disabled.py +11 -0
  2579. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_enabled.py +11 -0
  2580. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_finished_creating.py +11 -0
  2581. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_finished_deleting.py +11 -0
  2582. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_failed_function_deleted.py +11 -0
  2583. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_code_updated.py +12 -0
  2584. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_config_updated.py +12 -0
  2585. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_created.py +12 -0
  2586. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_deleted.py +10 -0
  2587. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_async.py +11 -0
  2588. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_sync.py +11 -0
  2589. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_sync_concurrency.py +11 -0
  2590. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_pending_resolved.py +11 -0
  2591. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_permission_added.py +22 -0
  2592. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_permission_removed.py +12 -0
  2593. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_sync_completed.py +11 -0
  2594. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_tag_added.py +12 -0
  2595. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_tag_removed.py +12 -0
  2596. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_creating.py +11 -0
  2597. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_deleting.py +11 -0
  2598. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_disabled.py +11 -0
  2599. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_enabled.py +11 -0
  2600. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_creating.py +11 -0
  2601. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_deleting.py +11 -0
  2602. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_disabled.py +11 -0
  2603. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_enabled.py +11 -0
  2604. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mid_in_mapping_status.py +11 -0
  2605. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mid_not_in_mapping_status.py +10 -0
  2606. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/no_async_slot_available.py +11 -0
  2607. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_count_exhausted.py +11 -0
  2608. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_count_not_exhausted.py +11 -0
  2609. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_tracking_available.py +11 -0
  2610. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_tracking_not_available.py +11 -0
  2611. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/slot_in_async_func.py +11 -0
  2612. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_does_not_exist_on_function.py +11 -0
  2613. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_exists_on_function.py +15 -0
  2614. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_is_not_set.py +11 -0
  2615. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_is_set.py +10 -0
  2616. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/test_scenarios.py +27 -0
  2617. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/__init__.py +37 -0
  2618. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_active_execution_count_never_exceeds_reserved_concurrency_when_set.py +10 -0
  2619. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_all_async_slots_reference_known_function_ids_or_are_empty.py +10 -0
  2620. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_async_retry_count_never_exceeds_two.py +10 -0
  2621. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_every_active_event_source_mapping_references_an_existing_non_deleted.py +12 -0
  2622. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_every_event_source_mapping_has_a_valid_status.py +10 -0
  2623. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_every_function_has_a_valid_status.py +10 -0
  2624. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_no_function_in_deleting_state_has_active_executions.py +10 -0
  2625. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_esm_references_invariant.py +10 -0
  2626. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_decreases.py +11 -0
  2627. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_increases.py +11 -0
  2628. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_invariant.py +10 -0
  2629. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_retry_count_invariant.py +10 -0
  2630. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_slot_freed.py +11 -0
  2631. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_slots_reference_invariant.py +10 -0
  2632. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/esm_valid_status_invariant.py +10 -0
  2633. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/event_dropped_and_slot_freed.py +11 -0
  2634. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/event_queued_in_async_slot.py +11 -0
  2635. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_becomes_active_or_failed.py +11 -0
  2636. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_configuration_updated.py +20 -0
  2637. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_enters_deleting_state.py +10 -0
  2638. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_concurrency_limit.py +12 -0
  2639. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_resource_policy_then.py +10 -0
  2640. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_tag_set.py +18 -0
  2641. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_is_deleted_then.py +11 -0
  2642. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_is_in_pending_state.py +15 -0
  2643. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_resource_policy_cleared.py +12 -0
  2644. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_returns_to_pending.py +12 -0
  2645. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_valid_status_invariant.py +10 -0
  2646. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_enters_deleting_state.py +11 -0
  2647. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_in_creating_state.py +13 -0
  2648. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_deleted_then.py +11 -0
  2649. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_disabled_then.py +11 -0
  2650. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_enabled_and_active_then.py +11 -0
  2651. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_enabled_then.py +11 -0
  2652. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/no_function_in_deleting_has_executions.py +10 -0
  2653. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/retry_count_increases.py +11 -0
  2654. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/tag_cleared_from_function.py +10 -0
  2655. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/__init__.py +26 -0
  2656. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/activate_function.py +11 -0
  2657. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/add_permission.py +24 -0
  2658. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/create_event_source_mapping.py +11 -0
  2659. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/create_function.py +25 -0
  2660. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_disabled_esm.py +11 -0
  2661. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_enabled_esm.py +11 -0
  2662. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_failed_function.py +11 -0
  2663. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_function.py +19 -0
  2664. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/disable_esm.py +11 -0
  2665. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/enable_esm.py +11 -0
  2666. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_create_esm.py +11 -0
  2667. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_delete_esm.py +11 -0
  2668. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_delete_function.py +11 -0
  2669. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_invoke_function_sync.py +11 -0
  2670. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_async.py +11 -0
  2671. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_sync.py +11 -0
  2672. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_sync_with_concurrency.py +11 -0
  2673. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_exhausted.py +11 -0
  2674. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_retry.py +11 -0
  2675. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_success.py +11 -0
  2676. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/remove_permission.py +21 -0
  2677. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/set_reserved_concurrency.py +21 -0
  2678. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/tag_function.py +21 -0
  2679. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/untag_function.py +21 -0
  2680. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/update_function_code.py +21 -0
  2681. local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/update_function_configuration.py +21 -0
  2682. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/__init__.py +0 -0
  2683. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/client.py +34 -0
  2684. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/conftest.py +9 -0
  2685. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/constants.py +9 -0
  2686. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/__init__.py +30 -0
  2687. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/fid_in_func_status.py +17 -0
  2688. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/fid_not_in_func_status.py +10 -0
  2689. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_already_exists.py +12 -0
  2690. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_does_not_exist.py +10 -0
  2691. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_exists.py +12 -0
  2692. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_is_active_given.py +10 -0
  2693. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_is_not_active_given.py +20 -0
  2694. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_not_already_exist.py +10 -0
  2695. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/iid_in_inv_status.py +22 -0
  2696. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/invocation_is_in_progress.py +22 -0
  2697. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/invocation_slot_available.py +11 -0
  2698. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_function_deployed.py +17 -0
  2699. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_function_invoked.py +17 -0
  2700. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_invocation_failed.py +19 -0
  2701. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_invocation_succeeded.py +17 -0
  2702. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_pool_created.py +17 -0
  2703. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_pool_deleted.py +10 -0
  2704. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/no_invocation_is_in_progress.py +10 -0
  2705. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/no_invocation_slot_available.py +10 -0
  2706. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pid_in_pool_status.py +17 -0
  2707. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pid_not_in_pool_status.py +10 -0
  2708. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_already_exists.py +12 -0
  2709. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_does_not_exist.py +10 -0
  2710. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_exists.py +12 -0
  2711. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_active_given.py +17 -0
  2712. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_already_deleted.py +16 -0
  2713. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_deleted_given.py +10 -0
  2714. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_not_deleted_given.py +12 -0
  2715. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_not_already_exist.py +10 -0
  2716. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_not_exist_or_deleted.py +10 -0
  2717. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/test_scenarios.py +27 -0
  2718. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/__init__.py +8 -0
  2719. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/_inv_lambda_cognito_every_in_progress_invocation_references_an_active_lambda_fun.py +12 -0
  2720. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/_inv_lambda_cognito_every_successful_invocation_recorded_which_pool_it_called.py +10 -0
  2721. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/func_is_active_then.py +17 -0
  2722. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_failed_resource_not_found.py +11 -0
  2723. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_is_in_progress_then.py +16 -0
  2724. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_is_success_then.py +16 -0
  2725. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/pool_is_active_then.py +18 -0
  2726. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/pool_is_deleted_then.py +13 -0
  2727. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/__init__.py +6 -0
  2728. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/create_cognito_user_pool.py +19 -0
  2729. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/delete_cognito_user_pool.py +20 -0
  2730. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/deploy_lambda_function.py +20 -0
  2731. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invocation_fails_pool_deleted.py +24 -0
  2732. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invocation_succeeds_cognito.py +22 -0
  2733. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invoke_function.py +29 -0
  2734. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/__init__.py +0 -0
  2735. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/client.py +34 -0
  2736. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/conftest.py +9 -0
  2737. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/constants.py +9 -0
  2738. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/__init__.py +32 -0
  2739. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cid_in_cluster_status.py +12 -0
  2740. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cid_not_in_cluster_status.py +10 -0
  2741. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_already_exists.py +12 -0
  2742. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_does_not_exist.py +10 -0
  2743. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_exists.py +12 -0
  2744. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_available_given.py +12 -0
  2745. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_not_available_given.py +12 -0
  2746. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_not_stopped_given.py +12 -0
  2747. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_stopped_given.py +12 -0
  2748. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_not_already_exist.py +10 -0
  2749. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/document_slot_available.py +10 -0
  2750. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/fid_in_func_status.py +17 -0
  2751. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/fid_not_in_func_status.py +10 -0
  2752. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_already_exists.py +12 -0
  2753. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_does_not_exist.py +10 -0
  2754. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_exists.py +12 -0
  2755. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_is_active_given.py +10 -0
  2756. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_is_not_active_given.py +20 -0
  2757. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_not_already_exist.py +10 -0
  2758. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/iid_in_inv_status.py +22 -0
  2759. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/invocation_is_in_progress.py +22 -0
  2760. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/invocation_slot_available.py +11 -0
  2761. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_created.py +12 -0
  2762. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_started.py +11 -0
  2763. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_stopped.py +11 -0
  2764. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_function_deployed.py +17 -0
  2765. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_function_invoked.py +17 -0
  2766. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_invocation_failed.py +17 -0
  2767. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_invocation_succeeded.py +22 -0
  2768. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_document_slot_available.py +10 -0
  2769. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_invocation_is_in_progress.py +10 -0
  2770. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_invocation_slot_available.py +10 -0
  2771. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/test_scenarios.py +27 -0
  2772. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/__init__.py +9 -0
  2773. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/_inv_lambda_docdb_every_existing_document_references_a_cluster_that_exists.py +10 -0
  2774. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/_inv_lambda_docdb_every_in_progress_invocation_references_an_active_lambda_funct.py +12 -0
  2775. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_available_ready_then.py +11 -0
  2776. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_available_then.py +11 -0
  2777. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_stopped_then.py +11 -0
  2778. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/document_exists_invocation_success.py +11 -0
  2779. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/func_is_active_then.py +17 -0
  2780. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/invocation_failed_connection_error.py +11 -0
  2781. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/invocation_is_in_progress_then.py +16 -0
  2782. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/__init__.py +7 -0
  2783. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/create_docdb_cluster.py +11 -0
  2784. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/deploy_lambda_function.py +20 -0
  2785. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/invocation_fails_cluster_stopped.py +16 -0
  2786. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/invoke_function.py +29 -0
  2787. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/lambda_writes_document.py +18 -0
  2788. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/start_docdb_cluster.py +11 -0
  2789. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/stop_docdb_cluster.py +11 -0
  2790. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/__init__.py +0 -0
  2791. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/client.py +31 -0
  2792. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/conftest.py +9 -0
  2793. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/constants.py +13 -0
  2794. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/__init__.py +28 -0
  2795. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/fid_in_func_status.py +17 -0
  2796. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/fid_not_in_func_status.py +10 -0
  2797. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_already_exists.py +12 -0
  2798. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_does_not_exist.py +10 -0
  2799. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_exists.py +12 -0
  2800. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_is_active_given.py +10 -0
  2801. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_is_not_active_given.py +20 -0
  2802. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_not_already_exist.py +10 -0
  2803. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/iid_in_inv_status.py +22 -0
  2804. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/invocation_is_in_progress.py +22 -0
  2805. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/invocation_slot_available.py +11 -0
  2806. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/item_slot_available.py +10 -0
  2807. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_function_deployed.py +17 -0
  2808. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_function_invoked.py +17 -0
  2809. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_invocation_failed.py +17 -0
  2810. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_invocation_succeeded.py +17 -0
  2811. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_item_written.py +17 -0
  2812. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_table_created.py +12 -0
  2813. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_invocation_is_in_progress.py +10 -0
  2814. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_invocation_slot_available.py +10 -0
  2815. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_item_slot_available.py +10 -0
  2816. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_already_exists.py +12 -0
  2817. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_does_not_exist.py +10 -0
  2818. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_exists.py +12 -0
  2819. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_is_active_given.py +10 -0
  2820. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_is_not_active_given.py +20 -0
  2821. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_not_already_exist.py +10 -0
  2822. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/tid_not_in_table_status.py +10 -0
  2823. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/test_scenarios.py +27 -0
  2824. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/__init__.py +8 -0
  2825. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/_inv_lambda_dynamodb_every_existing_item_belongs_to_an_active_table.py +10 -0
  2826. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/_inv_lambda_dynamodb_every_in_progress_invocation_references_an_active_lambda_fu.py +12 -0
  2827. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/func_is_active_then.py +17 -0
  2828. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_failed_then.py +16 -0
  2829. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_in_progress_then.py +16 -0
  2830. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_success_then.py +16 -0
  2831. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/item_exists_in_table.py +11 -0
  2832. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/table_is_active_then.py +17 -0
  2833. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/__init__.py +6 -0
  2834. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/create_dynamodb_table.py +20 -0
  2835. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/deploy_lambda_function.py +20 -0
  2836. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/invoke_function.py +29 -0
  2837. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_invocation_fails.py +16 -0
  2838. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_invocation_succeeds.py +16 -0
  2839. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_writes_item.py +11 -0
  2840. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/__init__.py +0 -0
  2841. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/client.py +34 -0
  2842. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/conftest.py +9 -0
  2843. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/constants.py +9 -0
  2844. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/__init__.py +36 -0
  2845. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cached_entry_exists.py +11 -0
  2846. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cached_entry_in_cluster.py +10 -0
  2847. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cid_in_cluster_status.py +12 -0
  2848. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cid_not_in_cluster_status.py +10 -0
  2849. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_already_exists.py +12 -0
  2850. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_does_not_exist.py +10 -0
  2851. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_exists.py +12 -0
  2852. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_is_available_given.py +12 -0
  2853. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_is_not_available_given.py +12 -0
  2854. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_not_already_exist.py +10 -0
  2855. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/fid_in_func_status.py +17 -0
  2856. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/fid_not_in_func_status.py +10 -0
  2857. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_already_exists.py +12 -0
  2858. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_does_not_exist.py +10 -0
  2859. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_exists.py +12 -0
  2860. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_is_active_given.py +10 -0
  2861. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_is_not_active_given.py +20 -0
  2862. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_not_already_exist.py +10 -0
  2863. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/iid_in_inv_status.py +22 -0
  2864. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/invocation_is_in_progress.py +22 -0
  2865. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/invocation_slot_available.py +11 -0
  2866. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/key_slot_available.py +10 -0
  2867. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/kid_in_key_status.py +11 -0
  2868. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_cluster_created.py +12 -0
  2869. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_entry_evicted.py +13 -0
  2870. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_function_deployed.py +17 -0
  2871. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_function_invoked.py +17 -0
  2872. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_invocation_cache_miss.py +17 -0
  2873. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_invocation_read_succeeded.py +19 -0
  2874. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_value_written.py +17 -0
  2875. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entries_in_cluster.py +10 -0
  2876. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entry_exists.py +10 -0
  2877. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entry_exists_in_cluster.py +10 -0
  2878. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_invocation_is_in_progress.py +10 -0
  2879. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_invocation_slot_available.py +10 -0
  2880. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_key_slot_available.py +10 -0
  2881. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/test_scenarios.py +27 -0
  2882. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/__init__.py +9 -0
  2883. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/_inv_lambda_elasticache_every_cached_entry_belongs_to_an_available_cluster.py +10 -0
  2884. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/_inv_lambda_elasticache_every_in_progress_invocation_references_an_active_lambda.py +12 -0
  2885. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cache_entry_cached.py +11 -0
  2886. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cache_entry_evicted.py +11 -0
  2887. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cluster_is_available_then.py +11 -0
  2888. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/func_is_active_then.py +17 -0
  2889. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_failed_then.py +16 -0
  2890. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_in_progress_then.py +16 -0
  2891. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_success_then.py +16 -0
  2892. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/__init__.py +7 -0
  2893. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/cache_evict.py +11 -0
  2894. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/create_elasticache_cluster.py +11 -0
  2895. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/deploy_lambda_function.py +20 -0
  2896. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invocation_fails_cache_miss.py +19 -0
  2897. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invocation_succeeds_cache_hit.py +19 -0
  2898. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invoke_function.py +29 -0
  2899. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/lambda_writes_cache.py +26 -0
  2900. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/__init__.py +0 -0
  2901. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/client.py +26 -0
  2902. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/conftest.py +9 -0
  2903. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/constants.py +9 -0
  2904. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/__init__.py +32 -0
  2905. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/did_in_domain_status.py +12 -0
  2906. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/did_not_in_domain_status.py +10 -0
  2907. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/document_slot_available.py +10 -0
  2908. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_already_exists.py +15 -0
  2909. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_does_not_exist.py +10 -0
  2910. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_exists.py +12 -0
  2911. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_available_given.py +15 -0
  2912. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_not_available_given.py +22 -0
  2913. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_not_processing_given.py +12 -0
  2914. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_processing_given.py +22 -0
  2915. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_not_already_exist.py +10 -0
  2916. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/fid_in_func_status.py +17 -0
  2917. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/fid_not_in_func_status.py +10 -0
  2918. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_already_exists.py +12 -0
  2919. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_does_not_exist.py +10 -0
  2920. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_exists.py +12 -0
  2921. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_is_active_given.py +10 -0
  2922. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_is_not_active_given.py +20 -0
  2923. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_not_already_exist.py +10 -0
  2924. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/iid_in_inv_status.py +22 -0
  2925. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/invocation_is_in_progress.py +22 -0
  2926. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/invocation_slot_available.py +11 -0
  2927. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_created.py +12 -0
  2928. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_update_begun.py +12 -0
  2929. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_update_completed.py +13 -0
  2930. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_function_deployed.py +17 -0
  2931. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_function_invoked.py +17 -0
  2932. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_invocation_failed.py +21 -0
  2933. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_invocation_succeeded.py +19 -0
  2934. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_document_slot_available.py +11 -0
  2935. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_invocation_is_in_progress.py +10 -0
  2936. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_invocation_slot_available.py +10 -0
  2937. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/test_scenarios.py +27 -0
  2938. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/__init__.py +9 -0
  2939. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/_inv_lambda_elasticsearch_every_existing_document_references_a_domain_that_exist.py +10 -0
  2940. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/_inv_lambda_elasticsearch_every_in_progress_invocation_references_an_active_lamb.py +12 -0
  2941. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/document_exists_invocation_success.py +11 -0
  2942. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_available_again_then.py +11 -0
  2943. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_available_then.py +17 -0
  2944. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_processing_then.py +11 -0
  2945. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/func_is_active_then.py +17 -0
  2946. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/invocation_failed_connection_error.py +11 -0
  2947. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/invocation_is_in_progress_then.py +16 -0
  2948. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/__init__.py +7 -0
  2949. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/create_elasticsearch_domain.py +20 -0
  2950. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/deploy_lambda_function.py +20 -0
  2951. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/domain_update_begins.py +19 -0
  2952. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/domain_update_completes.py +11 -0
  2953. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/invocation_fails_domain_processing.py +30 -0
  2954. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/invoke_function.py +29 -0
  2955. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/lambda_indexes_document.py +33 -0
  2956. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/__init__.py +0 -0
  2957. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/client.py +26 -0
  2958. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/conftest.py +9 -0
  2959. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/constants.py +9 -0
  2960. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/__init__.py +32 -0
  2961. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_already_exists.py +12 -0
  2962. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_does_not_exist.py +10 -0
  2963. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_exists.py +12 -0
  2964. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_active_given.py +10 -0
  2965. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_already_deleted.py +18 -0
  2966. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_deleted_given.py +10 -0
  2967. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_not_deleted_given.py +12 -0
  2968. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_not_already_exist.py +10 -0
  2969. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_not_exist_or_deleted.py +10 -0
  2970. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/busid_in_bus_status.py +15 -0
  2971. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/busid_not_in_bus_status.py +10 -0
  2972. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/event_slot_available.py +10 -0
  2973. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/fid_in_func_status.py +17 -0
  2974. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/fid_not_in_func_status.py +10 -0
  2975. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_already_exists.py +12 -0
  2976. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_does_not_exist.py +10 -0
  2977. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_exists.py +12 -0
  2978. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_is_active_given.py +10 -0
  2979. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_is_not_active_given.py +20 -0
  2980. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_not_already_exist.py +10 -0
  2981. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/iid_in_inv_status.py +22 -0
  2982. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/invocation_is_in_progress.py +22 -0
  2983. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/invocation_slot_available.py +11 -0
  2984. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_bus_created.py +15 -0
  2985. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_bus_deleted.py +10 -0
  2986. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_function_deployed.py +17 -0
  2987. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_function_invoked.py +17 -0
  2988. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_invocation_failed.py +17 -0
  2989. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_invocation_succeeded.py +17 -0
  2990. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_event_slot_available.py +10 -0
  2991. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_invocation_is_in_progress.py +10 -0
  2992. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_invocation_slot_available.py +10 -0
  2993. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/test_scenarios.py +27 -0
  2994. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/__init__.py +8 -0
  2995. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/_inv_lambda_events_every_in_progress_invocation_references_an_active_lambda_func.py +12 -0
  2996. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/_inv_lambda_events_every_published_event_references_a_bus_that_exists.py +10 -0
  2997. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/bus_is_active_then.py +17 -0
  2998. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/bus_is_deleted_then.py +19 -0
  2999. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/event_published_invocation_success.py +13 -0
  3000. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/func_is_active_then.py +17 -0
  3001. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/invocation_failed_resource_not_found.py +11 -0
  3002. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/invocation_is_in_progress_then.py +16 -0
  3003. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/__init__.py +6 -0
  3004. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/create_event_bus.py +20 -0
  3005. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/delete_event_bus.py +19 -0
  3006. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/deploy_lambda_function.py +20 -0
  3007. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/invocation_fails_bus_deleted.py +25 -0
  3008. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/invoke_function.py +29 -0
  3009. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/publish_event_task.py +27 -0
  3010. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/__init__.py +0 -0
  3011. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/client.py +26 -0
  3012. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/conftest.py +9 -0
  3013. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/constants.py +9 -0
  3014. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/__init__.py +33 -0
  3015. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/archive_slot_available.py +10 -0
  3016. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/fid_in_func_status.py +17 -0
  3017. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/fid_not_in_func_status.py +10 -0
  3018. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_already_exists.py +12 -0
  3019. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_does_not_exist.py +10 -0
  3020. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_exists.py +12 -0
  3021. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_is_active_given.py +10 -0
  3022. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_is_not_active_given.py +20 -0
  3023. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_not_already_exist.py +10 -0
  3024. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/glacier_vault_has_been_created_seq.py +12 -0
  3025. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/glacier_vault_has_been_deleted_seq.py +17 -0
  3026. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/iid_in_inv_status.py +22 -0
  3027. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/invocation_is_in_progress.py +22 -0
  3028. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/invocation_slot_available.py +11 -0
  3029. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_failed_upload_vault_deleted_seq.py +17 -0
  3030. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_has_been_deployed_seq.py +17 -0
  3031. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_has_been_invoked_seq.py +17 -0
  3032. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_uploaded_archive_succeeded_seq.py +11 -0
  3033. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_archive_slot_available.py +10 -0
  3034. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_invocation_is_in_progress.py +10 -0
  3035. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_invocation_slot_available.py +10 -0
  3036. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_already_exists.py +12 -0
  3037. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_does_not_exist.py +10 -0
  3038. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists.py +12 -0
  3039. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists_not_deleted.py +15 -0
  3040. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists_quoted.py +12 -0
  3041. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_already_deleted.py +25 -0
  3042. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_deleted_given.py +10 -0
  3043. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_not_deleted_given.py +12 -0
  3044. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_not_already_exist.py +10 -0
  3045. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_not_exist_or_deleted.py +10 -0
  3046. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vid_in_vault_status.py +12 -0
  3047. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vid_not_in_vault_status.py +10 -0
  3048. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/test_scenarios.py +27 -0
  3049. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/__init__.py +8 -0
  3050. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/_inv_lambda_glacier_every_existing_archive_references_a_vault_that_exists.py +10 -0
  3051. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/_inv_lambda_glacier_every_in_progress_invocation_references_an_active_lambda_fun.py +12 -0
  3052. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/archive_exists_invocation_success.py +13 -0
  3053. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/func_is_active_then.py +17 -0
  3054. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/invocation_failed_resource_not_found.py +11 -0
  3055. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/invocation_is_in_progress_then.py +16 -0
  3056. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/vault_exists_then.py +17 -0
  3057. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/vault_is_deleted_then.py +19 -0
  3058. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/__init__.py +6 -0
  3059. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/create_glacier_vault.py +20 -0
  3060. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/delete_glacier_vault.py +19 -0
  3061. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/deploy_lambda_function.py +20 -0
  3062. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/invocation_fails_vault_deleted.py +25 -0
  3063. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/invoke_function.py +29 -0
  3064. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/lambda_uploads_archive.py +27 -0
  3065. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/__init__.py +0 -0
  3066. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/client.py +23 -0
  3067. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/conftest.py +9 -0
  3068. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/constants.py +9 -0
  3069. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/__init__.py +29 -0
  3070. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_does_not_exist.py +10 -0
  3071. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_exists.py +13 -0
  3072. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_func_already_exists.py +13 -0
  3073. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_func_not_already_exist.py +10 -0
  3074. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_active_given.py +16 -0
  3075. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_already_deleted.py +23 -0
  3076. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_deleted_given.py +10 -0
  3077. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_not_deleted_given.py +13 -0
  3078. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_lambda_function_has_been_deployed_seq.py +18 -0
  3079. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_not_exist_or_deleted.py +10 -0
  3080. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_does_not_exist.py +10 -0
  3081. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_exists.py +13 -0
  3082. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_failed_to_invoke_callee_deleted_seq.py +19 -0
  3083. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_func_already_exists.py +13 -0
  3084. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_func_not_already_exist.py +10 -0
  3085. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_is_active_given.py +10 -0
  3086. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_is_not_active_given.py +20 -0
  3087. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_function_has_been_deployed_seq.py +18 -0
  3088. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_function_has_been_invoked_seq.py +17 -0
  3089. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_invoked_callee_succeeded_seq.py +17 -0
  3090. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/cfid_in_caller_status.py +18 -0
  3091. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_in_callee_status.py +18 -0
  3092. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_not_in_callee_status.py +10 -0
  3093. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_not_in_caller_status.py +10 -0
  3094. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/iid_in_inv_status.py +22 -0
  3095. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/invocation_is_in_progress.py +23 -0
  3096. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/invocation_slot_available.py +11 -0
  3097. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/no_invocation_is_in_progress.py +10 -0
  3098. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/no_invocation_slot_available.py +10 -0
  3099. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/test_scenarios.py +27 -0
  3100. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/__init__.py +8 -0
  3101. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/_inv_lambda_lambda_every_in_progress_invocation_references_an_active_caller_func.py +10 -0
  3102. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/_inv_lambda_lambda_every_successful_invocation_recorded_which_callee_was_invoked.py +12 -0
  3103. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/callee_func_is_active_then.py +17 -0
  3104. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/callee_is_deleted_then.py +21 -0
  3105. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/caller_func_is_active_then.py +17 -0
  3106. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_failed_resource_not_found.py +11 -0
  3107. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_is_in_progress_then.py +16 -0
  3108. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_is_success_then.py +16 -0
  3109. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/__init__.py +6 -0
  3110. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/caller_invocation_fails_callee_deleted.py +27 -0
  3111. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/caller_invokes_callee_succeeds.py +27 -0
  3112. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/delete_callee.py +19 -0
  3113. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/deploy_callee.py +20 -0
  3114. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/deploy_caller.py +20 -0
  3115. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/invoke_caller.py +31 -0
  3116. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/__init__.py +0 -0
  3117. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/client.py +31 -0
  3118. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/conftest.py +9 -0
  3119. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/constants.py +9 -0
  3120. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/__init__.py +32 -0
  3121. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cid_in_cluster_status.py +12 -0
  3122. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cid_not_in_cluster_status.py +10 -0
  3123. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_already_exists.py +12 -0
  3124. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_does_not_exist.py +10 -0
  3125. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_exists.py +12 -0
  3126. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_available_given.py +12 -0
  3127. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_not_available_given.py +12 -0
  3128. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_not_updating_given.py +12 -0
  3129. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_updating_given.py +12 -0
  3130. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_not_already_exist.py +10 -0
  3131. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/fid_in_func_status.py +17 -0
  3132. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/fid_not_in_func_status.py +10 -0
  3133. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_already_exists.py +12 -0
  3134. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_does_not_exist.py +10 -0
  3135. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_exists.py +12 -0
  3136. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_is_active_given.py +10 -0
  3137. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_is_not_active_given.py +20 -0
  3138. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_not_already_exist.py +10 -0
  3139. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/iid_in_inv_status.py +22 -0
  3140. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/invocation_is_in_progress.py +22 -0
  3141. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/invocation_slot_available.py +11 -0
  3142. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_failed_write_cluster_updating_seq.py +17 -0
  3143. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_function_has_been_deployed_seq.py +17 -0
  3144. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_function_has_been_invoked_seq.py +17 -0
  3145. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_written_record_to_cluster_seq.py +16 -0
  3146. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_has_been_created_seq.py +12 -0
  3147. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_update_has_begun_seq.py +11 -0
  3148. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_update_has_completed_seq.py +11 -0
  3149. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_invocation_is_in_progress.py +10 -0
  3150. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_invocation_slot_available.py +10 -0
  3151. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_record_slot_available.py +10 -0
  3152. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/record_slot_available.py +10 -0
  3153. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/test_scenarios.py +27 -0
  3154. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/__init__.py +9 -0
  3155. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/_inv_lambda_memorydb_every_existing_record_references_a_cluster_that_exists.py +10 -0
  3156. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/_inv_lambda_memorydb_every_in_progress_invocation_references_an_active_lambda_fu.py +12 -0
  3157. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_available_again_then.py +11 -0
  3158. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_available_then.py +11 -0
  3159. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_updating_then.py +11 -0
  3160. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/func_is_active_then.py +17 -0
  3161. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/invocation_failed_connection_refused.py +11 -0
  3162. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/invocation_is_in_progress_then.py +16 -0
  3163. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/record_exists_invocation_success.py +13 -0
  3164. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/__init__.py +7 -0
  3165. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/create_memorydb_cluster.py +11 -0
  3166. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/deploy_lambda_function.py +20 -0
  3167. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/invocation_fails_cluster_updating.py +16 -0
  3168. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/invoke_function.py +29 -0
  3169. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/lambda_writes_record.py +18 -0
  3170. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/memorydb_cluster_update_begins.py +11 -0
  3171. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/memorydb_cluster_update_completes.py +11 -0
  3172. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/__init__.py +0 -0
  3173. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/client.py +29 -0
  3174. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/conftest.py +9 -0
  3175. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/constants.py +9 -0
  3176. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/__init__.py +34 -0
  3177. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cid_in_cluster_status.py +12 -0
  3178. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cid_not_in_cluster_status.py +10 -0
  3179. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_already_exists.py +12 -0
  3180. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_does_not_exist.py +10 -0
  3181. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_exists.py +12 -0
  3182. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_available_given.py +12 -0
  3183. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_not_available_given.py +12 -0
  3184. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_not_stopped_given.py +12 -0
  3185. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_stopped_given.py +12 -0
  3186. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_not_already_exist.py +10 -0
  3187. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/fid_in_func_status.py +17 -0
  3188. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/fid_not_in_func_status.py +10 -0
  3189. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_already_exists.py +12 -0
  3190. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_does_not_exist.py +10 -0
  3191. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_exists.py +12 -0
  3192. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_is_active_given.py +10 -0
  3193. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_is_not_active_given.py +20 -0
  3194. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_not_already_exist.py +10 -0
  3195. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/iid_in_inv_status.py +22 -0
  3196. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/invocation_is_in_progress.py +22 -0
  3197. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/invocation_slot_available.py +11 -0
  3198. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_executed_graph_query_succeeded_seq.py +16 -0
  3199. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_failed_connect_cluster_stopped_seq.py +17 -0
  3200. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_function_has_been_deployed_seq.py +17 -0
  3201. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_function_has_been_invoked_seq.py +17 -0
  3202. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_created_seq.py +12 -0
  3203. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_started_seq.py +11 -0
  3204. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_stopped_seq.py +11 -0
  3205. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_available_given.py +12 -0
  3206. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_not_available_given.py +12 -0
  3207. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_not_stopped_given.py +12 -0
  3208. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_stopped_given.py +12 -0
  3209. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/no_invocation_is_in_progress.py +10 -0
  3210. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/no_invocation_slot_available.py +10 -0
  3211. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/test_scenarios.py +27 -0
  3212. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/__init__.py +9 -0
  3213. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/_inv_lambda_neptune_every_in_progress_invocation_references_an_active_lambda_fun.py +12 -0
  3214. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/_inv_lambda_neptune_every_successful_invocation_recorded_which_cluster_it_querie.py +10 -0
  3215. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_available_ready_then.py +11 -0
  3216. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_available_then.py +11 -0
  3217. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_stopped_then.py +11 -0
  3218. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/func_is_active_then.py +17 -0
  3219. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_failed_connection_error.py +11 -0
  3220. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_is_in_progress_then.py +16 -0
  3221. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_is_success_then.py +16 -0
  3222. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/__init__.py +7 -0
  3223. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/create_neptune_cluster.py +11 -0
  3224. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/deploy_lambda_function.py +20 -0
  3225. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/invocation_fails_cluster_stopped.py +16 -0
  3226. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/invoke_function.py +29 -0
  3227. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/lambda_executes_graph_query.py +16 -0
  3228. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/start_neptune_cluster.py +11 -0
  3229. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/stop_neptune_cluster.py +11 -0
  3230. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/__init__.py +0 -0
  3231. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/client.py +26 -0
  3232. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/conftest.py +9 -0
  3233. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/constants.py +11 -0
  3234. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/__init__.py +36 -0
  3235. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/did_in_domain_status.py +12 -0
  3236. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/did_not_in_domain_status.py +10 -0
  3237. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/document_slot_available.py +10 -0
  3238. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_already_exists.py +15 -0
  3239. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_does_not_exist.py +10 -0
  3240. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_exists.py +12 -0
  3241. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_is_active_given.py +15 -0
  3242. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_is_not_active_given.py +20 -0
  3243. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_not_already_exist.py +10 -0
  3244. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/fid_in_func_status.py +17 -0
  3245. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/fid_not_in_func_status.py +10 -0
  3246. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_already_exists.py +12 -0
  3247. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_does_not_exist.py +10 -0
  3248. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_exists.py +12 -0
  3249. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_is_active_given.py +10 -0
  3250. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_is_not_active_given.py +20 -0
  3251. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_not_already_exist.py +10 -0
  3252. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/iid_in_inv_status.py +22 -0
  3253. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_already_exists.py +11 -0
  3254. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_does_not_exist.py +10 -0
  3255. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_domain_is_active.py +11 -0
  3256. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_domain_is_not_active.py +11 -0
  3257. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_exists.py +11 -0
  3258. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_not_already_exist.py +10 -0
  3259. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/invocation_is_in_progress.py +22 -0
  3260. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/invocation_slot_available.py +11 -0
  3261. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_function_has_been_deployed_seq.py +17 -0
  3262. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_function_has_been_invoked_seq.py +17 -0
  3263. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_indexed_document_seq.py +11 -0
  3264. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_invocation_completed_successfully_seq.py +17 -0
  3265. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_invocation_has_failed_seq.py +17 -0
  3266. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_document_slot_available.py +10 -0
  3267. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_invocation_is_in_progress.py +10 -0
  3268. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_invocation_slot_available.py +10 -0
  3269. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/opensearch_domain_has_been_created_seq.py +12 -0
  3270. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/opensearch_index_has_been_created_seq.py +11 -0
  3271. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/test_scenarios.py +27 -0
  3272. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/__init__.py +10 -0
  3273. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/_inv_lambda_opensearch_every_existing_index_belongs_to_an_active_domain.py +10 -0
  3274. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/_inv_lambda_opensearch_every_in_progress_invocation_references_an_active_lambda_.py +12 -0
  3275. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/_inv_lambda_opensearch_every_indexed_document_belongs_to_an_existing_index.py +10 -0
  3276. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/document_is_indexed.py +11 -0
  3277. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/domain_is_active_then.py +17 -0
  3278. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/func_is_active_then.py +17 -0
  3279. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/index_exists_then.py +11 -0
  3280. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_failed_then.py +16 -0
  3281. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_in_progress_then.py +16 -0
  3282. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_success_then.py +16 -0
  3283. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/__init__.py +7 -0
  3284. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/create_opensearch_domain.py +20 -0
  3285. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/create_opensearch_index.py +11 -0
  3286. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/deploy_lambda_function.py +20 -0
  3287. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/invoke_function.py +29 -0
  3288. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_indexes_document.py +23 -0
  3289. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_invocation_fails.py +16 -0
  3290. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_invocation_succeeds.py +16 -0
  3291. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/__init__.py +0 -0
  3292. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/client.py +34 -0
  3293. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/conftest.py +9 -0
  3294. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/constants.py +9 -0
  3295. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/__init__.py +34 -0
  3296. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_available_given.py +12 -0
  3297. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_failing_over_given.py +12 -0
  3298. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_not_available_given.py +12 -0
  3299. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_not_failing_over_given.py +12 -0
  3300. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/did_in_db_status.py +12 -0
  3301. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/did_not_in_db_status.py +10 -0
  3302. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/fid_in_func_status.py +17 -0
  3303. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/fid_not_in_func_status.py +10 -0
  3304. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_already_exists.py +12 -0
  3305. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_does_not_exist.py +10 -0
  3306. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_exists.py +12 -0
  3307. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_is_active_given.py +10 -0
  3308. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_is_not_active_given.py +20 -0
  3309. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_not_already_exist.py +10 -0
  3310. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/iid_in_inv_status.py +22 -0
  3311. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_already_exists.py +12 -0
  3312. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_does_not_exist.py +10 -0
  3313. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_exists.py +12 -0
  3314. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_available_given.py +12 -0
  3315. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_failing_over_given.py +12 -0
  3316. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_not_available_given.py +12 -0
  3317. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_not_failing_over_given.py +12 -0
  3318. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_not_already_exist.py +10 -0
  3319. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/invocation_is_in_progress.py +22 -0
  3320. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/invocation_slot_available.py +11 -0
  3321. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_executed_sql_succeeded_seq.py +16 -0
  3322. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_failed_to_connect_failover_seq.py +11 -0
  3323. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_function_has_been_deployed_seq.py +17 -0
  3324. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_function_has_been_invoked_seq.py +17 -0
  3325. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/no_invocation_is_in_progress.py +10 -0
  3326. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/no_invocation_slot_available.py +10 -0
  3327. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_database_instance_has_been_created_seq.py +12 -0
  3328. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_failover_has_completed_seq.py +11 -0
  3329. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_multi_az_failover_has_begun_seq.py +11 -0
  3330. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/test_scenarios.py +27 -0
  3331. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/__init__.py +9 -0
  3332. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/_inv_lambda_rds_every_in_progress_invocation_references_an_active_lambda_functio.py +12 -0
  3333. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/_inv_lambda_rds_every_successful_invocation_recorded_which_database_it_queried.py +10 -0
  3334. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/func_is_active_then.py +17 -0
  3335. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_available_again_then.py +11 -0
  3336. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_available_then.py +11 -0
  3337. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_failing_over_then.py +11 -0
  3338. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_failed_connection_error.py +11 -0
  3339. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_is_in_progress_then.py +16 -0
  3340. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_is_success_then.py +16 -0
  3341. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/__init__.py +7 -0
  3342. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/create_rds_instance.py +11 -0
  3343. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/deploy_lambda_function.py +20 -0
  3344. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/invocation_fails_db_unavailable.py +16 -0
  3345. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/invoke_function.py +29 -0
  3346. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/lambda_executes_sql.py +18 -0
  3347. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/rds_failover_begins.py +11 -0
  3348. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/rds_failover_completes.py +11 -0
  3349. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/__init__.py +0 -0
  3350. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/client.py +26 -0
  3351. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/conftest.py +9 -0
  3352. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/constants.py +9 -0
  3353. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/__init__.py +28 -0
  3354. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bid_not_in_bucket_status.py +10 -0
  3355. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_already_exists.py +12 -0
  3356. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_does_not_exist.py +10 -0
  3357. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_exists.py +12 -0
  3358. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_is_active_given.py +10 -0
  3359. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_is_not_active_given.py +20 -0
  3360. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_not_already_exist.py +10 -0
  3361. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/fid_in_func_status.py +17 -0
  3362. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/fid_not_in_func_status.py +10 -0
  3363. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_already_exists.py +12 -0
  3364. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_does_not_exist.py +10 -0
  3365. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_exists.py +12 -0
  3366. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_is_active_given.py +10 -0
  3367. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_is_not_active_given.py +20 -0
  3368. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_not_already_exist.py +10 -0
  3369. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/iid_in_inv_status.py +22 -0
  3370. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/invocation_is_in_progress.py +22 -0
  3371. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/invocation_slot_available.py +11 -0
  3372. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_function_has_been_deployed_seq.py +17 -0
  3373. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_function_has_been_invoked_seq.py +17 -0
  3374. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_invocation_completed_successfully_seq.py +17 -0
  3375. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_invocation_has_failed_seq.py +17 -0
  3376. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_written_object_to_bucket_seq.py +11 -0
  3377. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_invocation_is_in_progress.py +10 -0
  3378. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_invocation_slot_available.py +10 -0
  3379. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_object_slot_available.py +10 -0
  3380. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/object_slot_available.py +10 -0
  3381. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/s3_bucket_has_been_created_seq.py +12 -0
  3382. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/test_scenarios.py +27 -0
  3383. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/__init__.py +8 -0
  3384. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/_inv_lambda_s3api_every_existing_object_belongs_to_an_active_bucket.py +10 -0
  3385. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/_inv_lambda_s3api_every_in_progress_invocation_references_an_active_lambda_funct.py +12 -0
  3386. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/bucket_is_active_then.py +17 -0
  3387. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/func_is_active_then.py +17 -0
  3388. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_failed_then.py +16 -0
  3389. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_in_progress_then.py +16 -0
  3390. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_success_then.py +16 -0
  3391. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/object_exists_in_bucket.py +11 -0
  3392. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/__init__.py +6 -0
  3393. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/create_s3_bucket.py +20 -0
  3394. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/deploy_lambda_function.py +20 -0
  3395. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/invoke_function.py +29 -0
  3396. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_invocation_fails.py +16 -0
  3397. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_invocation_succeeds.py +16 -0
  3398. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_writes_object.py +11 -0
  3399. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/__init__.py +0 -0
  3400. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/client.py +50 -0
  3401. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/conftest.py +9 -0
  3402. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/constants.py +17 -0
  3403. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/__init__.py +39 -0
  3404. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_a_table_is_active_given.py +10 -0
  3405. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bid_in_bucket_status.py +12 -0
  3406. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bid_not_in_bucket_status.py +10 -0
  3407. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bucket_already_exists.py +15 -0
  3408. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bucket_not_already_exist.py +10 -0
  3409. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_failed_write_table_deleting_seq.py +17 -0
  3410. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_fid_in_func_status.py +12 -0
  3411. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_fid_not_in_func_status.py +10 -0
  3412. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_already_exists.py +12 -0
  3413. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_does_not_exist.py +10 -0
  3414. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_exists.py +12 -0
  3415. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_has_been_deployed_seq.py +17 -0
  3416. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_has_been_invoked_seq.py +17 -0
  3417. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_is_active_given.py +10 -0
  3418. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_is_not_active_given.py +20 -0
  3419. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_not_already_exist.py +10 -0
  3420. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_iid_in_inv_status.py +22 -0
  3421. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_invocation_is_in_progress.py +17 -0
  3422. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_invocation_slot_available.py +11 -0
  3423. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_invocation_is_in_progress.py +10 -0
  3424. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_invocation_slot_available.py +10 -0
  3425. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_record_slot_available.py +10 -0
  3426. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_table_is_active.py +10 -0
  3427. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_record_slot_available.py +10 -0
  3428. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_already_exists.py +26 -0
  3429. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_has_been_created_seq.py +12 -0
  3430. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_is_active_given.py +15 -0
  3431. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_is_not_active_given.py +20 -0
  3432. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_deletion_has_been_initiated_seq.py +26 -0
  3433. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_does_not_exist.py +10 -0
  3434. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_exists.py +26 -0
  3435. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_has_been_created_seq.py +26 -0
  3436. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_active_given.py +26 -0
  3437. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_already_deleting_given.py +29 -0
  3438. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_deleting_given.py +29 -0
  3439. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_not_deleting_given.py +26 -0
  3440. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_not_already_exist.py +10 -0
  3441. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_tid_in_table_status.py +26 -0
  3442. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_written_record_succeeded_seq.py +11 -0
  3443. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/test_scenarios.py +27 -0
  3444. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/__init__.py +9 -0
  3445. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/_inv_lambda_s3tables_every_existing_record_references_a_table_that_exists.py +10 -0
  3446. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/_inv_lambda_s3tables_every_in_progress_invocation_references_an_active_lambda_fu.py +12 -0
  3447. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_bucket_is_active_then.py +17 -0
  3448. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_function_is_active_then.py +17 -0
  3449. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_invocation_failed_resource_not_found.py +11 -0
  3450. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_invocation_is_in_progress_then.py +16 -0
  3451. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_record_exists_invocation_success.py +11 -0
  3452. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_table_is_active_then.py +17 -0
  3453. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_table_is_deleting_then.py +14 -0
  3454. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/__init__.py +7 -0
  3455. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_create_table.py +28 -0
  3456. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_create_table_bucket.py +19 -0
  3457. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_deploy_function.py +25 -0
  3458. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_function_fails_write_table_deleting.py +14 -0
  3459. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_function_writes_record_succeeds.py +11 -0
  3460. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_initiate_table_deletion.py +22 -0
  3461. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_invoke_function.py +31 -0
  3462. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/__init__.py +0 -0
  3463. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/client.py +26 -0
  3464. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/conftest.py +9 -0
  3465. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/constants.py +11 -0
  3466. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/__init__.py +31 -0
  3467. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/fid_in_func_status.py +17 -0
  3468. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/fid_not_in_func_status.py +10 -0
  3469. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_already_exists.py +12 -0
  3470. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_does_not_exist.py +10 -0
  3471. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_exists.py +12 -0
  3472. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_is_active_given.py +10 -0
  3473. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_is_not_active_given.py +20 -0
  3474. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_not_already_exist.py +10 -0
  3475. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/iid_in_inv_status.py +22 -0
  3476. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/invocation_is_in_progress.py +22 -0
  3477. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/invocation_slot_available.py +11 -0
  3478. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_failed_secret_pending_deletion_seq.py +17 -0
  3479. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_function_has_been_deployed_seq.py +17 -0
  3480. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_function_has_been_invoked_seq.py +17 -0
  3481. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_read_active_secret_succeeded_seq.py +11 -0
  3482. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/no_invocation_is_in_progress.py +10 -0
  3483. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/no_invocation_slot_available.py +10 -0
  3484. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_already_exists.py +12 -0
  3485. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_does_not_exist.py +10 -0
  3486. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_exists.py +12 -0
  3487. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_exists_and_is_active_given.py +12 -0
  3488. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_has_been_created_seq.py +12 -0
  3489. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_has_been_scheduled_for_deletion_seq.py +19 -0
  3490. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_active_given.py +10 -0
  3491. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_not_active_given.py +24 -0
  3492. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_not_pending_deletion.py +13 -0
  3493. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_pending_deletion.py +25 -0
  3494. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_not_already_exist.py +10 -0
  3495. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_not_exist_or_not_active.py +10 -0
  3496. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/sid_in_secret_status.py +12 -0
  3497. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/sid_not_in_secret_status.py +10 -0
  3498. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/test_scenarios.py +27 -0
  3499. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/__init__.py +8 -0
  3500. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/_inv_lambda_secretsmanager_every_in_progress_invocation_references_an_active_lam.py +12 -0
  3501. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/_inv_lambda_secretsmanager_every_successful_invocation_recorded_which_secret_it_.py +10 -0
  3502. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/func_is_active_then.py +17 -0
  3503. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_failed_resource_not_found.py +11 -0
  3504. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_is_in_progress_then.py +16 -0
  3505. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_is_success_then.py +16 -0
  3506. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/secret_is_active_then.py +17 -0
  3507. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/secret_is_pending_deletion_then.py +21 -0
  3508. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/__init__.py +6 -0
  3509. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/create_secret.py +20 -0
  3510. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/deploy_lambda_function.py +20 -0
  3511. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invocation_fails_secret_pending.py +27 -0
  3512. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invocation_succeeds_secret.py +27 -0
  3513. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invoke_function.py +29 -0
  3514. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/schedule_secret_deletion.py +21 -0
  3515. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/__init__.py +0 -0
  3516. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/client.py +27 -0
  3517. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/conftest.py +9 -0
  3518. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/constants.py +13 -0
  3519. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/__init__.py +26 -0
  3520. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/fid_in_func_status.py +17 -0
  3521. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/fid_not_in_func_status.py +10 -0
  3522. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_already_exists.py +12 -0
  3523. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_does_not_exist.py +10 -0
  3524. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_exists.py +12 -0
  3525. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_is_active_given.py +10 -0
  3526. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_is_not_active_given.py +20 -0
  3527. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_not_already_exist.py +10 -0
  3528. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/iid_in_inv_status.py +22 -0
  3529. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/invocation_is_in_progress.py +22 -0
  3530. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/invocation_slot_available.py +11 -0
  3531. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_function_has_been_deployed_seq.py +17 -0
  3532. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_function_has_been_invoked_seq.py +17 -0
  3533. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_invocation_completed_successfully_seq.py +17 -0
  3534. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_invocation_has_failed_seq.py +17 -0
  3535. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_published_message_to_topic_seq.py +11 -0
  3536. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/no_invocation_is_in_progress.py +10 -0
  3537. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/no_invocation_slot_available.py +10 -0
  3538. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/sns_topic_has_been_created_seq.py +12 -0
  3539. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/tid_not_in_topic_status.py +10 -0
  3540. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_already_exists.py +12 -0
  3541. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_does_not_exist.py +10 -0
  3542. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_exists.py +12 -0
  3543. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_is_active_given.py +10 -0
  3544. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_is_not_active_given.py +20 -0
  3545. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_not_already_exist.py +10 -0
  3546. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/test_scenarios.py +27 -0
  3547. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/__init__.py +9 -0
  3548. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/every_in_progress_invocation_references_active_function_sns.py +12 -0
  3549. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/func_is_active_then.py +17 -0
  3550. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_failed_then.py +16 -0
  3551. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_in_progress_then.py +16 -0
  3552. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_success_then.py +16 -0
  3553. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/message_published_to_topic.py +11 -0
  3554. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/operation_is_rejected_lambda_sns.py +14 -0
  3555. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/publishing_requires_active_topic.py +10 -0
  3556. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/topic_is_active_then.py +15 -0
  3557. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/__init__.py +6 -0
  3558. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/create_sns_topic.py +19 -0
  3559. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/deploy_lambda_function.py +20 -0
  3560. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/invoke_function.py +29 -0
  3561. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_invocation_fails.py +16 -0
  3562. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_invocation_succeeds.py +16 -0
  3563. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_publishes_to_topic.py +11 -0
  3564. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/__init__.py +0 -0
  3565. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/client.py +44 -0
  3566. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/conftest.py +9 -0
  3567. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/constants.py +15 -0
  3568. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/__init__.py +53 -0
  3569. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/available_message_in_mapped_queue.py +11 -0
  3570. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_does_not_exist.py +10 -0
  3571. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_exists.py +12 -0
  3572. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_is_active_given.py +10 -0
  3573. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_is_not_active_given.py +21 -0
  3574. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/eid_in_esm_status.py +11 -0
  3575. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/eid_not_in_esm_status.py +10 -0
  3576. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_already_exists.py +11 -0
  3577. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_does_not_exist.py +10 -0
  3578. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_exists.py +11 -0
  3579. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_has_polled_queue_and_invoked_seq.py +11 -0
  3580. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_is_enabled.py +11 -0
  3581. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_is_not_enabled.py +11 -0
  3582. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_not_already_exist.py +10 -0
  3583. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/fid_in_func_status.py +17 -0
  3584. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/fid_not_in_func_status.py +10 -0
  3585. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_already_exists.py +12 -0
  3586. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_does_not_exist.py +10 -0
  3587. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_exists.py +12 -0
  3588. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_is_active_given.py +10 -0
  3589. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_is_not_active_given.py +20 -0
  3590. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_not_already_exist.py +10 -0
  3591. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/iid_in_inv_status.py +22 -0
  3592. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/invocation_is_in_progress.py +22 -0
  3593. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/invocation_slot_available.py +11 -0
  3594. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_esm_has_been_created_seq.py +11 -0
  3595. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_function_has_been_deployed_seq.py +12 -0
  3596. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_invocation_completed_successfully_seq.py +17 -0
  3597. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_invocation_has_failed_seq.py +17 -0
  3598. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/mapped_function_is_active.py +11 -0
  3599. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/mapped_function_is_not_active.py +11 -0
  3600. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/message_has_arrived_in_sqs_queue_seq.py +11 -0
  3601. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/message_slot_available.py +10 -0
  3602. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_available_message_in_mapped_queue.py +11 -0
  3603. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_invocation_is_in_progress.py +10 -0
  3604. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_invocation_slot_available.py +10 -0
  3605. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_message_slot_available.py +10 -0
  3606. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/qid_in_queue_status.py +12 -0
  3607. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/qid_not_in_queue_status.py +10 -0
  3608. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_already_exists.py +12 -0
  3609. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_does_not_exist.py +10 -0
  3610. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_exists.py +12 -0
  3611. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_is_active_given.py +10 -0
  3612. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_is_not_active_given.py +21 -0
  3613. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_not_already_exist.py +10 -0
  3614. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_does_not_exist.py +10 -0
  3615. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_exists.py +12 -0
  3616. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_has_dlq.py +28 -0
  3617. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_is_active_given.py +10 -0
  3618. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_is_not_active_given.py +21 -0
  3619. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_no_dlq.py +10 -0
  3620. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/sqs_queue_configured_with_dlq_seq.py +28 -0
  3621. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/sqs_queue_has_been_created_seq.py +12 -0
  3622. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/test_scenarios.py +27 -0
  3623. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/__init__.py +15 -0
  3624. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/esm_is_enabled_then.py +13 -0
  3625. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_enabled_esm_references_active_queue.py +10 -0
  3626. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_in_progress_invocation_initiated_by_enabled_esm.py +12 -0
  3627. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_in_progress_invocation_references_active_function.py +12 -0
  3628. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_message_belongs_to_active_queue.py +10 -0
  3629. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/func_is_active_then.py +17 -0
  3630. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_is_failed_then.py +16 -0
  3631. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_is_in_progress_then.py +16 -0
  3632. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_success_message_deleted.py +11 -0
  3633. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_available_for_processing.py +11 -0
  3634. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_in_flight_invocation_in_progress.py +11 -0
  3635. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_reprocessing_or_dlq.py +16 -0
  3636. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/operation_is_rejected_lambda_sqs.py +14 -0
  3637. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/queue_is_active_no_dlq.py +20 -0
  3638. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/redrive_configured.py +27 -0
  3639. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/__init__.py +9 -0
  3640. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/configure_redrive.py +27 -0
  3641. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/create_event_source_mapping.py +11 -0
  3642. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/create_sqs_queue.py +19 -0
  3643. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/deploy_lambda_function.py +25 -0
  3644. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/esm_poll_and_invoke.py +11 -0
  3645. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/invoke_function.py +29 -0
  3646. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/lambda_invocation_fails.py +16 -0
  3647. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/lambda_invocation_succeeds.py +16 -0
  3648. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/message_arrives.py +11 -0
  3649. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/__init__.py +0 -0
  3650. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/client.py +29 -0
  3651. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/conftest.py +9 -0
  3652. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/constants.py +9 -0
  3653. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/__init__.py +29 -0
  3654. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/fid_in_func_status.py +17 -0
  3655. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/fid_not_in_func_status.py +10 -0
  3656. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_already_exists.py +12 -0
  3657. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_does_not_exist.py +10 -0
  3658. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_exists.py +12 -0
  3659. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_is_active_given.py +10 -0
  3660. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_is_not_active_given.py +20 -0
  3661. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_not_already_exist.py +10 -0
  3662. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/iid_in_inv_status.py +22 -0
  3663. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/invocation_is_in_progress.py +22 -0
  3664. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/invocation_slot_available.py +11 -0
  3665. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_function_has_been_deployed_seq.py +17 -0
  3666. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_function_has_been_invoked_seq.py +17 -0
  3667. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_invocation_completed_successfully_seq.py +17 -0
  3668. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_invocation_has_failed_seq.py +17 -0
  3669. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_sent_message_to_sqs_seq.py +11 -0
  3670. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/message_slot_available.py +10 -0
  3671. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_invocation_is_in_progress.py +10 -0
  3672. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_invocation_slot_available.py +10 -0
  3673. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_message_slot_available.py +10 -0
  3674. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/qid_not_in_queue_status.py +10 -0
  3675. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_already_exists.py +12 -0
  3676. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_does_not_exist.py +10 -0
  3677. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_existed.py +12 -0
  3678. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_exists.py +12 -0
  3679. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_is_active_given.py +10 -0
  3680. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_is_not_active_given.py +21 -0
  3681. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_not_already_exist.py +10 -0
  3682. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/sqs_queue_has_been_created_seq.py +12 -0
  3683. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/test_scenarios.py +27 -0
  3684. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/__init__.py +9 -0
  3685. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/every_available_message_belongs_to_active_queue_producer.py +10 -0
  3686. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/every_in_progress_invocation_references_active_function_producer.py +12 -0
  3687. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/func_is_active_then.py +17 -0
  3688. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_failed_then.py +16 -0
  3689. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_in_progress_then.py +16 -0
  3690. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_success_then.py +16 -0
  3691. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/message_available_in_queue.py +11 -0
  3692. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/operation_is_rejected_lambda_sqs_producer.py +14 -0
  3693. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/queue_is_active_then.py +20 -0
  3694. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/__init__.py +6 -0
  3695. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/create_sqs_queue.py +20 -0
  3696. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/deploy_lambda_function.py +20 -0
  3697. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/invoke_function.py +29 -0
  3698. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_invocation_fails.py +16 -0
  3699. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_invocation_succeeds.py +16 -0
  3700. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_sends_message.py +11 -0
  3701. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/__init__.py +0 -0
  3702. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/client.py +26 -0
  3703. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/conftest.py +9 -0
  3704. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/constants.py +11 -0
  3705. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/__init__.py +30 -0
  3706. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/fid_in_func_status.py +17 -0
  3707. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/fid_not_in_func_status.py +10 -0
  3708. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_already_exists.py +12 -0
  3709. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_does_not_exist.py +10 -0
  3710. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_exists.py +12 -0
  3711. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_is_active_given.py +10 -0
  3712. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_is_not_active_given.py +20 -0
  3713. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_not_already_exist.py +10 -0
  3714. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/iid_in_inv_status.py +22 -0
  3715. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/invocation_is_in_progress.py +22 -0
  3716. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/invocation_slot_available.py +11 -0
  3717. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_failed_parameter_deleted_seq.py +17 -0
  3718. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_function_has_been_deployed_seq.py +17 -0
  3719. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_function_has_been_invoked_seq.py +17 -0
  3720. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_read_parameter_succeeded_seq.py +11 -0
  3721. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/no_invocation_is_in_progress.py +10 -0
  3722. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/no_invocation_slot_available.py +10 -0
  3723. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_already_exists.py +12 -0
  3724. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_does_not_exist.py +10 -0
  3725. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_exists.py +12 -0
  3726. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_exists_given.py +10 -0
  3727. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_already_deleted.py +20 -0
  3728. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_deleted_given.py +10 -0
  3729. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_not_deleted_given.py +13 -0
  3730. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_not_already_exist.py +10 -0
  3731. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_not_exist_or_deleted.py +10 -0
  3732. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/pid_in_param_status.py +12 -0
  3733. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/pid_not_in_param_status.py +10 -0
  3734. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/ssm_parameter_has_been_created_seq.py +12 -0
  3735. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/ssm_parameter_has_been_deleted_seq.py +17 -0
  3736. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/test_scenarios.py +27 -0
  3737. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/__init__.py +9 -0
  3738. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/every_in_progress_invocation_references_active_function_ssm.py +12 -0
  3739. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/every_successful_invocation_recorded_parameter.py +10 -0
  3740. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/func_is_active_then.py +17 -0
  3741. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_failed_param_not_found.py +11 -0
  3742. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_is_in_progress_then.py +16 -0
  3743. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_is_success_then.py +16 -0
  3744. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/operation_is_rejected_lambda_ssm.py +14 -0
  3745. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/param_exists_and_readable.py +17 -0
  3746. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/param_is_deleted_then.py +19 -0
  3747. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/__init__.py +6 -0
  3748. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/create_parameter.py +20 -0
  3749. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/delete_parameter.py +18 -0
  3750. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/deploy_lambda_function.py +20 -0
  3751. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invocation_fails_param_not_found.py +19 -0
  3752. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invocation_reads_param_succeeds.py +19 -0
  3753. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invoke_function.py +29 -0
  3754. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/__init__.py +0 -0
  3755. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/client.py +29 -0
  3756. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/conftest.py +9 -0
  3757. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/constants.py +17 -0
  3758. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/__init__.py +36 -0
  3759. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/eid_in_exec_status.py +16 -0
  3760. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/execution_is_running_given.py +16 -0
  3761. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/execution_slot_available.py +11 -0
  3762. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/fid_in_func_status.py +17 -0
  3763. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/fid_not_in_func_status.py +10 -0
  3764. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_already_exists.py +12 -0
  3765. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_does_not_exist.py +10 -0
  3766. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_exists.py +12 -0
  3767. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_is_active_given.py +10 -0
  3768. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_is_not_active_given.py +20 -0
  3769. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_not_already_exist.py +10 -0
  3770. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/iid_in_inv_status.py +22 -0
  3771. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/invocation_is_in_progress.py +22 -0
  3772. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/invocation_slot_available.py +11 -0
  3773. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_failed_to_start_execution_seq.py +16 -0
  3774. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_function_has_been_deployed_seq.py +17 -0
  3775. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_function_has_been_invoked_seq.py +17 -0
  3776. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_started_execution_succeeded_seq.py +11 -0
  3777. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_execution_is_running.py +10 -0
  3778. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_execution_slot_available.py +10 -0
  3779. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_invocation_is_in_progress.py +10 -0
  3780. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_invocation_slot_available.py +10 -0
  3781. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/running_execution_completed_seq.py +11 -0
  3782. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sfn_state_machine_has_been_created_seq.py +12 -0
  3783. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sfn_state_machine_has_been_deleted_seq.py +17 -0
  3784. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_already_exists.py +12 -0
  3785. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_does_not_exist.py +10 -0
  3786. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_exists.py +12 -0
  3787. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_active_given.py +10 -0
  3788. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_already_deleted.py +25 -0
  3789. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_deleted_given.py +10 -0
  3790. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_not_deleted_given.py +12 -0
  3791. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_not_already_exist.py +10 -0
  3792. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_not_exist_or_deleted.py +10 -0
  3793. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/smid_in_sm_status.py +12 -0
  3794. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/smid_not_in_sm_status.py +10 -0
  3795. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/test_scenarios.py +27 -0
  3796. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/__init__.py +10 -0
  3797. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/every_in_progress_invocation_references_active_function_sfn.py +12 -0
  3798. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/every_running_execution_references_existing_sm.py +12 -0
  3799. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/execution_is_succeeded_then.py +11 -0
  3800. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/execution_running_invocation_success.py +13 -0
  3801. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/func_is_active_then.py +17 -0
  3802. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/invocation_failed_sm_not_exist.py +11 -0
  3803. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/invocation_is_in_progress_then.py +16 -0
  3804. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/operation_is_rejected_lambda_stepfunctions.py +14 -0
  3805. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/sm_is_active_then.py +17 -0
  3806. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/sm_is_deleted_then.py +23 -0
  3807. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/__init__.py +7 -0
  3808. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/create_state_machine.py +21 -0
  3809. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/delete_state_machine.py +19 -0
  3810. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/deploy_lambda_function.py +20 -0
  3811. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/execution_completes.py +11 -0
  3812. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invocation_fails_sm_deleted.py +27 -0
  3813. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invocation_starts_execution.py +27 -0
  3814. local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invoke_function.py +29 -0
  3815. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/__init__.py +0 -0
  3816. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/client.py +38 -0
  3817. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/conftest.py +9 -0
  3818. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/constants.py +11 -0
  3819. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/__init__.py +105 -0
  3820. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_already_exists.py +12 -0
  3821. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_does_not_exist.py +10 -0
  3822. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_exists.py +12 -0
  3823. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_active_given.py +10 -0
  3824. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_creating_given.py +11 -0
  3825. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_deleting_given.py +11 -0
  3826. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_modifying_given.py +17 -0
  3827. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_active_given.py +11 -0
  3828. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_creating_given.py +10 -0
  3829. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_deleting_given.py +10 -0
  3830. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_modifying_given.py +10 -0
  3831. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_not_already_exist.py +10 -0
  3832. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/aid_in_acl_status.py +12 -0
  3833. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/aid_not_in_acl_status.py +10 -0
  3834. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_in_cluster_status.py +12 -0
  3835. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_in_tag_exists.py +12 -0
  3836. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_not_in_cluster_status.py +10 -0
  3837. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_already_exists.py +12 -0
  3838. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_does_not_exist.py +10 -0
  3839. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_exists.py +12 -0
  3840. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_available_given.py +10 -0
  3841. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_creating_given.py +13 -0
  3842. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_deleting_given.py +11 -0
  3843. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_modifying_given.py +17 -0
  3844. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_available_given.py +13 -0
  3845. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_creating_given.py +10 -0
  3846. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_deleting_given.py +10 -0
  3847. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_modifying_given.py +10 -0
  3848. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_restoring_given.py +10 -0
  3849. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_snapshotting_given.py +10 -0
  3850. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_restoring_given.py +11 -0
  3851. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_snapshotting_given.py +11 -0
  3852. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_not_already_exist.py +10 -0
  3853. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_associated_with_cluster_seq.py +13 -0
  3854. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_created_seq.py +12 -0
  3855. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_deleted_seq.py +17 -0
  3856. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_deletion_completed_seq.py +12 -0
  3857. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_finished_creating_seq.py +12 -0
  3858. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_update_completed_seq.py +12 -0
  3859. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_updated_seq.py +12 -0
  3860. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_configuration_updated_seq.py +12 -0
  3861. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_deletion_completed_seq.py +12 -0
  3862. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_been_created_seq.py +12 -0
  3863. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_been_deleted_seq.py +17 -0
  3864. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_finished_creating_seq.py +12 -0
  3865. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_restore_completed_seq.py +12 -0
  3866. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_restored_from_snapshot_seq.py +12 -0
  3867. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_update_completed_seq.py +12 -0
  3868. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_shard_failover_triggered_seq.py +12 -0
  3869. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_created_seq.py +13 -0
  3870. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_deleted_seq.py +18 -0
  3871. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_deletion_completed_seq.py +12 -0
  3872. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_finished_creating_seq.py +12 -0
  3873. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_tags_added_seq.py +11 -0
  3874. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_tags_removed_seq.py +11 -0
  3875. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_added_to_acl_seq.py +13 -0
  3876. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_created_seq.py +12 -0
  3877. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_deleted_seq.py +17 -0
  3878. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_deletion_completed_seq.py +12 -0
  3879. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_finished_creating_seq.py +12 -0
  3880. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_removed_from_acl_seq.py +13 -0
  3881. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_update_completed_seq.py +12 -0
  3882. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_updated_seq.py +12 -0
  3883. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/multi_az_enabled_given.py +11 -0
  3884. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/multi_az_not_enabled_given.py +10 -0
  3885. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_does_not_have_tag_entry.py +10 -0
  3886. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_does_not_have_tag_entry_guard.py +10 -0
  3887. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_has_tag_entry.py +11 -0
  3888. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_has_tag_entry_guard.py +11 -0
  3889. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/sid_in_snapshot_status.py +13 -0
  3890. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_belongs_to_cluster.py +10 -0
  3891. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_does_not_belong_to_cluster.py +11 -0
  3892. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_does_not_exist.py +10 -0
  3893. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_exists.py +13 -0
  3894. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_available_given.py +10 -0
  3895. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_creating_given.py +11 -0
  3896. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_deleting_given.py +11 -0
  3897. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_available_given.py +11 -0
  3898. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_creating_given.py +10 -0
  3899. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_deleting_given.py +10 -0
  3900. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_slot_available.py +10 -0
  3901. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_slot_not_available.py +10 -0
  3902. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/system_is_initialized.py +10 -0
  3903. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/target_cluster_slot_available.py +10 -0
  3904. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/target_cluster_slot_not_available.py +10 -0
  3905. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/uid_in_user_status.py +12 -0
  3906. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/uid_not_in_user_status.py +10 -0
  3907. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_already_exists.py +12 -0
  3908. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_does_not_exist.py +10 -0
  3909. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_exists.py +12 -0
  3910. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_active_given.py +10 -0
  3911. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_already_member_of_acl.py +11 -0
  3912. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_creating_given.py +11 -0
  3913. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_deleting_given.py +11 -0
  3914. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_member_of_acl.py +11 -0
  3915. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_modifying_given.py +17 -0
  3916. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_active_given.py +11 -0
  3917. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_already_member_of_acl.py +10 -0
  3918. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_creating_given.py +10 -0
  3919. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_deleting_given.py +10 -0
  3920. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_member_of_acl.py +10 -0
  3921. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_modifying_given.py +10 -0
  3922. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_membership_entry_does_not_exist.py +10 -0
  3923. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_membership_entry_exists.py +11 -0
  3924. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_not_already_exist.py +10 -0
  3925. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/test_scenarios.py +27 -0
  3926. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/__init__.py +35 -0
  3927. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_active_then.py +16 -0
  3928. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_creating_then.py +16 -0
  3929. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_deleted_then.py +12 -0
  3930. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_deleting_then.py +12 -0
  3931. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_modifying_then.py +18 -0
  3932. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_returns_to_active_then.py +11 -0
  3933. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/active_cluster_has_write_durability.py +10 -0
  3934. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/active_resources_have_tags.py +10 -0
  3935. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_available_then.py +16 -0
  3936. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_creating_then.py +21 -0
  3937. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_deleted_then.py +14 -0
  3938. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_deleting_then.py +14 -0
  3939. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_linked_to_acl_then.py +16 -0
  3940. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_modifying_then.py +18 -0
  3941. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_remains_available_after_failover_then.py +11 -0
  3942. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_returns_to_available_then.py +11 -0
  3943. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/no_deleting_acl_associated_with_cluster.py +10 -0
  3944. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/no_deleting_user_in_acl.py +10 -0
  3945. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/operation_is_rejected_then.py +15 -0
  3946. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/resource_remains_tagged_then.py +11 -0
  3947. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/resource_tag_state_unchanged_then.py +10 -0
  3948. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/restored_cluster_is_restoring_then.py +16 -0
  3949. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_available_cluster_returns_then.py +18 -0
  3950. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_creating_cluster_snapshotting_then.py +18 -0
  3951. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_is_deleted_then.py +14 -0
  3952. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_is_deleting_then.py +14 -0
  3953. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshotting_cluster_has_snapshot.py +12 -0
  3954. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_active_then.py +16 -0
  3955. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_creating_then.py +16 -0
  3956. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_deleted_then.py +14 -0
  3957. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_deleting_then.py +14 -0
  3958. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_member_of_acl_then.py +16 -0
  3959. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_modifying_then.py +18 -0
  3960. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_not_member_of_acl_then.py +14 -0
  3961. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_returns_to_active_then.py +11 -0
  3962. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/__init__.py +30 -0
  3963. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_deletion_completes.py +20 -0
  3964. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_finishes_creating.py +20 -0
  3965. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_update_completes.py +20 -0
  3966. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/add_tags.py +11 -0
  3967. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/add_user_to_acl.py +22 -0
  3968. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/associate_acl_with_cluster.py +22 -0
  3969. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_deletion_completes.py +15 -0
  3970. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_finishes_creating.py +15 -0
  3971. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_restore_completes.py +20 -0
  3972. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_update_completes.py +20 -0
  3973. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_acl.py +20 -0
  3974. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_cluster.py +22 -0
  3975. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_snapshot.py +22 -0
  3976. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_user.py +24 -0
  3977. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_acl.py +20 -0
  3978. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_cluster.py +20 -0
  3979. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_snapshot.py +20 -0
  3980. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_user.py +20 -0
  3981. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/remove_tags.py +11 -0
  3982. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/remove_user_from_acl.py +22 -0
  3983. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/restore_cluster.py +25 -0
  3984. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/shard_failover.py +20 -0
  3985. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/snapshot_deletion_completes.py +20 -0
  3986. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/snapshot_finishes_creating.py +20 -0
  3987. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_acl.py +22 -0
  3988. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_cluster.py +22 -0
  3989. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_user.py +22 -0
  3990. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_deletion_completes.py +20 -0
  3991. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_finishes_creating.py +20 -0
  3992. local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_update_completes.py +20 -0
  3993. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/__init__.py +0 -0
  3994. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/client.py +67 -0
  3995. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/conftest.py +9 -0
  3996. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/constants.py +9 -0
  3997. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/__init__.py +95 -0
  3998. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cid_in_cluster_status.py +12 -0
  3999. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cid_not_in_cluster_status.py +10 -0
  4000. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_already_exists.py +12 -0
  4001. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_does_not_exist.py +32 -0
  4002. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_exists.py +12 -0
  4003. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_has_no_non_deleted_instances.py +10 -0
  4004. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_has_non_deleted_instances.py +12 -0
  4005. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_available_given.py +10 -0
  4006. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_creating_given.py +14 -0
  4007. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_deleting_given.py +15 -0
  4008. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_modifying_given.py +17 -0
  4009. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_available_given.py +17 -0
  4010. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_creating_given.py +10 -0
  4011. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_deleting_given.py +10 -0
  4012. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_modifying_given.py +10 -0
  4013. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_restoring_given.py +10 -0
  4014. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_starting_given.py +10 -0
  4015. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_stopped_given.py +10 -0
  4016. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_stopping_given.py +10 -0
  4017. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_restoring_given.py +27 -0
  4018. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_starting_given.py +21 -0
  4019. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_stopped_given.py +19 -0
  4020. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_stopping_given.py +20 -0
  4021. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_not_already_exist.py +10 -0
  4022. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/iid_in_instance_status.py +13 -0
  4023. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_belongs_to_cluster.py +12 -0
  4024. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_does_not_belong_to_cluster.py +10 -0
  4025. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_does_not_exist.py +10 -0
  4026. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_exists.py +13 -0
  4027. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_already_primary.py +11 -0
  4028. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_available_given.py +10 -0
  4029. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_creating_given.py +24 -0
  4030. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_deleting_given.py +16 -0
  4031. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_modifying_given.py +17 -0
  4032. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_already_the_primary.py +10 -0
  4033. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_available_given.py +11 -0
  4034. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_creating_given.py +10 -0
  4035. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_deleting_given.py +10 -0
  4036. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_modifying_given.py +10 -0
  4037. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_primary_of_cluster.py +11 -0
  4038. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_rebooting_given.py +10 -0
  4039. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_the_primary.py +11 -0
  4040. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_primary_of_cluster.py +11 -0
  4041. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_rebooting_given.py +21 -0
  4042. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_the_primary.py +11 -0
  4043. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_slot_available.py +10 -0
  4044. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_slot_not_available.py +10 -0
  4045. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/multi_az_enabled_given.py +11 -0
  4046. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/multi_az_not_enabled_given.py +10 -0
  4047. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_automated_backup_window_ran_seq.py +11 -0
  4048. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_cluster_restore_completed_seq.py +15 -0
  4049. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_cluster_restored_from_snapshot_seq.py +27 -0
  4050. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_configuration_modified_seq.py +12 -0
  4051. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_created_seq.py +12 -0
  4052. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_creation_failed_seq.py +11 -0
  4053. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_deleted_seq.py +16 -0
  4054. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_deletion_completed_seq.py +12 -0
  4055. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_finished_creating_seq.py +12 -0
  4056. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_modification_completed_seq.py +12 -0
  4057. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_start_completed_seq.py +15 -0
  4058. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_stop_completed_seq.py +15 -0
  4059. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_stopped_seq.py +17 -0
  4060. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_configuration_modified_seq.py +13 -0
  4061. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_created_seq.py +13 -0
  4062. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_deleted_seq.py +18 -0
  4063. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_deletion_completed_seq.py +12 -0
  4064. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_finished_creating_seq.py +12 -0
  4065. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_modification_completed_seq.py +12 -0
  4066. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_reboot_completed_seq.py +15 -0
  4067. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_rebooted_seq.py +22 -0
  4068. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_multi_az_failover_triggered_seq.py +12 -0
  4069. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_replica_promoted_to_primary_seq.py +11 -0
  4070. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_created_seq.py +13 -0
  4071. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_deleted_seq.py +20 -0
  4072. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_deletion_completed_seq.py +12 -0
  4073. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_finished_creating_seq.py +12 -0
  4074. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_stopped_cluster_started_seq.py +18 -0
  4075. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/new_primary_instance_does_not_exist.py +10 -0
  4076. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/new_primary_instance_exists.py +12 -0
  4077. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/no_snapshot_slot_available_given.py +10 -0
  4078. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/sid_in_snapshot_status.py +13 -0
  4079. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_does_not_exist.py +10 -0
  4080. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_exists.py +13 -0
  4081. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_available_given.py +10 -0
  4082. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_creating_given.py +23 -0
  4083. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_deleting_given.py +18 -0
  4084. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_available_given.py +11 -0
  4085. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_creating_given.py +10 -0
  4086. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_deleting_given.py +10 -0
  4087. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_available.py +10 -0
  4088. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_available_given.py +10 -0
  4089. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_not_available.py +10 -0
  4090. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/system_is_initialized.py +10 -0
  4091. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/target_cluster_slot_available.py +10 -0
  4092. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/target_cluster_slot_not_available.py +10 -0
  4093. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/test_scenarios.py +27 -0
  4094. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/__init__.py +35 -0
  4095. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/backing_up_cluster_has_snapshot.py +10 -0
  4096. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_and_instances_available_then.py +19 -0
  4097. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_and_instances_stopped_then.py +19 -0
  4098. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_enters_modifying_for_primary_promotion_then.py +11 -0
  4099. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_available_then.py +18 -0
  4100. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_creating_then.py +19 -0
  4101. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_deleted_then.py +14 -0
  4102. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_deleting_then.py +14 -0
  4103. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_failed_then.py +11 -0
  4104. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_modifying_then.py +19 -0
  4105. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_starting_then.py +19 -0
  4106. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_stopping_then.py +19 -0
  4107. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_returns_to_available_then.py +19 -0
  4108. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_returns_to_available_with_new_primary_then.py +11 -0
  4109. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/deleted_cluster_has_no_available_instances.py +10 -0
  4110. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_cluster_has_valid_status.py +10 -0
  4111. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_instance_has_valid_status.py +10 -0
  4112. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_snapshot_has_valid_status.py +10 -0
  4113. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/failed_cluster_has_no_available_instances.py +10 -0
  4114. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_available_then.py +20 -0
  4115. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_creating_then.py +21 -0
  4116. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_deleted_then.py +16 -0
  4117. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_deleting_then.py +14 -0
  4118. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_modifying_then.py +19 -0
  4119. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_rebooting_then.py +17 -0
  4120. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_returns_to_available_then.py +19 -0
  4121. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/operation_is_rejected_then.py +15 -0
  4122. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/restored_cluster_is_restoring_then.py +20 -0
  4123. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_available_cluster_returns_then.py +27 -0
  4124. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_creating_cluster_backing_up_then.py +13 -0
  4125. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_creating_then.py +20 -0
  4126. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_deleted_then.py +14 -0
  4127. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_deleting_then.py +14 -0
  4128. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/stopped_cluster_has_no_available_instances.py +10 -0
  4129. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/stopped_cluster_instances_not_modifying.py +12 -0
  4130. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/__init__.py +28 -0
  4131. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/automated_backup_window.py +11 -0
  4132. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_creation_fails.py +11 -0
  4133. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_deletion_completes.py +15 -0
  4134. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_finishes_creating.py +15 -0
  4135. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_modification_completes.py +20 -0
  4136. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_restore_completes.py +15 -0
  4137. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_start_completes.py +15 -0
  4138. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_stop_completes.py +15 -0
  4139. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_cluster.py +23 -0
  4140. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_cluster_snapshot.py +25 -0
  4141. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_instance.py +27 -0
  4142. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_cluster.py +22 -0
  4143. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_cluster_snapshot.py +22 -0
  4144. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_instance.py +20 -0
  4145. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_deletion_completes.py +15 -0
  4146. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_finishes_creating.py +15 -0
  4147. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_modification_completes.py +20 -0
  4148. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_reboot_completes.py +15 -0
  4149. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/modify_db_cluster.py +23 -0
  4150. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/modify_db_instance.py +23 -0
  4151. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/multi_az_failover.py +20 -0
  4152. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/promote_replica_to_primary.py +20 -0
  4153. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/reboot_db_instance.py +20 -0
  4154. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/restore_db_cluster_from_snapshot.py +26 -0
  4155. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/snapshot_deletion_completes.py +15 -0
  4156. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/snapshot_finishes_creating.py +15 -0
  4157. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/start_db_cluster.py +21 -0
  4158. local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/stop_db_cluster.py +21 -0
  4159. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/__init__.py +0 -0
  4160. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/client.py +23 -0
  4161. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/conftest.py +9 -0
  4162. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/constants.py +7 -0
  4163. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/__init__.py +26 -0
  4164. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_already_exists.py +12 -0
  4165. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_does_not_exist.py +10 -0
  4166. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_exists.py +12 -0
  4167. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_active_given.py +10 -0
  4168. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_already_deleted.py +20 -0
  4169. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_deleted_given.py +11 -0
  4170. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_not_deleted_given.py +11 -0
  4171. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_not_already_exist.py +10 -0
  4172. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/busid_in_bus_status.py +12 -0
  4173. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/busid_not_in_bus_status.py +10 -0
  4174. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cid_in_cluster_status.py +12 -0
  4175. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cid_not_in_cluster_status.py +10 -0
  4176. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_already_exists.py +12 -0
  4177. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_available_given.py +11 -0
  4178. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_not_available_given.py +11 -0
  4179. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_not_stopping_given.py +11 -0
  4180. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_stopping_given.py +12 -0
  4181. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_not_already_exist.py +10 -0
  4182. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/event_slot_available.py +10 -0
  4183. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/eventbridge_bus_created_seq.py +12 -0
  4184. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/eventbridge_bus_deleted_seq.py +17 -0
  4185. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_created_and_available_seq.py +12 -0
  4186. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_finished_stopping_seq.py +12 -0
  4187. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_stopped_event_delivered_seq.py +16 -0
  4188. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_stopped_event_failed_seq.py +13 -0
  4189. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/no_event_slot_available.py +10 -0
  4190. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/test_scenarios.py +27 -0
  4191. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/__init__.py +9 -0
  4192. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/_inv_neptune_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  4193. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/_inv_neptune_events_every_delivered_event_references_a_cluster_that_exists.py +10 -0
  4194. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/bus_is_active_then.py +16 -0
  4195. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/bus_is_deleted_then.py +10 -0
  4196. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_is_available_then.py +11 -0
  4197. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_is_stopped_then.py +11 -0
  4198. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_stopping_and_event_delivered.py +11 -0
  4199. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_stopping_but_no_event.py +11 -0
  4200. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/every_neptune_cluster_has_valid_status.py +10 -0
  4201. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/__init__.py +6 -0
  4202. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_complete.py +20 -0
  4203. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_event_delivered.py +11 -0
  4204. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_event_fails.py +11 -0
  4205. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/create_event_bus.py +18 -0
  4206. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/create_neptune_cluster.py +11 -0
  4207. local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/delete_event_bus.py +18 -0
  4208. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/__init__.py +0 -0
  4209. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/client.py +24 -0
  4210. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/conftest.py +9 -0
  4211. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/constants.py +7 -0
  4212. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/__init__.py +82 -0
  4213. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/associated_inbound_connection_does_not_exist.py +10 -0
  4214. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/associated_inbound_connection_exists.py +11 -0
  4215. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_in_inbound_status.py +11 -0
  4216. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_in_outbound_status.py +11 -0
  4217. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_not_in_outbound_status.py +10 -0
  4218. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/connection_slot_available.py +10 -0
  4219. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/connection_slot_not_available.py +10 -0
  4220. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_already_exists.py +12 -0
  4221. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_does_not_exist.py +10 -0
  4222. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_exists.py +12 -0
  4223. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_in_domain_status.py +12 -0
  4224. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_active_given.py +10 -0
  4225. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_being_deleted_given.py +11 -0
  4226. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_creating_given.py +18 -0
  4227. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_deleted_given.py +11 -0
  4228. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_deleting_given.py +15 -0
  4229. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_active_given.py +18 -0
  4230. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_being_deleted_given.py +10 -0
  4231. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_creating_given.py +10 -0
  4232. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_deleted_given.py +10 -0
  4233. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_deleting_given.py +10 -0
  4234. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_processing_given.py +10 -0
  4235. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_processing_given.py +12 -0
  4236. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_not_already_exist.py +10 -0
  4237. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_not_in_domain_status.py +10 -0
  4238. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_already_deleted_given.py +11 -0
  4239. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_already_deleting_given.py +11 -0
  4240. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_does_not_exist.py +10 -0
  4241. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_exists.py +11 -0
  4242. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_deleting_given.py +11 -0
  4243. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_not_deleting_given.py +10 -0
  4244. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_not_pending_given.py +10 -0
  4245. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_pending_given.py +11 -0
  4246. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_not_already_deleted_given.py +10 -0
  4247. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_not_already_deleting_given.py +10 -0
  4248. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_and_remote_domains_different.py +10 -0
  4249. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_and_remote_domains_same.py +11 -0
  4250. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_does_not_exist.py +10 -0
  4251. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_exists.py +12 -0
  4252. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_is_active_given.py +10 -0
  4253. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_is_not_active_given.py +11 -0
  4254. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_already_prepared.py +11 -0
  4255. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_is_not_ready.py +10 -0
  4256. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_is_ready.py +11 -0
  4257. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_not_prepared_yet.py +10 -0
  4258. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_blue_green_deployment_completed_seq.py +11 -0
  4259. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_blue_green_new_cluster_ready_seq.py +11 -0
  4260. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_domain_configuration_update_requested_seq.py +12 -0
  4261. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_accepted_seq.py +11 -0
  4262. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_deleted_seq.py +11 -0
  4263. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_finished_deleting_seq.py +11 -0
  4264. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_rejected_seq.py +11 -0
  4265. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_created_seq.py +11 -0
  4266. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_deleted_seq.py +11 -0
  4267. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_finished_deleting_seq.py +11 -0
  4268. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_created_seq.py +12 -0
  4269. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_deleted_seq.py +17 -0
  4270. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_finished_creating_seq.py +12 -0
  4271. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_finished_deleting_seq.py +12 -0
  4272. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_shards_rebalanced_seq.py +11 -0
  4273. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_tags_added_seq.py +12 -0
  4274. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_tags_removed_seq.py +12 -0
  4275. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_traffic_swapped_blue_green_seq.py +11 -0
  4276. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_already_deleted_given.py +11 -0
  4277. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_already_deleting_given.py +11 -0
  4278. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_does_not_exist.py +10 -0
  4279. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_exists.py +11 -0
  4280. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_is_deleting_given.py +11 -0
  4281. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_is_not_deleting_given.py +10 -0
  4282. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_not_already_deleted_given.py +10 -0
  4283. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_not_already_deleting_given.py +10 -0
  4284. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_does_not_exist.py +10 -0
  4285. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_exists.py +13 -0
  4286. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_is_active_given.py +10 -0
  4287. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_is_not_active_given.py +11 -0
  4288. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/system_is_initialized.py +10 -0
  4289. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/tag_key_does_not_exist.py +10 -0
  4290. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/tag_key_exists.py +11 -0
  4291. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_already_swapped.py +12 -0
  4292. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_has_been_swapped.py +12 -0
  4293. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_not_been_swapped.py +12 -0
  4294. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_not_been_swapped_yet.py +12 -0
  4295. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/test_scenarios.py +27 -0
  4296. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/__init__.py +23 -0
  4297. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/active_outbound_no_rejected_inbound.py +12 -0
  4298. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/both_connections_active_then.py +11 -0
  4299. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/both_connections_rejected_then.py +11 -0
  4300. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/connection_is_pending_then.py +11 -0
  4301. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_has_new_cluster_prepared_then.py +13 -0
  4302. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_active_then.py +16 -0
  4303. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_active_with_new_config_then.py +16 -0
  4304. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_creating_then.py +21 -0
  4305. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_deleted_then.py +14 -0
  4306. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_deleting_then.py +14 -0
  4307. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_processing_blue_green_then.py +16 -0
  4308. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_serving_new_cluster_then.py +11 -0
  4309. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/inbound_connection_deleted_then.py +11 -0
  4310. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/inbound_connection_deleting_then.py +11 -0
  4311. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/instance_count_updated_then.py +11 -0
  4312. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/no_active_connection_references_deleted_domain.py +10 -0
  4313. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/operation_is_rejected_then.py +15 -0
  4314. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/outbound_and_inbound_deleted_then.py +13 -0
  4315. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/outbound_connection_deleting_then.py +11 -0
  4316. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/pending_config_only_on_processing_domain.py +10 -0
  4317. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/tags_associated_then.py +12 -0
  4318. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/tags_removed_then.py +14 -0
  4319. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/traffic_swap_requires_new_cluster.py +10 -0
  4320. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/__init__.py +18 -0
  4321. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/accept_inbound_connection.py +11 -0
  4322. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/add_tags.py +23 -0
  4323. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_complete.py +11 -0
  4324. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_new_cluster_ready.py +11 -0
  4325. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_swap_traffic.py +11 -0
  4326. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/create_domain.py +18 -0
  4327. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/create_outbound_connection.py +11 -0
  4328. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_domain.py +18 -0
  4329. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_inbound_connection.py +11 -0
  4330. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_outbound_connection.py +11 -0
  4331. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/domain_finishes_creating.py +15 -0
  4332. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/domain_finishes_deleting.py +15 -0
  4333. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/inbound_connection_finishes_deleting.py +11 -0
  4334. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/outbound_connection_finishes_deleting.py +11 -0
  4335. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/reject_inbound_connection.py +11 -0
  4336. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/remove_tags.py +22 -0
  4337. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/shard_rebalancing.py +11 -0
  4338. local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/update_domain_config.py +20 -0
  4339. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/__init__.py +0 -0
  4340. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/client.py +103 -0
  4341. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/conftest.py +9 -0
  4342. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/constants.py +17 -0
  4343. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/__init__.py +54 -0
  4344. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_policy_has_been_attached_to_a_target.py +17 -0
  4345. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_policy_has_been_detached_from_a_target.py +18 -0
  4346. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_service_control_policy_has_been_created.py +15 -0
  4347. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/acc_id_in_node_status.py +15 -0
  4348. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_already_exists.py +12 -0
  4349. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_does_not_exist_or_not_active.py +13 -0
  4350. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_existed_under_ou.py +19 -0
  4351. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_existed_with_tags.py +17 -0
  4352. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_exists_and_active.py +16 -0
  4353. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_not_already_exist.py +10 -0
  4354. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_account_has_been_created_in_the_org.py +15 -0
  4355. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_account_has_been_moved_to_a_new_parent.py +22 -0
  4356. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_organization_has_been_created.py +12 -0
  4357. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_ou_has_been_created_under_a_parent.py +15 -0
  4358. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_ou_has_been_deleted.py +15 -0
  4359. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/destination_parent_active.py +14 -0
  4360. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/destination_parent_not_active.py +10 -0
  4361. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/multiple_ous_existed_under_root.py +16 -0
  4362. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/node_id_in_node_status.py +15 -0
  4363. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_1_in_org_status.py +12 -0
  4364. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_1_not_in_org_status.py +10 -0
  4365. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_already_exists.py +14 -0
  4366. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_does_not_exist.py +10 -0
  4367. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_exists.py +14 -0
  4368. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_not_already_exist.py +10 -0
  4369. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_already_exists.py +14 -0
  4370. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_does_not_exist_or_not_active.py +10 -0
  4371. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_exists_and_active.py +16 -0
  4372. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_attached_policies.py +14 -0
  4373. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_child_accounts.py +18 -0
  4374. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_child_ous.py +12 -0
  4375. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_attached_policies.py +10 -0
  4376. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_child_accounts.py +10 -0
  4377. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_child_ous.py +10 -0
  4378. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_id_in_node_status.py +15 -0
  4379. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_not_already_exist.py +10 -0
  4380. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/parent_does_not_exist_or_not_active.py +10 -0
  4381. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/parent_exists_and_active.py +10 -0
  4382. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/pol_id_in_policy_status.py +16 -0
  4383. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/pol_id_target_id_in_policy_attached.py +17 -0
  4384. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_already_attached.py +12 -0
  4385. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_already_exists.py +12 -0
  4386. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_attached_to_target.py +17 -0
  4387. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_does_not_exist_or_not_active.py +11 -0
  4388. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_exists_and_active.py +16 -0
  4389. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_already_attached.py +10 -0
  4390. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_already_exist.py +10 -0
  4391. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_attached_to_target.py +16 -0
  4392. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/resource_does_not_exist.py +11 -0
  4393. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/resource_exists.py +19 -0
  4394. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/source_parent_does_not_match.py +12 -0
  4395. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/source_parent_matches.py +11 -0
  4396. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/target_does_not_exist_or_not_active.py +10 -0
  4397. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/target_exists_and_active.py +10 -0
  4398. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/test_scenarios.py +27 -0
  4399. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/__init__.py +18 -0
  4400. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/_inv_organizations_every_active_account_has_an_active_parent.py +10 -0
  4401. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/_inv_organizations_every_active_organizational_unit_has_an_active_parent.py +10 -0
  4402. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/_inv_organizations_every_active_policy_attachment_targets_an_active_node.py +11 -0
  4403. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_active_under_root.py +23 -0
  4404. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_children_returned.py +15 -0
  4405. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_under_new_parent.py +19 -0
  4406. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/empty_tag_list_returned.py +13 -0
  4407. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/no_active_node_child_of_deleted_ou.py +12 -0
  4408. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/organization_and_root_exist.py +18 -0
  4409. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_children_returned.py +15 -0
  4410. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_is_active.py +18 -0
  4411. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_is_deleted.py +21 -0
  4412. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_is_active.py +16 -0
  4413. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_is_attached_to_target.py +17 -0
  4414. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_no_longer_attached_to_target.py +17 -0
  4415. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/resource_tags_set.py +11 -0
  4416. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/root_active_when_org_exists.py +12 -0
  4417. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/tags_returned.py +13 -0
  4418. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/__init__.py +14 -0
  4419. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/attach_policy.py +19 -0
  4420. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_account.py +23 -0
  4421. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_organization.py +18 -0
  4422. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_organizational_unit.py +23 -0
  4423. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_policy.py +25 -0
  4424. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/delete_organizational_unit.py +19 -0
  4425. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/detach_policy.py +19 -0
  4426. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_account_type.py +21 -0
  4427. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_invalid_type.py +21 -0
  4428. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_ou_type.py +21 -0
  4429. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_tags_for_resource_with_account_id.py +19 -0
  4430. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_tags_for_resource_with_unknown_id.py +19 -0
  4431. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/move_account.py +21 -0
  4432. local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/tag_resource.py +25 -0
  4433. local_web_services_python_sdk-0.19.0/tests/e2e/rds/__init__.py +0 -0
  4434. local_web_services_python_sdk-0.19.0/tests/e2e/rds/client.py +32 -0
  4435. local_web_services_python_sdk-0.19.0/tests/e2e/rds/conftest.py +9 -0
  4436. local_web_services_python_sdk-0.19.0/tests/e2e/rds/constants.py +9 -0
  4437. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/__init__.py +57 -0
  4438. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_configuration_has_been_modified.py +11 -0
  4439. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_deletion_has_completed.py +12 -0
  4440. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_created.py +12 -0
  4441. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_deleted_with_final_snapshot.py +11 -0
  4442. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_deleted_without_final_snapshot.py +11 -0
  4443. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_rebooted.py +11 -0
  4444. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_restored_from_a_snapshot.py +11 -0
  4445. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_finished_creating.py +12 -0
  4446. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_modification_has_completed.py +12 -0
  4447. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_reboot_has_completed.py +12 -0
  4448. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_restore_from_snapshot_has_completed.py +12 -0
  4449. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_deletion_has_completed.py +12 -0
  4450. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_been_created_from_an_instance.py +11 -0
  4451. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_been_deleted.py +11 -0
  4452. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_finished_creating.py +12 -0
  4453. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_multi_az_failover_has_been_triggered.py +12 -0
  4454. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_tag_has_been_applied_to_a_database_instance.py +11 -0
  4455. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/an_automated_backup_has_run.py +11 -0
  4456. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_already_exists.py +12 -0
  4457. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_does_not_exist.py +10 -0
  4458. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_exists.py +12 -0
  4459. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_not_already_exist.py +10 -0
  4460. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/iid_in_instance_status.py +12 -0
  4461. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/iid_not_in_instance_status.py +10 -0
  4462. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_does_not_have_multi_az.py +10 -0
  4463. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_has_multi_az.py +11 -0
  4464. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_available_given.py +10 -0
  4465. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_available_or_failed_given.py +10 -0
  4466. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_backing_up_given.py +11 -0
  4467. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_creating_given.py +13 -0
  4468. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_deleting_given.py +11 -0
  4469. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_modifying_given.py +17 -0
  4470. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_neither_available_nor_failed_given.py +12 -0
  4471. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_available_given.py +12 -0
  4472. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_backing_up_given.py +10 -0
  4473. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_creating_given.py +10 -0
  4474. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_deleting_given.py +10 -0
  4475. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_modifying_given.py +10 -0
  4476. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_rebooting_given.py +10 -0
  4477. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_restoring_given.py +10 -0
  4478. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_rebooting_given.py +11 -0
  4479. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_restoring_given.py +11 -0
  4480. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/multi_az_has_been_enabled.py +11 -0
  4481. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/no_snapshot_slot_available.py +10 -0
  4482. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/sid_in_snapshot_status.py +13 -0
  4483. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_does_not_exist.py +10 -0
  4484. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_exists.py +13 -0
  4485. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_available_given.py +10 -0
  4486. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_creating_given.py +11 -0
  4487. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_deleting_given.py +11 -0
  4488. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_available_given.py +11 -0
  4489. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_creating_given.py +10 -0
  4490. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_deleting_given.py +10 -0
  4491. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_slot_available.py +10 -0
  4492. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/system_is_initialized.py +10 -0
  4493. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/target_instance_slot_available.py +10 -0
  4494. local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/target_instance_slot_not_available.py +10 -0
  4495. local_web_services_python_sdk-0.19.0/tests/e2e/rds/test_scenarios.py +27 -0
  4496. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/__init__.py +22 -0
  4497. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/backing_up_instance_has_snapshot.py +10 -0
  4498. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/every_db_instance_has_valid_status.py +10 -0
  4499. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/every_db_snapshot_has_valid_status.py +10 -0
  4500. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_configured_for_multi_az_then.py +11 -0
  4501. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_deleting_snapshot_creating_then.py +14 -0
  4502. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_enters_modifying_during_promotion_then.py +11 -0
  4503. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_available_or_failed_then.py +11 -0
  4504. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_available_then.py +11 -0
  4505. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_creating_then.py +11 -0
  4506. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_deleted_then.py +14 -0
  4507. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_deleting_then.py +14 -0
  4508. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_modifying_then.py +18 -0
  4509. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_rebooting_then.py +11 -0
  4510. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_returns_to_available_then.py +11 -0
  4511. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_tag_state_unchanged_then.py +10 -0
  4512. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/operation_is_rejected_then.py +15 -0
  4513. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/restored_instance_is_restoring_then.py +11 -0
  4514. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_available_instance_returns_then.py +13 -0
  4515. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_creating_and_instance_backing_up_then.py +13 -0
  4516. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_creating_instance_backing_up_then.py +13 -0
  4517. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_is_deleted_then.py +14 -0
  4518. local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_is_deleting_then.py +14 -0
  4519. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/__init__.py +19 -0
  4520. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/automated_backup.py +11 -0
  4521. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/create_db_instance.py +11 -0
  4522. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/create_db_snapshot.py +11 -0
  4523. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_instance_skip_snapshot.py +11 -0
  4524. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_instance_with_snapshot.py +11 -0
  4525. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_snapshot.py +11 -0
  4526. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/enable_multi_az.py +11 -0
  4527. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_deletion_completes.py +15 -0
  4528. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_finishes_creating.py +15 -0
  4529. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_modification_completes.py +20 -0
  4530. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_reboot_completes.py +20 -0
  4531. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_restore_completes.py +20 -0
  4532. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/modify_db_instance.py +11 -0
  4533. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/multi_az_failover.py +20 -0
  4534. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/reboot_db_instance.py +11 -0
  4535. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/restore_db_instance_from_snapshot.py +11 -0
  4536. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/snapshot_deletion_completes.py +20 -0
  4537. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/snapshot_finishes_creating.py +20 -0
  4538. local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/tag_db_instance.py +11 -0
  4539. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/__init__.py +0 -0
  4540. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/client.py +29 -0
  4541. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/conftest.py +9 -0
  4542. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/constants.py +7 -0
  4543. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/__init__.py +26 -0
  4544. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_already_exists.py +12 -0
  4545. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_does_not_exist.py +10 -0
  4546. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_exists.py +12 -0
  4547. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_active_given.py +10 -0
  4548. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_already_deleted.py +20 -0
  4549. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_deleted_given.py +11 -0
  4550. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_not_deleted_given.py +11 -0
  4551. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_not_already_exist.py +10 -0
  4552. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_already_exists.py +12 -0
  4553. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_available_given.py +11 -0
  4554. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_not_available_given.py +11 -0
  4555. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_not_stopping_given.py +11 -0
  4556. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_stopping_given.py +12 -0
  4557. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_not_already_exist.py +10 -0
  4558. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/event_slot_available.py +10 -0
  4559. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/no_event_slot_available.py +10 -0
  4560. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_db_instance_created_and_available.py +12 -0
  4561. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_busid_in_bus_status.py +12 -0
  4562. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_busid_not_in_bus_status.py +10 -0
  4563. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_db_instance_finished_stopping.py +12 -0
  4564. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_dbid_in_db_status.py +12 -0
  4565. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_dbid_not_in_db_status.py +10 -0
  4566. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_event_bus_has_been_created.py +12 -0
  4567. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_event_bus_has_been_deleted.py +17 -0
  4568. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_instance_stopped_event_delivered.py +16 -0
  4569. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_instance_stopped_event_failed.py +17 -0
  4570. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/test_scenarios.py +27 -0
  4571. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/__init__.py +8 -0
  4572. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/_inv_rds_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  4573. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/_inv_rds_events_every_delivered_event_references_a_db_instance_that_exists.py +10 -0
  4574. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/bus_is_active_then.py +16 -0
  4575. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/bus_is_deleted_then.py +10 -0
  4576. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_is_available_then.py +11 -0
  4577. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_is_stopped_then.py +11 -0
  4578. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_stopping_and_event_delivered.py +13 -0
  4579. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_stopping_but_no_event.py +11 -0
  4580. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/__init__.py +6 -0
  4581. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/create_db_instance.py +11 -0
  4582. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/create_event_bus.py +18 -0
  4583. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_complete.py +20 -0
  4584. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_event_delivered.py +11 -0
  4585. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_event_fails.py +16 -0
  4586. local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/delete_event_bus.py +18 -0
  4587. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/__init__.py +0 -0
  4588. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/client.py +51 -0
  4589. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/conftest.py +9 -0
  4590. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/constants.py +9 -0
  4591. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/__init__.py +34 -0
  4592. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_already_exists.py +12 -0
  4593. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_already_has_integration.py +11 -0
  4594. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_configured_with_iam_role.py +11 -0
  4595. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_exists_and_available.py +12 -0
  4596. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_has_integration.py +11 -0
  4597. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_has_no_integration.py +10 -0
  4598. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_is_available_given.py +11 -0
  4599. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_is_not_available.py +12 -0
  4600. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_not_already_exist.py +10 -0
  4601. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_not_exist_or_not_available.py +11 -0
  4602. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_dbid_in_db_status.py +12 -0
  4603. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_dbid_not_in_db_status.py +10 -0
  4604. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_fid_in_func_status.py +12 -0
  4605. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_fid_not_in_func_status.py +10 -0
  4606. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_already_exists.py +12 -0
  4607. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_does_not_exist.py +10 -0
  4608. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_exists.py +12 -0
  4609. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_exists_and_active.py +12 -0
  4610. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_active_given.py +10 -0
  4611. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_already_deleted.py +23 -0
  4612. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_not_active_given.py +20 -0
  4613. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_not_already_exist.py +10 -0
  4614. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_not_exist_or_not_active.py +10 -0
  4615. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_invocation_slot_available.py +11 -0
  4616. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_has_been_deleted.py +17 -0
  4617. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_has_been_deployed.py +12 -0
  4618. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_active.py +11 -0
  4619. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_deleted.py +11 -0
  4620. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_not_active.py +11 -0
  4621. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_not_deleted.py +11 -0
  4622. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_no_invocation_slot_available.py +10 -0
  4623. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_rds_db_instance_has_been_created.py +12 -0
  4624. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_stored_proc_failed_function_deleted.py +16 -0
  4625. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_stored_proc_invoked_lambda_succeeded.py +11 -0
  4626. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/test_scenarios.py +27 -0
  4627. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/__init__.py +8 -0
  4628. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/_inv_rds_lambda_every_successful_invocation_recorded_which_function_it_invoked.py +10 -0
  4629. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/_inv_rds_lambda_every_successful_invocation_references_a_db_instance_that_exists.py +10 -0
  4630. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/db_instance_available_no_integration.py +11 -0
  4631. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/function_is_deleted_procs_fail.py +16 -0
  4632. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/invocation_failed_function_not_found.py +11 -0
  4633. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/rds_lambda_function_is_active_then.py +17 -0
  4634. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/rds_lambda_invocation_success.py +11 -0
  4635. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/stored_procs_can_invoke.py +11 -0
  4636. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/__init__.py +6 -0
  4637. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/configure_rds_lambda_integration.py +11 -0
  4638. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/create_rds_db_instance.py +11 -0
  4639. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/delete_lambda_function_rds.py +19 -0
  4640. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/deploy_lambda_function_rds.py +25 -0
  4641. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/stored_proc_fails_function_deleted.py +13 -0
  4642. local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/stored_proc_invokes_lambda.py +11 -0
  4643. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/__init__.py +0 -0
  4644. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/client.py +44 -0
  4645. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/conftest.py +9 -0
  4646. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/constants.py +13 -0
  4647. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/__init__.py +63 -0
  4648. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_bucket_has_been_created.py +12 -0
  4649. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_bucket_has_been_deleted.py +13 -0
  4650. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_lifecycle_rule_has_expired_an_object.py +11 -0
  4651. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_aborted.py +17 -0
  4652. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_completed.py +28 -0
  4653. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_initiated.py +14 -0
  4654. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_part_has_been_uploaded_for_a_multipart_upload.py +21 -0
  4655. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_copied.py +19 -0
  4656. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_deleted_from_a_bucket.py +14 -0
  4657. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_retrieved_from_a_bucket.py +14 -0
  4658. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_uploaded_to_a_bucket.py +12 -0
  4659. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bname_in_bucket_status.py +12 -0
  4660. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bname_not_in_bucket_status.py +10 -0
  4661. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_already_exists.py +12 -0
  4662. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_does_not_exist.py +13 -0
  4663. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_exists.py +12 -0
  4664. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_active_given.py +10 -0
  4665. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_empty.py +10 -0
  4666. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_not_active_given.py +14 -0
  4667. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_not_empty.py +12 -0
  4668. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_not_already_exist.py +13 -0
  4669. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_does_not_exist.py +12 -0
  4670. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_exists.py +10 -0
  4671. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_is_active_given.py +10 -0
  4672. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_is_not_active_given.py +14 -0
  4673. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/lifecycle_policy_has_expiry.py +11 -0
  4674. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_already_exists.py +12 -0
  4675. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_does_not_exist.py +10 -0
  4676. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_does_not_exist_in_bucket.py +10 -0
  4677. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_exists.py +12 -0
  4678. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_exists_in_bucket.py +12 -0
  4679. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_active_given.py +10 -0
  4680. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_deleted.py +14 -0
  4681. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_not_active_given.py +18 -0
  4682. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_not_deleted.py +10 -0
  4683. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_metadata_has_been_retrieved.py +14 -0
  4684. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_not_already_exist.py +10 -0
  4685. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/objects_in_a_bucket_have_been_listed.py +14 -0
  4686. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_does_not_exist.py +14 -0
  4687. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_exists.py +14 -0
  4688. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_is_active_given.py +10 -0
  4689. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_is_not_active_given.py +15 -0
  4690. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_does_not_exist.py +10 -0
  4691. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_exists.py +13 -0
  4692. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_is_deleted.py +14 -0
  4693. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_is_not_deleted.py +10 -0
  4694. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/src_bname_in_bucket_status.py +13 -0
  4695. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/system_is_initialized.py +10 -0
  4696. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/the_list_of_buckets_has_been_retrieved.py +12 -0
  4697. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_already_exists.py +12 -0
  4698. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_does_not_exist.py +10 -0
  4699. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_exists.py +15 -0
  4700. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_has_at_least_one_part.py +20 -0
  4701. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_has_no_parts.py +10 -0
  4702. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_in_progress_with_part.py +22 -0
  4703. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_is_in_progress_given.py +10 -0
  4704. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_is_not_in_progress.py +11 -0
  4705. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_not_already_exist.py +10 -0
  4706. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_has_been_configured_on_a_bucket.py +16 -0
  4707. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_disabled.py +10 -0
  4708. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_enabled.py +15 -0
  4709. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_not_disabled.py +15 -0
  4710. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_not_enabled.py +10 -0
  4711. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/test_scenarios.py +27 -0
  4712. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/__init__.py +35 -0
  4713. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/_inv_s3api_every_bucket_has_a_valid_status_active_or_deleted.py +10 -0
  4714. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/_inv_s3api_every_bucket_versioning_state_is_valid_disabled_enabled_or_suspended.py +10 -0
  4715. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/_inv_s3api_every_multipart_upload_has_a_valid_status_in_progress_completed_or_ab.py +10 -0
  4716. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/all_buckets_returned_then.py +14 -0
  4717. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/available_buckets_returned_then.py +14 -0
  4718. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_active_with_versioning_disabled.py +17 -0
  4719. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_is_deleted_status_then.py +17 -0
  4720. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_is_deleted_then.py +17 -0
  4721. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_versioning_enabled_or_suspended_then.py +18 -0
  4722. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_will_be_deleted_then.py +17 -0
  4723. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/copy_succeeds_then.py +15 -0
  4724. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/deleting_bucket_requires_empty.py +10 -0
  4725. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_bucket_has_valid_status.py +10 -0
  4726. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_bucket_versioning_state_is_valid.py +10 -0
  4727. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_multipart_upload_has_valid_status.py +10 -0
  4728. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/list_of_objects_returned_then.py +11 -0
  4729. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_data_is_returned_then.py +13 -0
  4730. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_deleted_by_lifecycle_then.py +11 -0
  4731. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_exists_in_bucket_then.py +15 -0
  4732. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_exists_in_destination_bucket_then.py +17 -0
  4733. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_expired_then.py +11 -0
  4734. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_deleted_status_then.py +15 -0
  4735. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_deleted_then.py +15 -0
  4736. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_returned_then.py +13 -0
  4737. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_listing_returned_then.py +11 -0
  4738. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_metadata_returned_then.py +13 -0
  4739. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/operation_is_rejected.py +13 -0
  4740. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/part_uploaded_then.py +10 -0
  4741. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_aborted_then.py +10 -0
  4742. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_completed_assembled_then.py +19 -0
  4743. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_completed_then.py +17 -0
  4744. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_has_at_least_one_part_then.py +11 -0
  4745. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_in_progress_no_parts_then.py +14 -0
  4746. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/versioning_is_enabled_then.py +18 -0
  4747. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/versioning_is_suspended_then.py +18 -0
  4748. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/__init__.py +26 -0
  4749. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/abort_multipart_upload.py +20 -0
  4750. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/abort_multipart_upload_old.py +20 -0
  4751. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/complete_multipart_upload.py +24 -0
  4752. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/complete_multipart_upload_old.py +23 -0
  4753. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/copy_object.py +22 -0
  4754. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/copy_object_old.py +22 -0
  4755. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/create_bucket.py +18 -0
  4756. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/create_multipart_upload.py +20 -0
  4757. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_bucket.py +18 -0
  4758. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_object.py +18 -0
  4759. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_object_old.py +18 -0
  4760. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/get_object.py +18 -0
  4761. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/get_object_old.py +18 -0
  4762. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/head_object.py +18 -0
  4763. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/head_object_old.py +18 -0
  4764. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/lifecycle_expire_object.py +11 -0
  4765. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/lifecycle_expire_object_old.py +11 -0
  4766. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_buckets.py +16 -0
  4767. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_buckets_old.py +16 -0
  4768. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_objects_v2.py +18 -0
  4769. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_objects_v2_old.py +18 -0
  4770. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_bucket_versioning.py +20 -0
  4771. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_bucket_versioning_old.py +20 -0
  4772. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_object.py +20 -0
  4773. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/upload_part.py +26 -0
  4774. local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/upload_part_old.py +24 -0
  4775. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/__init__.py +0 -0
  4776. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/client.py +26 -0
  4777. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/conftest.py +9 -0
  4778. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/constants.py +11 -0
  4779. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/__init__.py +34 -0
  4780. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_already_exists.py +12 -0
  4781. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_already_has_eventbridge_notification.py +14 -0
  4782. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_exists_and_is_active.py +12 -0
  4783. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_has_eventbridge_notification.py +18 -0
  4784. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_has_no_eventbridge_notification.py +10 -0
  4785. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_is_active_given.py +10 -0
  4786. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_is_not_active_given.py +15 -0
  4787. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_not_already_exist.py +10 -0
  4788. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_not_exist_or_not_active.py +10 -0
  4789. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_already_exists.py +12 -0
  4790. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_does_not_exist.py +10 -0
  4791. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_exists.py +12 -0
  4792. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_exists_and_is_active.py +12 -0
  4793. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_is_active_given.py +10 -0
  4794. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_is_already_deleted.py +20 -0
  4795. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_not_already_exist.py +10 -0
  4796. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_not_exist_or_not_active.py +13 -0
  4797. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/event_slot_available.py +10 -0
  4798. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/no_event_slot_available.py +10 -0
  4799. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/no_object_slot_available.py +10 -0
  4800. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/object_slot_available.py +11 -0
  4801. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_bid_in_bucket_status.py +12 -0
  4802. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_bid_not_in_bucket_status.py +10 -0
  4803. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_busid_in_bus_status.py +12 -0
  4804. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_busid_not_in_bus_status.py +10 -0
  4805. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_event_bus_has_been_created.py +12 -0
  4806. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_event_bus_has_been_deleted.py +17 -0
  4807. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_eventbridge_notifications_enabled.py +19 -0
  4808. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_object_uploaded_event_delivered.py +18 -0
  4809. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_object_uploaded_event_failed.py +20 -0
  4810. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_s3_bucket_has_been_created.py +12 -0
  4811. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_active.py +12 -0
  4812. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_deleted.py +14 -0
  4813. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_not_deleted.py +12 -0
  4814. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/test_scenarios.py +27 -0
  4815. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/__init__.py +8 -0
  4816. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/_inv_s3api_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  4817. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/_inv_s3api_events_every_delivered_event_references_an_object_that_exists.py +10 -0
  4818. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bucket_active_no_eventbridge.py +16 -0
  4819. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bucket_will_send_events.py +16 -0
  4820. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bus_is_active_then.py +16 -0
  4821. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bus_is_deleted_then.py +10 -0
  4822. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/object_exists_and_event_delivered.py +16 -0
  4823. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/object_exists_but_no_event.py +14 -0
  4824. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/__init__.py +6 -0
  4825. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/create_event_bus.py +18 -0
  4826. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/create_s3_bucket.py +18 -0
  4827. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/delete_event_bus.py +18 -0
  4828. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/enable_eventbridge_notification.py +26 -0
  4829. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/put_object_event_fails.py +31 -0
  4830. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/put_object_with_event.py +34 -0
  4831. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/__init__.py +0 -0
  4832. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/client.py +45 -0
  4833. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/conftest.py +9 -0
  4834. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/constants.py +15 -0
  4835. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/__init__.py +33 -0
  4836. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bid_in_bucket_status.py +12 -0
  4837. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bid_not_in_bucket_status.py +10 -0
  4838. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_already_exists.py +12 -0
  4839. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_already_has_notification.py +20 -0
  4840. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_does_not_exist.py +10 -0
  4841. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_exists.py +12 -0
  4842. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_has_no_notification.py +11 -0
  4843. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_has_notification.py +17 -0
  4844. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_is_active_given.py +10 -0
  4845. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_is_not_active_given.py +20 -0
  4846. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_not_already_exist.py +10 -0
  4847. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_fid_not_in_func_status.py +10 -0
  4848. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_already_exists.py +12 -0
  4849. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_does_not_exist.py +10 -0
  4850. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_exists.py +12 -0
  4851. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_is_active_given.py +10 -0
  4852. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_is_not_active_given.py +15 -0
  4853. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_not_already_exist.py +10 -0
  4854. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_iid_in_inv_status.py +11 -0
  4855. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_completed_successfully.py +11 -0
  4856. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_has_failed.py +11 -0
  4857. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_is_in_progress.py +12 -0
  4858. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_slot_available.py +11 -0
  4859. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_lambda_function_has_been_deployed.py +12 -0
  4860. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_invocation_is_in_progress.py +10 -0
  4861. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_invocation_slot_available.py +12 -0
  4862. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_object_slot_available.py +10 -0
  4863. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_configured.py +16 -0
  4864. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_target_active.py +10 -0
  4865. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_target_not_active.py +15 -0
  4866. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_object_put_invoked_lambda.py +21 -0
  4867. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_object_slot_available.py +10 -0
  4868. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_s3_bucket_has_been_created.py +12 -0
  4869. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/test_scenarios.py +27 -0
  4870. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/__init__.py +8 -0
  4871. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/_inv_s3api_lambda_every_in_progress_invocation_references_an_active_lambda_funct.py +12 -0
  4872. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/_inv_s3api_lambda_every_in_progress_invocation_was_triggered_by_an_object_in_an_.py +12 -0
  4873. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/bucket_active_no_event_notification.py +17 -0
  4874. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/bucket_will_invoke_function.py +20 -0
  4875. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/object_exists_invocation_in_progress.py +19 -0
  4876. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_function_is_active_then.py +17 -0
  4877. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_invocation_is_failed.py +12 -0
  4878. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_invocation_is_success.py +12 -0
  4879. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/__init__.py +6 -0
  4880. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/configure_s3_notification_lambda.py +29 -0
  4881. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/create_s3_bucket_lambda.py +19 -0
  4882. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/deploy_lambda_function_s3api.py +25 -0
  4883. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/put_object_and_invoke_lambda.py +26 -0
  4884. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/s3api_lambda_invocation_completes.py +15 -0
  4885. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/s3api_lambda_invocation_fails.py +13 -0
  4886. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/__init__.py +0 -0
  4887. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/client.py +26 -0
  4888. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/conftest.py +9 -0
  4889. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/constants.py +15 -0
  4890. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/__init__.py +34 -0
  4891. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_already_exists.py +12 -0
  4892. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_already_has_notification.py +14 -0
  4893. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_exists_and_is_active.py +12 -0
  4894. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_has_no_notification.py +10 -0
  4895. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_has_notification.py +26 -0
  4896. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_is_active_given.py +10 -0
  4897. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_is_not_active_given.py +15 -0
  4898. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_not_already_exist.py +10 -0
  4899. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_not_exist_or_not_active.py +10 -0
  4900. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/message_slot_available.py +10 -0
  4901. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/no_message_slot_available.py +14 -0
  4902. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/no_object_slot_available.py +10 -0
  4903. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/object_slot_available.py +10 -0
  4904. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_bid_in_bucket_status.py +12 -0
  4905. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_bid_not_in_bucket_status.py +10 -0
  4906. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_notification_config_added.py +26 -0
  4907. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_object_uploaded_notification_failed.py +19 -0
  4908. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_object_uploaded_notification_published.py +14 -0
  4909. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_s3_bucket_has_been_created.py +12 -0
  4910. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_sns_topic_has_been_created.py +12 -0
  4911. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_sns_topic_has_been_deleted.py +17 -0
  4912. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_tid_in_topic_status.py +12 -0
  4913. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_tid_not_in_topic_status.py +10 -0
  4914. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_active.py +15 -0
  4915. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_deleted.py +21 -0
  4916. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_not_deleted.py +14 -0
  4917. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_already_exists.py +12 -0
  4918. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_does_not_exist.py +10 -0
  4919. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_exists.py +12 -0
  4920. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_exists_and_is_active.py +12 -0
  4921. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_is_active_given.py +10 -0
  4922. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_is_already_deleted.py +20 -0
  4923. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_not_already_exist.py +10 -0
  4924. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_not_exist_or_not_active.py +10 -0
  4925. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/test_scenarios.py +27 -0
  4926. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/__init__.py +8 -0
  4927. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/_inv_s3api_sns_every_published_notification_references_a_topic_that_exists.py +10 -0
  4928. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/_inv_s3api_sns_every_published_notification_references_an_object_that_exists.py +10 -0
  4929. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/bucket_active_no_notification.py +16 -0
  4930. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/bucket_will_publish_notifications.py +18 -0
  4931. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/object_exists_and_notification_published.py +24 -0
  4932. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/object_exists_but_no_notification.py +24 -0
  4933. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/topic_is_active_then.py +17 -0
  4934. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/topic_is_deleted_then.py +10 -0
  4935. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/__init__.py +6 -0
  4936. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/add_sns_notification_config.py +28 -0
  4937. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/create_s3_bucket.py +18 -0
  4938. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/create_sns_topic.py +18 -0
  4939. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/delete_sns_topic.py +18 -0
  4940. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/put_object_notification_fails.py +21 -0
  4941. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/put_object_with_sns_notification.py +24 -0
  4942. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/__init__.py +0 -0
  4943. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/client.py +29 -0
  4944. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/conftest.py +9 -0
  4945. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/constants.py +11 -0
  4946. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/__init__.py +34 -0
  4947. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_already_exists.py +12 -0
  4948. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_already_has_notification.py +14 -0
  4949. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_exists_and_is_active.py +12 -0
  4950. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_has_no_notification.py +10 -0
  4951. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_has_notification.py +27 -0
  4952. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_is_active_given.py +10 -0
  4953. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_is_not_active_given.py +15 -0
  4954. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_not_already_exist.py +10 -0
  4955. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_not_exist_or_not_active.py +10 -0
  4956. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/message_slot_available.py +10 -0
  4957. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/no_message_slot_available.py +14 -0
  4958. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/no_object_slot_available.py +10 -0
  4959. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/object_slot_available.py +10 -0
  4960. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_already_exists.py +12 -0
  4961. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_does_not_exist.py +10 -0
  4962. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_exists.py +12 -0
  4963. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_exists_and_is_active.py +12 -0
  4964. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_is_active_given.py +10 -0
  4965. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_is_already_deleted.py +21 -0
  4966. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_not_already_exist.py +10 -0
  4967. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_not_exist_or_not_active.py +10 -0
  4968. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_bid_in_bucket_status.py +12 -0
  4969. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_bid_not_in_bucket_status.py +10 -0
  4970. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_object_uploaded_notification_delivered.py +19 -0
  4971. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_object_uploaded_notification_failed.py +19 -0
  4972. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_qid_in_queue_status.py +12 -0
  4973. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_qid_not_in_queue_status.py +10 -0
  4974. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_s3_bucket_has_been_created.py +12 -0
  4975. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_notification_config_added.py +27 -0
  4976. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_queue_has_been_created.py +12 -0
  4977. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_queue_has_been_deleted.py +18 -0
  4978. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_active.py +10 -0
  4979. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_deleted.py +22 -0
  4980. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_not_deleted.py +14 -0
  4981. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/test_scenarios.py +27 -0
  4982. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/__init__.py +8 -0
  4983. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/_inv_s3api_sqs_every_queued_message_references_a_queue_that_exists.py +10 -0
  4984. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/_inv_s3api_sqs_every_queued_message_references_an_object_that_exists.py +10 -0
  4985. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/bucket_active_no_notification.py +16 -0
  4986. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/bucket_will_send_notifications.py +18 -0
  4987. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/object_exists_and_notification_queued.py +22 -0
  4988. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/object_exists_but_no_notification.py +24 -0
  4989. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/queue_is_active_then.py +17 -0
  4990. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/queue_is_deleted_then.py +10 -0
  4991. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/__init__.py +6 -0
  4992. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/add_sqs_notification_config.py +29 -0
  4993. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/create_s3_bucket.py +18 -0
  4994. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/create_sqs_queue.py +18 -0
  4995. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/delete_sqs_queue.py +19 -0
  4996. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/put_object_notification_fails.py +21 -0
  4997. local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/put_object_with_sqs_notification.py +24 -0
  4998. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/__init__.py +0 -0
  4999. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/client.py +56 -0
  5000. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/conftest.py +9 -0
  5001. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/constants.py +11 -0
  5002. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/__init__.py +70 -0
  5003. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bname_in_bucket_status.py +12 -0
  5004. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bname_not_in_bucket_status.py +10 -0
  5005. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_already_exists.py +12 -0
  5006. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_does_not_exist.py +10 -0
  5007. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_exists.py +12 -0
  5008. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_has_active_namespaces.py +12 -0
  5009. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_has_no_active_namespaces.py +10 -0
  5010. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_active_given.py +10 -0
  5011. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_creating_given.py +18 -0
  5012. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_deleting_given.py +20 -0
  5013. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_active_given.py +18 -0
  5014. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_creating_given.py +10 -0
  5015. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_deleting_given.py +10 -0
  5016. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_not_already_exist.py +10 -0
  5017. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/compaction_enabled_given.py +11 -0
  5018. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/compaction_not_enabled_given.py +10 -0
  5019. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_already_exists.py +12 -0
  5020. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_does_not_exist.py +10 -0
  5021. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_exists.py +12 -0
  5022. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_has_active_tables.py +12 -0
  5023. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_has_no_active_tables.py +10 -0
  5024. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_active_given.py +10 -0
  5025. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_deleting_given.py +17 -0
  5026. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_not_active_given.py +28 -0
  5027. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_not_deleting_given.py +10 -0
  5028. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_not_already_exist.py +10 -0
  5029. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/ns_key_in_ns_status.py +12 -0
  5030. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_been_created.py +12 -0
  5031. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_been_deleted.py +19 -0
  5032. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_finished_being_deleted.py +15 -0
  5033. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_policy_has_been_attached.py +19 -0
  5034. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_snapshot_has_been_created.py +11 -0
  5035. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_been_created.py +15 -0
  5036. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_been_deleted.py +21 -0
  5037. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_finished_being_deleted.py +14 -0
  5038. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_finished_creating.py +12 -0
  5039. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_been_created.py +12 -0
  5040. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_been_deleted.py +16 -0
  5041. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_finished_being_deleted.py +15 -0
  5042. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_finished_creating.py +15 -0
  5043. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_tables_policy_has_been_deleted.py +22 -0
  5044. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_tables_schema_has_been_evolved.py +11 -0
  5045. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_an_expired_snapshot_has_been_removed.py +11 -0
  5046. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_compaction_has_been_started.py +11 -0
  5047. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_compaction_has_finished.py +12 -0
  5048. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_maintenance_configuration_has_been_applied.py +21 -0
  5049. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_already_exists.py +11 -0
  5050. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_does_not_exist.py +10 -0
  5051. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_exists.py +11 -0
  5052. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_is_active_given.py +11 -0
  5053. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_is_not_active_given.py +11 -0
  5054. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_not_already_exist.py +10 -0
  5055. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/system_is_initialized.py +10 -0
  5056. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_already_exists.py +12 -0
  5057. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_does_not_exist.py +10 -0
  5058. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_does_not_have_policy.py +10 -0
  5059. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_exists.py +12 -0
  5060. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_more_than_one_snapshot.py +11 -0
  5061. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_one_or_fewer_snapshots.py +10 -0
  5062. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_policy.py +11 -0
  5063. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_active_given.py +10 -0
  5064. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_creating_given.py +21 -0
  5065. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_deleting_given.py +17 -0
  5066. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_in_maintenance_given.py +12 -0
  5067. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_active_given.py +26 -0
  5068. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_creating_given.py +10 -0
  5069. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_deleting_given.py +10 -0
  5070. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_in_maintenance_given.py +10 -0
  5071. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_not_already_exist.py +10 -0
  5072. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/tkey_in_table_status.py +12 -0
  5073. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/test_scenarios.py +27 -0
  5074. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/__init__.py +24 -0
  5075. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_enters_deleting_then.py +14 -0
  5076. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_active_then.py +14 -0
  5077. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_creating_then.py +19 -0
  5078. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_deleted_then.py +16 -0
  5079. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/compaction_is_enabled_then.py +11 -0
  5080. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/deleting_bucket_has_no_active_namespaces.py +10 -0
  5081. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/deleting_namespace_has_no_active_tables.py +10 -0
  5082. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_enters_deleting_then.py +14 -0
  5083. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_is_active_then.py +14 -0
  5084. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_is_deleted_then.py +14 -0
  5085. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/operation_is_rejected_then.py +15 -0
  5086. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/schema_version_at_least_one.py +10 -0
  5087. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/schema_version_incremented_then.py +11 -0
  5088. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_count_non_negative.py +10 -0
  5089. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_is_active_then.py +13 -0
  5090. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_is_deleted_then.py +13 -0
  5091. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_enters_deleting_then.py +14 -0
  5092. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_enters_maintenance_then.py +11 -0
  5093. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_has_no_policy_then.py +14 -0
  5094. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_has_policy_then.py +14 -0
  5095. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_active_then.py +14 -0
  5096. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_creating_then.py +14 -0
  5097. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_deleted_then.py +14 -0
  5098. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_returns_to_active_then.py +11 -0
  5099. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/__init__.py +19 -0
  5100. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_namespace.py +22 -0
  5101. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_snapshot.py +11 -0
  5102. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_table.py +25 -0
  5103. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_table_bucket.py +18 -0
  5104. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_namespace.py +22 -0
  5105. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table.py +22 -0
  5106. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table_bucket.py +22 -0
  5107. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table_policy.py +22 -0
  5108. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/evolve_schema.py +11 -0
  5109. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/expire_snapshot.py +11 -0
  5110. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/finish_compaction.py +20 -0
  5111. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/namespace_finishes_deleting.py +18 -0
  5112. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/put_table_maintenance_configuration.py +26 -0
  5113. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/put_table_policy.py +25 -0
  5114. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/start_compaction.py +24 -0
  5115. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_bucket_finishes_creating.py +15 -0
  5116. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_bucket_finishes_deleting.py +15 -0
  5117. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_finishes_creating.py +18 -0
  5118. local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_finishes_deleting.py +18 -0
  5119. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/__init__.py +0 -0
  5120. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/client.py +24 -0
  5121. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/conftest.py +9 -0
  5122. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/constants.py +15 -0
  5123. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/__init__.py +24 -0
  5124. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/recovery_window_not_open_given.py +12 -0
  5125. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/recovery_window_open_given.py +10 -0
  5126. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_already_exists.py +12 -0
  5127. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_does_not_exist.py +10 -0
  5128. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_exists.py +12 -0
  5129. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_active_given.py +10 -0
  5130. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_deleted_given.py +13 -0
  5131. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_not_active_given.py +21 -0
  5132. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_not_deleted_given.py +10 -0
  5133. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_not_already_exist.py +10 -0
  5134. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_deleted_secret_has_been_restored.py +18 -0
  5135. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_created.py +12 -0
  5136. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_deleted.py +17 -0
  5137. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_described.py +13 -0
  5138. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_all_secrets_have_been_listed.py +16 -0
  5139. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_automatic_rotation_event_has_occurred.py +11 -0
  5140. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_current_value_has_been_retrieved.py +17 -0
  5141. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_metadata_has_been_updated.py +19 -0
  5142. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_new_value_has_been_stored.py +19 -0
  5143. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_recovery_window_has_expired.py +11 -0
  5144. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_sname_in_secret_status.py +12 -0
  5145. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_sname_not_in_secret_status.py +10 -0
  5146. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_tags_have_been_added.py +19 -0
  5147. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_tags_have_been_removed.py +22 -0
  5148. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/test_scenarios.py +27 -0
  5149. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/__init__.py +20 -0
  5150. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/all_secret_names_unique.py +10 -0
  5151. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/all_version_ids_unique.py +10 -0
  5152. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/at_most_one_current_version.py +10 -0
  5153. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/at_most_one_previous_version.py +10 -0
  5154. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/current_secret_value_returned.py +17 -0
  5155. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/deleted_secret_closed_window_not_restorable.py +10 -0
  5156. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_active_secret_has_current_version.py +10 -0
  5157. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_active_secret_has_current_version_quoted.py +10 -0
  5158. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_deleted_secret_recovery_window_open.py +12 -0
  5159. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/list_of_secrets_returned.py +11 -0
  5160. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/new_version_created.py +13 -0
  5161. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_cannot_be_restored.py +12 -0
  5162. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_has_new_version.py +13 -0
  5163. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_active_again.py +17 -0
  5164. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_active_with_initial_version.py +18 -0
  5165. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_deleted_and_window_open.py +10 -0
  5166. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_metadata_returned.py +17 -0
  5167. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_metadata_updated.py +17 -0
  5168. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/specified_tags_associated.py +10 -0
  5169. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/specified_tags_disassociated.py +10 -0
  5170. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/__init__.py +12 -0
  5171. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/create_secret.py +21 -0
  5172. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/delete_secret.py +30 -0
  5173. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/describe_secret.py +19 -0
  5174. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/get_secret_value.py +19 -0
  5175. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/list_secrets.py +17 -0
  5176. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/put_secret_value.py +21 -0
  5177. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/recovery_window_expires.py +11 -0
  5178. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/restore_secret.py +19 -0
  5179. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/rotation_event.py +11 -0
  5180. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/tag_resource.py +32 -0
  5181. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/untag_resource.py +32 -0
  5182. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/update_secret.py +21 -0
  5183. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/__init__.py +0 -0
  5184. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/client.py +30 -0
  5185. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/conftest.py +9 -0
  5186. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/constants.py +9 -0
  5187. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/__init__.py +26 -0
  5188. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_already_exists.py +12 -0
  5189. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_does_not_exist.py +10 -0
  5190. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_exists.py +12 -0
  5191. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_exists_and_is_active.py +12 -0
  5192. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_active_given.py +10 -0
  5193. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_already_deleted.py +20 -0
  5194. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_deleted_given.py +11 -0
  5195. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_not_deleted_given.py +11 -0
  5196. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_not_already_exist.py +10 -0
  5197. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_not_exist_or_deleted.py +11 -0
  5198. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/event_slot_available.py +10 -0
  5199. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/no_event_slot_available.py +10 -0
  5200. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_already_exists.py +12 -0
  5201. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_exists_and_is_active.py +12 -0
  5202. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_not_already_exist.py +10 -0
  5203. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_not_exist_or_not_active.py +10 -0
  5204. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_busid_in_bus_status.py +12 -0
  5205. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_busid_not_in_bus_status.py +10 -0
  5206. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_event_bus_has_been_created.py +12 -0
  5207. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_event_bus_has_been_deleted.py +17 -0
  5208. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_created_event_delivered.py +17 -0
  5209. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_created_event_failed.py +17 -0
  5210. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_deleted_event_delivered.py +22 -0
  5211. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_rotated_event_delivered.py +16 -0
  5212. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_sid_in_secret_status.py +12 -0
  5213. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_sid_not_in_secret_status.py +10 -0
  5214. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/test_scenarios.py +27 -0
  5215. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/__init__.py +8 -0
  5216. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/_inv_secretsmanager_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  5217. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/_inv_secretsmanager_events_every_delivered_event_references_a_secret_that_exists.py +10 -0
  5218. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/bus_is_active_then.py +16 -0
  5219. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/bus_is_deleted_then.py +10 -0
  5220. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_and_created_event_delivered.py +16 -0
  5221. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_but_no_event.py +16 -0
  5222. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_with_new_version_and_rotated_event.py +13 -0
  5223. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_pending_deletion_and_deleted_event.py +18 -0
  5224. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/__init__.py +6 -0
  5225. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_event_bus.py +18 -0
  5226. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_secret_event_delivered.py +29 -0
  5227. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_secret_event_fails.py +22 -0
  5228. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/delete_event_bus.py +18 -0
  5229. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/delete_secret_event_delivered.py +28 -0
  5230. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/rotate_secret_event_delivered.py +13 -0
  5231. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/__init__.py +0 -0
  5232. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/client.py +33 -0
  5233. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/conftest.py +9 -0
  5234. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/constants.py +11 -0
  5235. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/__init__.py +36 -0
  5236. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_a_lambda_rotation_function_has_been_deployed.py +12 -0
  5237. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_a_rotation_has_been_triggered.py +11 -0
  5238. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_a_secret_has_been_created_in_secrets_manager.py +12 -0
  5239. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_fid_in_func_status.py +12 -0
  5240. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_fid_not_in_func_status.py +10 -0
  5241. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_already_exists.py +12 -0
  5242. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_does_not_exist.py +10 -0
  5243. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_exists.py +12 -0
  5244. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_exists_and_active.py +12 -0
  5245. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_active_given.py +10 -0
  5246. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_already_deleted.py +23 -0
  5247. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_not_active_given.py +20 -0
  5248. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_not_already_exist.py +10 -0
  5249. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_not_exist_or_not_active.py +10 -0
  5250. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_iid_in_inv_status.py +11 -0
  5251. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_invocation_is_in_progress.py +11 -0
  5252. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_invocation_slot_available.py +11 -0
  5253. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_no_invocation_is_in_progress.py +10 -0
  5254. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_no_invocation_slot_available.py +10 -0
  5255. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_active.py +11 -0
  5256. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_deleted.py +11 -0
  5257. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_failed.py +11 -0
  5258. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_not_active.py +11 -0
  5259. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_not_deleted.py +11 -0
  5260. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_succeeded.py +16 -0
  5261. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_has_been_configured.py +13 -0
  5262. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_already_exists.py +12 -0
  5263. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_already_has_rotation.py +11 -0
  5264. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_exists_and_active.py +12 -0
  5265. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_has_no_rotation.py +10 -0
  5266. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_has_rotation.py +11 -0
  5267. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_not_already_exist.py +10 -0
  5268. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_not_exist_or_not_active.py +10 -0
  5269. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_sid_in_secret_status.py +12 -0
  5270. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_sid_not_in_secret_status.py +10 -0
  5271. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_the_rotation_function_has_been_deleted.py +20 -0
  5272. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/test_scenarios.py +27 -0
  5273. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/__init__.py +9 -0
  5274. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/_inv_secretsmanager_lambda_every_rotating_secret_has_an_in_progress_rotation_inv.py +12 -0
  5275. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/_inv_secretsmanager_lambda_every_successful_rotation_invocation_recorded_which_s.py +12 -0
  5276. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/invocation_failed_secret_unchanged.py +13 -0
  5277. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/invocation_success_secret_rotated.py +13 -0
  5278. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/rotation_function_is_deleted.py +16 -0
  5279. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/secret_has_rotation_configured.py +11 -0
  5280. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/secret_is_rotating.py +13 -0
  5281. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/sm_lambda_function_is_active_then.py +17 -0
  5282. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/sm_lambda_secret_is_active_then.py +17 -0
  5283. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/__init__.py +7 -0
  5284. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/configure_rotation.py +13 -0
  5285. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/create_secret_sm.py +21 -0
  5286. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/delete_rotation_function.py +19 -0
  5287. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/deploy_lambda_rotation_function.py +25 -0
  5288. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/rotation_function_fails.py +11 -0
  5289. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/rotation_function_succeeds.py +13 -0
  5290. local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/trigger_rotation.py +11 -0
  5291. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/__init__.py +0 -0
  5292. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/client.py +29 -0
  5293. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/conftest.py +9 -0
  5294. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/constants.py +7 -0
  5295. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/__init__.py +5 -0
  5296. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_product_and_launch_path_exist.py +14 -0
  5297. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_product_did_not_exist.py +12 -0
  5298. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_provisioned_product_with_a_known_record_exists.py +22 -0
  5299. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/no_record_exists.py +12 -0
  5300. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/system_is_initialized.py +10 -0
  5301. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/test_scenarios.py +27 -0
  5302. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/__init__.py +4 -0
  5303. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/every_provisioned_product_has_an_associated_record.py +15 -0
  5304. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/every_provisioned_record_has_status_succeeded.py +15 -0
  5305. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/operation_is_rejected.py +14 -0
  5306. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/service_catalog_record_will_be_succeeded.py +16 -0
  5307. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/__init__.py +2 -0
  5308. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/a_product_is_provisioned.py +24 -0
  5309. local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/a_record_is_described.py +23 -0
  5310. local_web_services_python_sdk-0.19.0/tests/e2e/sns/__init__.py +0 -0
  5311. local_web_services_python_sdk-0.19.0/tests/e2e/sns/client.py +28 -0
  5312. local_web_services_python_sdk-0.19.0/tests/e2e/sns/conftest.py +9 -0
  5313. local_web_services_python_sdk-0.19.0/tests/e2e/sns/constants.py +11 -0
  5314. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/__init__.py +48 -0
  5315. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmation_token_expired.py +11 -0
  5316. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmation_token_valid.py +11 -0
  5317. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmed_subscription_exists.py +26 -0
  5318. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_does_not_exist.py +10 -0
  5319. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_exists.py +11 -0
  5320. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_is_in_flight_given.py +11 -0
  5321. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_is_not_in_flight_given.py +11 -0
  5322. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_slot_available.py +10 -0
  5323. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_slot_not_available.py +10 -0
  5324. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/no_confirmed_subscription_exists.py +15 -0
  5325. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/pending_subscription_exists.py +11 -0
  5326. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_at_limit.py +11 -0
  5327. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_below_limit.py +11 -0
  5328. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_reached_limit.py +11 -0
  5329. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_delivery_attempt_has_failed_and_been_retried.py +11 -0
  5330. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_delivery_attempt_has_succeeded.py +11 -0
  5331. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_message_has_been_published_to_a_topic.py +21 -0
  5332. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_pending_subscription_has_been_confirmed.py +11 -0
  5333. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_subscription_confirmation_token_has_expired.py +11 -0
  5334. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_subscription_has_been_removed.py +17 -0
  5335. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_all_delivery_retries_have_been_exhausted.py +11 -0
  5336. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_endpoint_has_subscribed_to_a_topic.py +17 -0
  5337. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_sns_topic_has_been_created.py +12 -0
  5338. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_sns_topic_has_been_deleted.py +18 -0
  5339. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_did_in_delivery_status.py +11 -0
  5340. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_sid_in_sub_status.py +18 -0
  5341. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_tarn_in_topic_status.py +12 -0
  5342. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_tarn_not_in_topic_status.py +10 -0
  5343. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_belongs_to_topic.py +10 -0
  5344. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_does_not_exist.py +10 -0
  5345. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_exists.py +18 -0
  5346. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_confirmed_given.py +26 -0
  5347. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_not_confirmed_given.py +13 -0
  5348. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_not_pending_given.py +13 -0
  5349. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_pending_given.py +10 -0
  5350. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_not_belong_to_topic.py +11 -0
  5351. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_slot_available.py +10 -0
  5352. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_slot_not_available.py +10 -0
  5353. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_does_not_exist.py +11 -0
  5354. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_exists.py +10 -0
  5355. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_is_active.py +10 -0
  5356. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_is_not_active.py +17 -0
  5357. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_already_exists.py +12 -0
  5358. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_does_not_exist.py +18 -0
  5359. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_exists.py +12 -0
  5360. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_is_active_given.py +10 -0
  5361. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_is_not_active_given.py +17 -0
  5362. local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_not_already_exist.py +10 -0
  5363. local_web_services_python_sdk-0.19.0/tests/e2e/sns/test_scenarios.py +27 -0
  5364. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/__init__.py +18 -0
  5365. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_abandoned_then.py +11 -0
  5366. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_done_then.py +11 -0
  5367. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_marked_done_then.py +11 -0
  5368. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_retried_then.py +11 -0
  5369. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_retry_count_incremented_then.py +11 -0
  5370. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_retry_count_within_limit.py +10 -0
  5371. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/every_active_subscription_references_active_topic.py +10 -0
  5372. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/message_delivered_then.py +10 -0
  5373. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/no_delivery_to_deleted_subscription.py +10 -0
  5374. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/no_delivery_to_unconfirmed_subscription.py +10 -0
  5375. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/pending_subscription_deleted_then.py +11 -0
  5376. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_confirmed_then.py +11 -0
  5377. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_deleted_by_removal_then.py +12 -0
  5378. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_deleted_then.py +10 -0
  5379. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_pending_or_confirmed_then.py +11 -0
  5380. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_active_then.py +18 -0
  5381. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_deleted_and_subscriptions_removed_then.py +17 -0
  5382. local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_deleted_then.py +17 -0
  5383. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/__init__.py +13 -0
  5384. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/all_delivery_retries_exhausted.py +11 -0
  5385. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/confirm_subscription.py +11 -0
  5386. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/confirmation_token_expires_when.py +11 -0
  5387. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/create_topic.py +20 -0
  5388. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delete_topic.py +20 -0
  5389. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_fails.py +11 -0
  5390. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_fails_and_retried.py +11 -0
  5391. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_retry_exhausted.py +11 -0
  5392. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_succeeds.py +11 -0
  5393. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/publish_to_topic.py +22 -0
  5394. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscribe_to_topic.py +25 -0
  5395. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscription_confirmation_token_expires.py +11 -0
  5396. local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscription_removed.py +17 -0
  5397. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/__init__.py +0 -0
  5398. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/client.py +26 -0
  5399. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/conftest.py +9 -0
  5400. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/constants.py +13 -0
  5401. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/__init__.py +32 -0
  5402. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_a_lambda_function_has_been_deployed.py +12 -0
  5403. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_a_lambda_function_has_subscribed.py +11 -0
  5404. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_a_message_has_been_published_and_invoked.py +16 -0
  5405. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_an_sns_topic_has_been_created.py +12 -0
  5406. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_confirmed_subscription_exists.py +11 -0
  5407. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_fid_not_in_func_status.py +10 -0
  5408. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_already_exists.py +12 -0
  5409. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_does_not_exist.py +10 -0
  5410. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_exists.py +12 -0
  5411. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_is_active_given.py +10 -0
  5412. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_is_not_active_given.py +20 -0
  5413. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_not_already_exist.py +10 -0
  5414. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_iid_in_inv_status.py +11 -0
  5415. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_invocation_is_in_progress.py +11 -0
  5416. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_invocation_slot_available.py +11 -0
  5417. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_confirmed_subscription.py +10 -0
  5418. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_invocation_is_in_progress.py +10 -0
  5419. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_invocation_slot_available.py +10 -0
  5420. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscribed_function_is_active.py +11 -0
  5421. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscribed_function_is_not_active.py +11 -0
  5422. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscription_slot_available.py +10 -0
  5423. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscription_slot_not_available.py +10 -0
  5424. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_the_lambda_invocation_has_completed_successfully.py +11 -0
  5425. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_the_lambda_invocation_has_failed.py +11 -0
  5426. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_tid_in_topic_status.py +12 -0
  5427. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_tid_not_in_topic_status.py +10 -0
  5428. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_already_exists.py +12 -0
  5429. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_does_not_exist.py +10 -0
  5430. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_exists.py +12 -0
  5431. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_is_active_given.py +10 -0
  5432. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_is_not_active_given.py +20 -0
  5433. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_not_already_exist.py +10 -0
  5434. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/test_scenarios.py +27 -0
  5435. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/__init__.py +9 -0
  5436. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/_inv_sns_lambda_every_confirmed_subscription_references_an_active_sns_topic.py +10 -0
  5437. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/_inv_sns_lambda_every_in_progress_invocation_references_an_active_lambda_functio.py +12 -0
  5438. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/_inv_sns_lambda_every_in_progress_invocation_was_triggered_by_a_confirmed_subscr.py +12 -0
  5439. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_function_is_active_then.py +17 -0
  5440. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_failed.py +11 -0
  5441. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_in_progress_then.py +11 -0
  5442. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_success.py +11 -0
  5443. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_topic_is_active_then.py +17 -0
  5444. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/subscription_confirmed.py +13 -0
  5445. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/__init__.py +6 -0
  5446. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/create_sns_topic_lambda.py +19 -0
  5447. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/deploy_lambda_function_sns.py +25 -0
  5448. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/publish_and_invoke_lambda.py +16 -0
  5449. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/sns_lambda_invocation_completes.py +11 -0
  5450. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/sns_lambda_invocation_fails.py +11 -0
  5451. local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/subscribe_lambda_to_topic.py +11 -0
  5452. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/__init__.py +0 -0
  5453. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/client.py +41 -0
  5454. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/conftest.py +9 -0
  5455. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/constants.py +17 -0
  5456. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/__init__.py +32 -0
  5457. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/available_message_exists_in_queue.py +16 -0
  5458. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/confirmed_subscription_exists.py +14 -0
  5459. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/message_slot_available.py +10 -0
  5460. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_available_message_exists.py +11 -0
  5461. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_confirmed_subscription_exists.py +12 -0
  5462. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_message_slot_available.py +10 -0
  5463. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_already_exists.py +12 -0
  5464. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_does_not_exist.py +10 -0
  5465. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_existed.py +12 -0
  5466. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_exists.py +12 -0
  5467. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_is_active_given.py +10 -0
  5468. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_is_not_active_given.py +21 -0
  5469. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_not_already_exist.py +10 -0
  5470. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_a_message_has_been_consumed.py +21 -0
  5471. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_a_message_has_been_published_and_delivered.py +18 -0
  5472. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sns_topic_has_been_created.py +12 -0
  5473. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sqs_queue_has_been_created.py +12 -0
  5474. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sqs_queue_has_subscribed.py +14 -0
  5475. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_mid_in_msg_status.py +15 -0
  5476. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_qid_not_in_queue_status.py +10 -0
  5477. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_tid_in_topic_status.py +12 -0
  5478. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_tid_not_in_topic_status.py +10 -0
  5479. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscribed_queue_is_active.py +10 -0
  5480. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscribed_queue_is_not_active.py +21 -0
  5481. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscription_slot_available.py +10 -0
  5482. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscription_slot_not_available.py +10 -0
  5483. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_already_exists.py +12 -0
  5484. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_does_not_exist.py +10 -0
  5485. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_exists.py +12 -0
  5486. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_is_active_given.py +10 -0
  5487. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_is_not_active_given.py +20 -0
  5488. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_not_already_exist.py +10 -0
  5489. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/test_scenarios.py +27 -0
  5490. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/__init__.py +8 -0
  5491. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/_inv_sns_sqs_a_message_can_only_be_delivered_if_a_confirmed_subscription_exists_.py +12 -0
  5492. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/_inv_sns_sqs_every_available_message_belongs_to_an_active_queue.py +10 -0
  5493. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/_inv_sns_sqs_every_confirmed_subscription_references_an_active_sns_topic.py +10 -0
  5494. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/message_available_in_queue.py +25 -0
  5495. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/message_is_deleted.py +10 -0
  5496. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/queue_is_active_then.py +17 -0
  5497. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/subscription_confirmed.py +18 -0
  5498. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/topic_is_active_then.py +17 -0
  5499. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/__init__.py +5 -0
  5500. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/consume_message.py +26 -0
  5501. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/create_sns_topic.py +18 -0
  5502. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/create_sqs_queue.py +18 -0
  5503. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/publish_and_deliver.py +20 -0
  5504. local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/subscribe_queue_to_topic.py +20 -0
  5505. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/__init__.py +0 -0
  5506. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/client.py +45 -0
  5507. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/conftest.py +9 -0
  5508. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/constants.py +9 -0
  5509. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/__init__.py +40 -0
  5510. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_does_not_exist.py +11 -0
  5511. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_exists.py +13 -0
  5512. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_is_active.py +10 -0
  5513. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_is_not_active.py +20 -0
  5514. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_does_not_exist.py +12 -0
  5515. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_exceeded_max_receive_count.py +11 -0
  5516. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_exists.py +13 -0
  5517. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_available_given.py +10 -0
  5518. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_in_flight_given.py +14 -0
  5519. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_not_available_given.py +11 -0
  5520. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_not_in_flight_given.py +11 -0
  5521. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_not_exceeded_max_receive_count.py +11 -0
  5522. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_slot_available.py +10 -0
  5523. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_slot_not_available.py +10 -0
  5524. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_does_not_exist.py +11 -0
  5525. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_exists.py +10 -0
  5526. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_is_active.py +10 -0
  5527. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_is_not_active.py +18 -0
  5528. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_already_exists.py +12 -0
  5529. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_does_not_exist.py +17 -0
  5530. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_exists.py +12 -0
  5531. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_has_max_receive_count.py +11 -0
  5532. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_has_no_max_receive_count.py +11 -0
  5533. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_is_active_given.py +10 -0
  5534. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_is_not_active_given.py +18 -0
  5535. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_not_already_exist.py +10 -0
  5536. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_exceeding_receive_count_moved_to_dlq.py +11 -0
  5537. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_has_been_received_from_the_queue.py +14 -0
  5538. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_has_been_sent_to_the_queue.py +13 -0
  5539. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_visibility_timeout_has_expired.py +11 -0
  5540. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_queue_has_been_created.py +12 -0
  5541. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_queue_has_been_deleted.py +16 -0
  5542. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_all_messages_in_a_queue_have_been_purged.py +14 -0
  5543. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_an_in_flight_message_has_been_deleted.py +19 -0
  5544. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_did_in_delivery_status.py +11 -0
  5545. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_message_visibility_timeout_has_been_changed.py +20 -0
  5546. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_mid_in_msg_status.py +13 -0
  5547. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_qname_in_queue_status.py +12 -0
  5548. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_qname_not_in_queue_status.py +10 -0
  5549. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_queue_attributes_have_been_retrieved.py +15 -0
  5550. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/test_scenarios.py +27 -0
  5551. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/__init__.py +13 -0
  5552. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/all_messages_deleted_then.py +19 -0
  5553. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_in_flight_message_belongs_to_active_queue.py +10 -0
  5554. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_message_has_non_negative_receive_count.py +10 -0
  5555. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_non_deleted_message_belongs_to_active_queue.py +10 -0
  5556. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_becomes_available_then.py +13 -0
  5557. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_in_dlq_then.py +14 -0
  5558. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_available_then.py +18 -0
  5559. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_in_flight_then.py +19 -0
  5560. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_removed_then.py +13 -0
  5561. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_visibility_updated_then.py +12 -0
  5562. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_attributes_returned_then.py +14 -0
  5563. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_is_active_then.py +17 -0
  5564. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_is_deleted_then.py +17 -0
  5565. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/__init__.py +10 -0
  5566. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/change_message_visibility.py +22 -0
  5567. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/create_queue.py +18 -0
  5568. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/delete_message.py +21 -0
  5569. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/delete_queue.py +20 -0
  5570. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/get_queue_attributes.py +20 -0
  5571. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/purge_queue.py +20 -0
  5572. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/receive_message.py +27 -0
  5573. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/redrive_to_dlq.py +11 -0
  5574. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/send_message.py +21 -0
  5575. local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/visibility_timeout_expires.py +23 -0
  5576. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/__init__.py +0 -0
  5577. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/client.py +24 -0
  5578. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/conftest.py +9 -0
  5579. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/constants.py +15 -0
  5580. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/__init__.py +25 -0
  5581. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_already_exists.py +12 -0
  5582. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_does_not_exist.py +10 -0
  5583. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_exists.py +12 -0
  5584. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_is_active.py +10 -0
  5585. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_is_not_active.py +20 -0
  5586. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_not_already_exist.py +10 -0
  5587. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_not_already_exist_or_deleted.py +10 -0
  5588. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_deleted.py +17 -0
  5589. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_retrieved.py +14 -0
  5590. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_stored.py +12 -0
  5591. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_written_without_overwrite.py +12 -0
  5592. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_an_existing_parameter_value_has_been_updated.py +15 -0
  5593. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_multiple_parameters_have_been_deleted.py +17 -0
  5594. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_multiple_parameters_have_been_retrieved.py +12 -0
  5595. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_parameters_have_been_described.py +12 -0
  5596. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_parameters_under_a_path_have_been_retrieved.py +12 -0
  5597. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_pname_in_param_exists.py +12 -0
  5598. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_pname_not_in_param_exists.py +10 -0
  5599. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_for_a_parameter_have_been_listed.py +12 -0
  5600. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_have_been_added_to_a_parameter.py +21 -0
  5601. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_have_been_removed_from_a_parameter.py +27 -0
  5602. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_associated_with_parameter.py +17 -0
  5603. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_association_active.py +10 -0
  5604. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_association_not_active.py +20 -0
  5605. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_not_associated_with_parameter.py +10 -0
  5606. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/test_scenarios.py +27 -0
  5607. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/__init__.py +17 -0
  5608. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/error_log_only_parameter_already_exists.py +10 -0
  5609. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/every_parameter_has_valid_type.py +10 -0
  5610. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/every_parameter_version_is_positive.py +10 -0
  5611. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/list_of_tags_returned.py +13 -0
  5612. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/no_parameter_exists_after_delete.py +10 -0
  5613. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/param_exists_values_valid_booleans.py +10 -0
  5614. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_already_exists_error.py +12 -0
  5615. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_exists_with_version_1.py +17 -0
  5616. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_has_new_value_and_version.py +19 -0
  5617. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_metadata_returned.py +13 -0
  5618. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_no_longer_exists.py +16 -0
  5619. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_value_returned.py +18 -0
  5620. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_values_returned.py +11 -0
  5621. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameters_no_longer_exist.py +16 -0
  5622. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameters_under_path_returned.py +13 -0
  5623. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/tags_associated_with_parameter.py +12 -0
  5624. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/tags_disassociated_from_parameter.py +12 -0
  5625. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/__init__.py +12 -0
  5626. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/add_tags_to_parameter.py +23 -0
  5627. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/delete_parameter.py +19 -0
  5628. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/delete_parameters.py +29 -0
  5629. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/describe_parameters.py +17 -0
  5630. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameter.py +19 -0
  5631. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameters.py +19 -0
  5632. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameters_by_path.py +19 -0
  5633. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/list_tags_for_parameter.py +34 -0
  5634. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_create.py +21 -0
  5635. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_no_overwrite.py +34 -0
  5636. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_overwrite.py +34 -0
  5637. local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/remove_tags_from_parameter.py +35 -0
  5638. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/__init__.py +0 -0
  5639. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/client.py +20 -0
  5640. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/conftest.py +9 -0
  5641. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/constants.py +9 -0
  5642. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/__init__.py +25 -0
  5643. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_already_exists.py +12 -0
  5644. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_does_not_exist.py +10 -0
  5645. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_exists.py +12 -0
  5646. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_active_given.py +10 -0
  5647. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_already_deleted.py +20 -0
  5648. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_deleted_given.py +11 -0
  5649. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_not_deleted_given.py +11 -0
  5650. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_not_already_exist.py +10 -0
  5651. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/busid_in_bus_status.py +12 -0
  5652. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/busid_not_in_bus_status.py +10 -0
  5653. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/event_slot_available.py +10 -0
  5654. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/eventbridge_bus_has_been_created.py +12 -0
  5655. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/eventbridge_bus_has_been_deleted.py +11 -0
  5656. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/no_event_slot_available.py +10 -0
  5657. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_already_exists.py +12 -0
  5658. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_created_event_delivered_given.py +16 -0
  5659. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_created_event_failed_given.py +16 -0
  5660. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_deleted_event_delivered_given.py +16 -0
  5661. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_does_not_exist.py +10 -0
  5662. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_exists.py +12 -0
  5663. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_exists_not_deleted.py +10 -0
  5664. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_is_already_deleted.py +20 -0
  5665. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_not_already_exist.py +10 -0
  5666. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/pid_in_param_status.py +12 -0
  5667. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/pid_not_in_param_status.py +10 -0
  5668. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/test_scenarios.py +27 -0
  5669. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/__init__.py +7 -0
  5670. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/_inv_ssm_events_every_delivered_event_references_a_bus_that_exists.py +10 -0
  5671. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/_inv_ssm_events_every_delivered_event_references_a_parameter_that_exists_in_any_.py +12 -0
  5672. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/bus_is_active_then.py +16 -0
  5673. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/bus_is_deleted_then.py +10 -0
  5674. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_exists_and_created_event_delivered.py +18 -0
  5675. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_exists_but_no_event.py +16 -0
  5676. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_is_deleted_and_event_delivered.py +20 -0
  5677. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/__init__.py +5 -0
  5678. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/create_event_bus.py +18 -0
  5679. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/delete_event_bus.py +18 -0
  5680. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/delete_parameter_event_delivered.py +25 -0
  5681. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/put_parameter_event_delivered.py +27 -0
  5682. local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/put_parameter_event_fails.py +22 -0
  5683. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/__init__.py +0 -0
  5684. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/client.py +32 -0
  5685. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/conftest.py +9 -0
  5686. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/constants.py +27 -0
  5687. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/__init__.py +44 -0
  5688. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/all_sms_have_been_listed_given.py +14 -0
  5689. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/arn_in_sm_status.py +14 -0
  5690. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/arn_not_in_sm_status.py +10 -0
  5691. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/eid_in_exec_status.py +33 -0
  5692. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_does_not_exist.py +10 -0
  5693. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_exists.py +17 -0
  5694. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_has_been_described_given.py +11 -0
  5695. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_history_retrieved_given.py +11 -0
  5696. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_is_not_running_given.py +11 -0
  5697. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_is_running_given.py +10 -0
  5698. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_slot_available.py +11 -0
  5699. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_slot_not_available.py +10 -0
  5700. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_started_on_standard_sm_given.py +11 -0
  5701. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/executions_listed_given.py +14 -0
  5702. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_stopped_given.py +33 -0
  5703. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_terminal_given.py +33 -0
  5704. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_timed_out_given.py +33 -0
  5705. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sfn_sm_has_been_created.py +14 -0
  5706. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_already_exists.py +14 -0
  5707. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_definition_updated_given.py +14 -0
  5708. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_definition_validated_given.py +14 -0
  5709. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_deletion_finalized_given.py +11 -0
  5710. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_does_not_exist.py +10 -0
  5711. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_exists.py +14 -0
  5712. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_has_been_deleted.py +15 -0
  5713. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_has_been_described_given.py +14 -0
  5714. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_active_given.py +10 -0
  5715. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_deleting_given.py +15 -0
  5716. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_express_given.py +16 -0
  5717. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_active_given.py +21 -0
  5718. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_deleting_given.py +10 -0
  5719. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_express_given.py +18 -0
  5720. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_standard_given.py +17 -0
  5721. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_standard_given.py +10 -0
  5722. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_not_already_exist.py +10 -0
  5723. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_versions_have_been_listed_given.py +14 -0
  5724. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sync_execution_started_given.py +11 -0
  5725. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_associated_with_sm.py +17 -0
  5726. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_association_active.py +10 -0
  5727. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_association_not_active.py +11 -0
  5728. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_not_associated_with_sm.py +10 -0
  5729. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_added_to_sm_given.py +14 -0
  5730. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_for_sm_listed_given.py +14 -0
  5731. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_removed_from_sm_given.py +14 -0
  5732. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/test_scenarios.py +27 -0
  5733. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/__init__.py +26 -0
  5734. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/_inv_stepfunctions_every_execution_has_a_valid_status_running_succeeded_failed_t.py +15 -0
  5735. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/_inv_stepfunctions_every_state_machine_has_a_valid_status_active_deleting_or_del.py +12 -0
  5736. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/_inv_stepfunctions_every_state_machine_has_a_valid_type_standard_or_express.py +10 -0
  5737. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/definition_is_valid_or_invalid.py +15 -0
  5738. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_execution_belongs_to_known_sm.py +10 -0
  5739. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_execution_has_valid_status.py +16 -0
  5740. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_sm_has_valid_status.py +22 -0
  5741. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_sm_has_valid_type.py +10 -0
  5742. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_details_returned.py +13 -0
  5743. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_history_returned.py +13 -0
  5744. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_aborted_then.py +17 -0
  5745. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_running_then.py +11 -0
  5746. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_succeeded_or_failed_then.py +15 -0
  5747. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_timed_out_then.py +10 -0
  5748. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_executions_returned.py +11 -0
  5749. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_sm_versions_returned.py +13 -0
  5750. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_sms_returned.py +13 -0
  5751. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_tags_returned.py +13 -0
  5752. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_details_returned.py +13 -0
  5753. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_active_then.py +20 -0
  5754. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_deleted_then.py +10 -0
  5755. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_deleting_then.py +12 -0
  5756. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_version_incremented.py +12 -0
  5757. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sync_executions_only_for_express.py +12 -0
  5758. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/tags_associated_with_sm.py +10 -0
  5759. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/tags_disassociated_from_sm.py +10 -0
  5760. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/__init__.py +19 -0
  5761. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/create_state_machine.py +23 -0
  5762. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/delete_state_machine.py +22 -0
  5763. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/describe_execution.py +18 -0
  5764. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/describe_state_machine.py +22 -0
  5765. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/execution_step_transition.py +11 -0
  5766. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/execution_timeout.py +11 -0
  5767. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/finalize_delete_state_machine.py +11 -0
  5768. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/get_execution_history.py +18 -0
  5769. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_executions.py +20 -0
  5770. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_state_machine_versions.py +22 -0
  5771. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_state_machines.py +17 -0
  5772. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_tags_for_sm.py +22 -0
  5773. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/start_execution.py +23 -0
  5774. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/start_sync_execution.py +22 -0
  5775. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/stop_execution.py +18 -0
  5776. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/tag_state_machine.py +23 -0
  5777. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/untag_state_machine.py +22 -0
  5778. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/update_state_machine.py +22 -0
  5779. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/validate_state_machine_definition.py +39 -0
  5780. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/__init__.py +0 -0
  5781. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/client.py +42 -0
  5782. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/conftest.py +9 -0
  5783. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/constants.py +19 -0
  5784. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/__init__.py +30 -0
  5785. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/cognito_pool_has_been_created.py +12 -0
  5786. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/cognito_pool_has_been_deleted.py +11 -0
  5787. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/eid_in_exec_status.py +33 -0
  5788. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_is_running_given.py +13 -0
  5789. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_of_sm_has_been_started.py +11 -0
  5790. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_slot_available.py +11 -0
  5791. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/no_execution_is_running.py +10 -0
  5792. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/no_execution_slot_available.py +10 -0
  5793. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pid_in_pool_status.py +12 -0
  5794. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pid_not_in_pool_status.py +10 -0
  5795. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_already_exists.py +12 -0
  5796. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_does_not_exist.py +10 -0
  5797. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_exists.py +12 -0
  5798. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_active_given.py +10 -0
  5799. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_already_deleted.py +25 -0
  5800. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_deleted_given.py +10 -0
  5801. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_not_deleted_given.py +12 -0
  5802. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_not_already_exist.py +10 -0
  5803. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_not_exist_or_deleted.py +10 -0
  5804. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/running_execution_called_pool_succeeded_given.py +13 -0
  5805. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/running_execution_failed_pool_deleted_given.py +13 -0
  5806. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sfn_sm_has_been_created.py +12 -0
  5807. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_already_exists.py +12 -0
  5808. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_does_not_exist.py +10 -0
  5809. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_exists.py +12 -0
  5810. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_is_active_given.py +10 -0
  5811. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_is_not_active_given.py +22 -0
  5812. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_not_already_exist.py +10 -0
  5813. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/smid_in_sm_status.py +12 -0
  5814. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/smid_not_in_sm_status.py +10 -0
  5815. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/test_scenarios.py +27 -0
  5816. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/__init__.py +8 -0
  5817. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/_inv_stepfunctions_cognito_every_running_execution_references_an_active_state_ma.py +12 -0
  5818. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/_inv_stepfunctions_cognito_every_succeeded_execution_recorded_which_pool_it_call.py +12 -0
  5819. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_failed_resource_not_found.py +11 -0
  5820. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_is_running_then.py +11 -0
  5821. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_is_succeeded_then.py +11 -0
  5822. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/pool_is_active_then.py +17 -0
  5823. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/pool_is_deleted_then.py +18 -0
  5824. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/sm_is_active_then.py +17 -0
  5825. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/__init__.py +6 -0
  5826. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/create_state_machine.py +21 -0
  5827. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/create_user_pool.py +19 -0
  5828. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/delete_user_pool.py +30 -0
  5829. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/execution_calls_active_pool.py +13 -0
  5830. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/execution_fails_pool_deleted.py +15 -0
  5831. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/start_execution.py +21 -0
  5832. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/__init__.py +0 -0
  5833. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/client.py +42 -0
  5834. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/conftest.py +9 -0
  5835. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/constants.py +19 -0
  5836. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/__init__.py +30 -0
  5837. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cid_in_cluster_status.py +11 -0
  5838. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cid_not_in_cluster_status.py +10 -0
  5839. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_already_exists.py +12 -0
  5840. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_does_not_exist.py +10 -0
  5841. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_exists.py +12 -0
  5842. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_available_given.py +10 -0
  5843. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_not_available_given.py +11 -0
  5844. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_not_stopped_given.py +12 -0
  5845. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_stopped_given.py +12 -0
  5846. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_not_already_exist.py +10 -0
  5847. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_created.py +11 -0
  5848. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_started.py +11 -0
  5849. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_stopped.py +11 -0
  5850. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/eid_in_exec_status.py +33 -0
  5851. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_is_running_given.py +13 -0
  5852. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_of_sm_has_been_started.py +11 -0
  5853. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_slot_available.py +11 -0
  5854. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/no_execution_is_running.py +10 -0
  5855. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/no_execution_slot_available.py +10 -0
  5856. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/running_execution_connected_cluster_succeeded_given.py +16 -0
  5857. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/running_execution_failed_cluster_stopped_given.py +13 -0
  5858. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sfn_sm_has_been_created.py +12 -0
  5859. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_already_exists.py +12 -0
  5860. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_does_not_exist.py +10 -0
  5861. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_exists.py +12 -0
  5862. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_is_active_given.py +10 -0
  5863. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_is_not_active_given.py +22 -0
  5864. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_not_already_exist.py +10 -0
  5865. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/smid_in_sm_status.py +12 -0
  5866. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/smid_not_in_sm_status.py +10 -0
  5867. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/test_scenarios.py +27 -0
  5868. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/__init__.py +9 -0
  5869. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/_inv_stepfunctions_docdb_every_running_execution_references_an_active_state_mach.py +12 -0
  5870. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/_inv_stepfunctions_docdb_every_succeeded_execution_recorded_which_cluster_it_con.py +12 -0
  5871. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_available_and_ready_then.py +11 -0
  5872. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_available_then.py +11 -0
  5873. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_stopped_then.py +11 -0
  5874. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_failed_connection_error.py +11 -0
  5875. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_is_running_then.py +11 -0
  5876. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_is_succeeded_then.py +11 -0
  5877. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/sm_is_active_then.py +17 -0
  5878. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/__init__.py +7 -0
  5879. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/create_docdb_cluster.py +11 -0
  5880. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/create_state_machine.py +21 -0
  5881. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/execution_connects_to_cluster_succeeds.py +13 -0
  5882. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/execution_fails_cluster_stopped.py +15 -0
  5883. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/start_docdb_cluster.py +11 -0
  5884. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/start_execution.py +21 -0
  5885. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/stop_docdb_cluster.py +11 -0
  5886. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/__init__.py +0 -0
  5887. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/client.py +40 -0
  5888. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/conftest.py +9 -0
  5889. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/constants.py +63 -0
  5890. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/__init__.py +35 -0
  5891. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/dynamodb_putitem_task_configured_given.py +11 -0
  5892. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/dynamodb_table_has_been_created.py +12 -0
  5893. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/eid_in_exec_status.py +33 -0
  5894. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_is_running_given.py +13 -0
  5895. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_of_sm_has_been_started.py +11 -0
  5896. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_slot_available.py +11 -0
  5897. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/item_exists_in_target_table.py +14 -0
  5898. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/item_slot_available.py +10 -0
  5899. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_execution_is_running.py +10 -0
  5900. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_execution_slot_available.py +10 -0
  5901. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_item_exists_in_target_table.py +10 -0
  5902. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_item_slot_available.py +15 -0
  5903. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/running_execution_get_item_failed_given.py +16 -0
  5904. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/running_execution_wrote_item_succeeded_given.py +13 -0
  5905. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sfn_sm_has_been_created.py +12 -0
  5906. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_already_exists.py +12 -0
  5907. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_already_has_dynamodb_task.py +14 -0
  5908. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_does_not_exist.py +10 -0
  5909. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_exists.py +12 -0
  5910. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_has_dynamodb_task.py +36 -0
  5911. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_has_no_dynamodb_task.py +17 -0
  5912. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_is_active_given.py +10 -0
  5913. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_is_not_active_given.py +22 -0
  5914. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_not_already_exist.py +10 -0
  5915. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/smid_in_sm_status.py +12 -0
  5916. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/smid_not_in_sm_status.py +10 -0
  5917. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_already_exists.py +12 -0
  5918. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_does_not_exist.py +13 -0
  5919. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_exists.py +12 -0
  5920. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_is_active_given.py +10 -0
  5921. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_is_not_active_given.py +13 -0
  5922. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_not_already_exist.py +10 -0
  5923. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/target_table_is_active.py +10 -0
  5924. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/target_table_is_not_active.py +14 -0
  5925. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/tid_not_in_table_status.py +10 -0
  5926. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/test_scenarios.py +27 -0
  5927. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/__init__.py +8 -0
  5928. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/_inv_stepfunctions_dynamodb_every_existing_item_belongs_to_an_active_table.py +10 -0
  5929. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/_inv_stepfunctions_dynamodb_every_running_execution_references_an_active_state_m.py +12 -0
  5930. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/execution_failed_item_not_found.py +16 -0
  5931. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/execution_is_running_then.py +11 -0
  5932. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/item_exists_and_execution_succeeded.py +26 -0
  5933. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/sm_active_no_dynamodb_task.py +17 -0
  5934. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/sm_will_write_item.py +18 -0
  5935. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/table_is_active_then.py +17 -0
  5936. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/__init__.py +6 -0
  5937. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/configure_dynamodb_task.py +27 -0
  5938. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/create_dynamodb_table.py +23 -0
  5939. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/create_state_machine.py +21 -0
  5940. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/execution_gets_item_not_found.py +42 -0
  5941. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/execution_writes_item.py +43 -0
  5942. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/start_execution.py +26 -0
  5943. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/__init__.py +0 -0
  5944. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/client.py +42 -0
  5945. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/conftest.py +9 -0
  5946. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/constants.py +19 -0
  5947. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/__init__.py +30 -0
  5948. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cid_in_cluster_status.py +11 -0
  5949. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cid_not_in_cluster_status.py +10 -0
  5950. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_already_exists.py +12 -0
  5951. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_does_not_exist.py +10 -0
  5952. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_exists.py +12 -0
  5953. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_available_given.py +10 -0
  5954. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_modifying_given.py +12 -0
  5955. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_not_available_given.py +11 -0
  5956. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_not_modifying_given.py +12 -0
  5957. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_modification_begun_given.py +11 -0
  5958. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_modification_completed_given.py +11 -0
  5959. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_not_already_exist.py +10 -0
  5960. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/eid_in_exec_status.py +33 -0
  5961. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/elasticache_cluster_has_been_created.py +11 -0
  5962. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_is_running_given.py +13 -0
  5963. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_of_sm_has_been_started.py +11 -0
  5964. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_slot_available.py +11 -0
  5965. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/no_execution_is_running.py +10 -0
  5966. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/no_execution_slot_available.py +10 -0
  5967. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/running_execution_connected_cluster_succeeded_given.py +11 -0
  5968. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/running_execution_failed_cluster_modifying_given.py +13 -0
  5969. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sfn_sm_has_been_created.py +12 -0
  5970. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_already_exists.py +12 -0
  5971. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_does_not_exist.py +10 -0
  5972. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_exists.py +12 -0
  5973. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_is_active_given.py +10 -0
  5974. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_is_not_active_given.py +22 -0
  5975. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_not_already_exist.py +10 -0
  5976. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/smid_in_sm_status.py +12 -0
  5977. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/smid_not_in_sm_status.py +10 -0
  5978. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/test_scenarios.py +27 -0
  5979. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/__init__.py +9 -0
  5980. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/_inv_stepfunctions_elasticache_every_running_execution_references_an_active_stat.py +12 -0
  5981. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/_inv_stepfunctions_elasticache_every_succeeded_execution_recorded_which_cluster_.py +12 -0
  5982. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_available_again_then.py +11 -0
  5983. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_available_then.py +11 -0
  5984. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_modifying_then.py +18 -0
  5985. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_failed_connection_error.py +11 -0
  5986. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_is_running_then.py +11 -0
  5987. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_is_succeeded_then.py +11 -0
  5988. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/sm_is_active_then.py +17 -0
  5989. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/__init__.py +7 -0
  5990. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/cluster_modification_begins.py +11 -0
  5991. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/cluster_modification_completes.py +11 -0
  5992. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/create_elasticache_cluster.py +11 -0
  5993. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/create_state_machine.py +21 -0
  5994. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/execution_fails_cluster_modifying.py +16 -0
  5995. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/execution_reads_from_cluster_succeeds.py +13 -0
  5996. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/start_execution.py +21 -0
  5997. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/__init__.py +0 -0
  5998. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/client.py +34 -0
  5999. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/conftest.py +9 -0
  6000. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/constants.py +19 -0
  6001. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/__init__.py +30 -0
  6002. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/did_in_domain_status.py +12 -0
  6003. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/did_not_in_domain_status.py +10 -0
  6004. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_already_exists.py +12 -0
  6005. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_config_update_begun_given.py +11 -0
  6006. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_config_update_completed_given.py +11 -0
  6007. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_does_not_exist.py +10 -0
  6008. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_exists.py +12 -0
  6009. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_available_given.py +10 -0
  6010. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_not_available_given.py +11 -0
  6011. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_not_processing_given.py +12 -0
  6012. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_processing_given.py +11 -0
  6013. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_not_already_exist.py +10 -0
  6014. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/eid_in_exec_status.py +33 -0
  6015. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/elasticsearch_domain_has_been_created.py +12 -0
  6016. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_is_running_given.py +13 -0
  6017. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_of_sm_has_been_started.py +11 -0
  6018. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_slot_available.py +11 -0
  6019. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/no_execution_is_running.py +10 -0
  6020. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/no_execution_slot_available.py +10 -0
  6021. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/running_execution_called_domain_succeeded_given.py +15 -0
  6022. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/running_execution_failed_domain_processing_given.py +13 -0
  6023. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sfn_sm_has_been_created.py +12 -0
  6024. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_already_exists.py +12 -0
  6025. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_does_not_exist.py +10 -0
  6026. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_exists.py +12 -0
  6027. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_is_active_given.py +10 -0
  6028. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_is_not_active_given.py +22 -0
  6029. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_not_already_exist.py +10 -0
  6030. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/smid_in_sm_status.py +12 -0
  6031. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/smid_not_in_sm_status.py +10 -0
  6032. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/test_scenarios.py +27 -0
  6033. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/__init__.py +9 -0
  6034. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/_inv_stepfunctions_elasticsearch_every_running_execution_references_an_active_st.py +12 -0
  6035. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/_inv_stepfunctions_elasticsearch_every_succeeded_execution_recorded_which_domain.py +12 -0
  6036. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_available_again_then.py +17 -0
  6037. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_available_then.py +17 -0
  6038. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_processing_then.py +11 -0
  6039. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_failed_connection_error.py +11 -0
  6040. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_is_running_then.py +11 -0
  6041. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_is_succeeded_then.py +11 -0
  6042. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/sm_is_active_then.py +17 -0
  6043. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/__init__.py +7 -0
  6044. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/create_elasticsearch_domain.py +19 -0
  6045. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/create_state_machine.py +21 -0
  6046. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/domain_configuration_update_begins.py +11 -0
  6047. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/domain_configuration_update_completes.py +13 -0
  6048. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/execution_calls_available_domain_succeeds.py +13 -0
  6049. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/execution_fails_domain_processing.py +16 -0
  6050. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/start_execution.py +21 -0
  6051. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/__init__.py +0 -0
  6052. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/client.py +27 -0
  6053. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/conftest.py +9 -0
  6054. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/constants.py +19 -0
  6055. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/__init__.py +36 -0
  6056. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_already_exists.py +12 -0
  6057. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_does_not_exist.py +10 -0
  6058. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_exists.py +12 -0
  6059. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_exists_and_is_active.py +12 -0
  6060. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_active_given.py +10 -0
  6061. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_already_deleted.py +20 -0
  6062. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_deleted_given.py +10 -0
  6063. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_not_deleted_given.py +12 -0
  6064. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_not_already_exist.py +10 -0
  6065. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_not_exist_or_not_active.py +10 -0
  6066. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/busid_in_bus_status.py +12 -0
  6067. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/busid_not_in_bus_status.py +10 -0
  6068. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eid_in_exec_status.py +33 -0
  6069. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/event_slot_available.py +10 -0
  6070. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eventbridge_bus_has_been_created.py +12 -0
  6071. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eventbridge_bus_has_been_deleted.py +11 -0
  6072. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_is_running_given.py +13 -0
  6073. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_slot_available.py +11 -0
  6074. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_started_event_delivered_given.py +16 -0
  6075. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_started_event_failed_given.py +16 -0
  6076. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_event_slot_available.py +10 -0
  6077. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_execution_is_running.py +10 -0
  6078. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_execution_slot_available.py +10 -0
  6079. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/running_execution_succeeded_event_delivered_given.py +16 -0
  6080. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/running_execution_succeeded_event_failed_given.py +16 -0
  6081. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sfn_sm_has_been_created.py +12 -0
  6082. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_already_exists.py +12 -0
  6083. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_already_has_eventbridge_bus.py +11 -0
  6084. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_configured_to_publish_events_given.py +13 -0
  6085. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_exists_and_is_active.py +12 -0
  6086. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_has_eventbridge_bus.py +11 -0
  6087. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_has_no_eventbridge_bus.py +11 -0
  6088. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_not_already_exist.py +10 -0
  6089. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_not_exist_or_not_active.py +10 -0
  6090. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/smid_in_sm_status.py +12 -0
  6091. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/smid_not_in_sm_status.py +10 -0
  6092. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/test_scenarios.py +27 -0
  6093. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/__init__.py +10 -0
  6094. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/_inv_stepfunctions_events_every_delivered_event_references_an_execution_that_exi.py +12 -0
  6095. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/_inv_stepfunctions_events_every_running_execution_references_an_active_state_mac.py +12 -0
  6096. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/bus_is_active_then.py +16 -0
  6097. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/bus_is_deleted_then.py +10 -0
  6098. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_running_and_started_event_delivered.py +13 -0
  6099. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_running_but_no_started_event.py +11 -0
  6100. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_succeeded_and_event_delivered.py +13 -0
  6101. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_succeeded_but_no_event.py +13 -0
  6102. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/sm_active_no_eventbridge_bus.py +17 -0
  6103. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/sm_will_send_events.py +13 -0
  6104. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/__init__.py +8 -0
  6105. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/configure_event_publishing.py +13 -0
  6106. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/create_event_bus.py +18 -0
  6107. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/create_state_machine.py +21 -0
  6108. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/delete_event_bus.py +18 -0
  6109. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/execution_succeeds_event_delivered.py +13 -0
  6110. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/execution_succeeds_event_fails.py +16 -0
  6111. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/start_execution_event_delivered.py +13 -0
  6112. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/start_execution_event_fails.py +23 -0
  6113. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/__init__.py +0 -0
  6114. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/client.py +41 -0
  6115. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/conftest.py +9 -0
  6116. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/constants.py +19 -0
  6117. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/__init__.py +31 -0
  6118. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/eid_in_exec_status.py +33 -0
  6119. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_is_running_given.py +13 -0
  6120. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_of_sm_has_been_started.py +11 -0
  6121. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_slot_available.py +11 -0
  6122. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/glacier_vault_has_been_created.py +12 -0
  6123. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/glacier_vault_has_been_deleted.py +11 -0
  6124. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/no_execution_is_running.py +10 -0
  6125. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/no_execution_slot_available.py +10 -0
  6126. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/running_execution_called_vault_succeeded_given.py +13 -0
  6127. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/running_execution_failed_vault_deleted_given.py +11 -0
  6128. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sfn_sm_has_been_created.py +12 -0
  6129. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_already_exists.py +12 -0
  6130. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_does_not_exist.py +10 -0
  6131. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_exists.py +12 -0
  6132. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_is_active_given.py +10 -0
  6133. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_is_not_active_given.py +22 -0
  6134. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_not_already_exist.py +10 -0
  6135. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/smid_in_sm_status.py +12 -0
  6136. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/smid_not_in_sm_status.py +10 -0
  6137. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_already_exists.py +12 -0
  6138. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_does_not_exist.py +10 -0
  6139. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_does_not_exist_or_deleted_given.py +10 -0
  6140. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists.py +12 -0
  6141. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists_given.py +10 -0
  6142. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists_not_deleted_given.py +10 -0
  6143. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_already_deleted_given.py +25 -0
  6144. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_deleted_given.py +25 -0
  6145. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_not_deleted_given.py +12 -0
  6146. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_not_already_exist.py +10 -0
  6147. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vid_in_vault_status.py +12 -0
  6148. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vid_not_in_vault_status.py +10 -0
  6149. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/test_scenarios.py +27 -0
  6150. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/__init__.py +8 -0
  6151. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/_inv_stepfunctions_glacier_every_running_execution_references_an_active_state_ma.py +12 -0
  6152. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/_inv_stepfunctions_glacier_every_succeeded_execution_recorded_which_vault_it_cal.py +10 -0
  6153. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_failed_resource_not_found.py +11 -0
  6154. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_is_running_then.py +11 -0
  6155. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_is_succeeded_then.py +11 -0
  6156. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/sm_is_active_then.py +17 -0
  6157. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/vault_exists_then.py +17 -0
  6158. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/vault_is_deleted_then.py +17 -0
  6159. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/__init__.py +6 -0
  6160. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/create_glacier_vault.py +19 -0
  6161. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/create_state_machine.py +21 -0
  6162. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/delete_glacier_vault.py +19 -0
  6163. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/execution_calls_vault_succeeds.py +13 -0
  6164. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/execution_fails_vault_deleted.py +13 -0
  6165. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/start_execution.py +21 -0
  6166. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/__init__.py +0 -0
  6167. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/client.py +38 -0
  6168. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/conftest.py +9 -0
  6169. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/constants.py +35 -0
  6170. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/__init__.py +39 -0
  6171. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/configured_function_is_active_given.py +10 -0
  6172. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/configured_function_is_not_active_given.py +20 -0
  6173. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/eid_in_exec_status.py +33 -0
  6174. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_is_running_given.py +13 -0
  6175. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_of_sm_has_been_started.py +11 -0
  6176. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_slot_available.py +11 -0
  6177. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/fid_not_in_func_status.py +10 -0
  6178. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_already_exists.py +12 -0
  6179. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_does_not_exist.py +10 -0
  6180. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_exists.py +12 -0
  6181. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_is_active_given.py +10 -0
  6182. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_is_not_active_given.py +20 -0
  6183. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_not_already_exist.py +10 -0
  6184. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/iid_in_inv_status.py +22 -0
  6185. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/invocation_is_in_progress_given.py +11 -0
  6186. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/invocation_slot_available.py +11 -0
  6187. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_function_has_been_deployed.py +12 -0
  6188. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_completed_successfully_given.py +11 -0
  6189. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_failed_given.py +11 -0
  6190. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_has_been_configured_given.py +11 -0
  6191. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_execution_is_running.py +10 -0
  6192. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_execution_slot_available.py +10 -0
  6193. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_invocation_is_in_progress.py +10 -0
  6194. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_invocation_slot_available.py +10 -0
  6195. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/running_execution_invoked_lambda_given.py +13 -0
  6196. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sfn_sm_has_been_created.py +12 -0
  6197. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_already_exists.py +12 -0
  6198. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_already_has_lambda_task_given.py +16 -0
  6199. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_does_not_exist.py +10 -0
  6200. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_exists.py +12 -0
  6201. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_configured_lambda_task_given.py +10 -0
  6202. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_lambda_task_given.py +25 -0
  6203. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_no_configured_lambda_task_given.py +10 -0
  6204. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_no_lambda_task_given.py +13 -0
  6205. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_is_active_given.py +10 -0
  6206. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_is_not_active_given.py +22 -0
  6207. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_not_already_exist.py +10 -0
  6208. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/smid_in_sm_status.py +12 -0
  6209. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/smid_not_in_sm_status.py +10 -0
  6210. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/test_scenarios.py +27 -0
  6211. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/__init__.py +13 -0
  6212. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/_inv_stepfunctions_lambda_every_in_progress_invocation_has_a_corresponding_runni.py +12 -0
  6213. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/_inv_stepfunctions_lambda_every_in_progress_invocation_references_an_active_lamb.py +12 -0
  6214. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/_inv_stepfunctions_lambda_every_running_execution_references_an_active_state_mac.py +12 -0
  6215. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_failed_connection_error.py +11 -0
  6216. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_is_running_then.py +11 -0
  6217. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_is_succeeded_then.py +11 -0
  6218. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/function_is_active_then.py +17 -0
  6219. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_failed_execution_failed.py +11 -0
  6220. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_is_in_progress_then.py +11 -0
  6221. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_success_execution_succeeded.py +11 -0
  6222. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_is_active_no_lambda_task_then.py +17 -0
  6223. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_is_active_then.py +17 -0
  6224. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_will_invoke_function_then.py +13 -0
  6225. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/__init__.py +7 -0
  6226. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/configure_lambda_task.py +11 -0
  6227. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/create_state_machine.py +21 -0
  6228. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/deploy_lambda_function.py +25 -0
  6229. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/execution_invokes_lambda.py +13 -0
  6230. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/lambda_task_fails.py +11 -0
  6231. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/lambda_task_succeeds.py +11 -0
  6232. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/start_execution.py +21 -0
  6233. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/__init__.py +0 -0
  6234. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/client.py +39 -0
  6235. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/conftest.py +9 -0
  6236. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/constants.py +19 -0
  6237. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/__init__.py +30 -0
  6238. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cid_in_cluster_status.py +11 -0
  6239. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cid_not_in_cluster_status.py +10 -0
  6240. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_already_exists.py +12 -0
  6241. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_does_not_exist.py +10 -0
  6242. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_exists.py +12 -0
  6243. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_available_given.py +10 -0
  6244. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_not_available_given.py +11 -0
  6245. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_not_updating_given.py +12 -0
  6246. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_updating_given.py +11 -0
  6247. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_not_already_exist.py +10 -0
  6248. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/eid_in_exec_status.py +33 -0
  6249. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_is_running_given.py +13 -0
  6250. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_of_sm_has_been_started.py +11 -0
  6251. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_slot_available.py +11 -0
  6252. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_has_been_created.py +11 -0
  6253. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_update_begun_given.py +11 -0
  6254. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_update_completed_given.py +11 -0
  6255. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/no_execution_is_running.py +10 -0
  6256. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/no_execution_slot_available.py +10 -0
  6257. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/running_execution_connected_cluster_succeeded_given.py +16 -0
  6258. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/running_execution_failed_cluster_updating_given.py +13 -0
  6259. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sfn_sm_has_been_created.py +12 -0
  6260. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_already_exists.py +12 -0
  6261. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_does_not_exist.py +10 -0
  6262. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_exists.py +12 -0
  6263. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_is_active_given.py +10 -0
  6264. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_is_not_active_given.py +22 -0
  6265. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_not_already_exist.py +10 -0
  6266. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/smid_in_sm_status.py +12 -0
  6267. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/smid_not_in_sm_status.py +10 -0
  6268. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/test_scenarios.py +27 -0
  6269. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/__init__.py +9 -0
  6270. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/_inv_stepfunctions_memorydb_every_running_execution_references_an_active_state_m.py +12 -0
  6271. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/_inv_stepfunctions_memorydb_every_succeeded_execution_recorded_which_cluster_it_.py +15 -0
  6272. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_available_again_then.py +11 -0
  6273. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_available_then.py +11 -0
  6274. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_updating_then.py +11 -0
  6275. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_failed_connection_error.py +11 -0
  6276. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_is_running_then.py +11 -0
  6277. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_is_succeeded_then.py +11 -0
  6278. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/sm_is_active_then.py +17 -0
  6279. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/__init__.py +7 -0
  6280. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/create_memorydb_cluster.py +11 -0
  6281. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/create_state_machine.py +21 -0
  6282. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/execution_connects_to_cluster_succeeds.py +13 -0
  6283. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/execution_fails_cluster_updating.py +15 -0
  6284. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/memorydb_cluster_update_begins.py +11 -0
  6285. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/memorydb_cluster_update_completes.py +11 -0
  6286. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/start_execution.py +21 -0
  6287. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/__init__.py +0 -0
  6288. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/client.py +37 -0
  6289. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/conftest.py +9 -0
  6290. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/constants.py +19 -0
  6291. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/__init__.py +30 -0
  6292. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cid_in_cluster_status.py +11 -0
  6293. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cid_not_in_cluster_status.py +10 -0
  6294. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_already_exists.py +12 -0
  6295. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_does_not_exist.py +10 -0
  6296. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_exists.py +12 -0
  6297. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_available_given.py +10 -0
  6298. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_not_available_given.py +11 -0
  6299. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_not_stopped_given.py +12 -0
  6300. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_stopped_given.py +12 -0
  6301. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_not_already_exist.py +10 -0
  6302. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/eid_in_exec_status.py +33 -0
  6303. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_is_running_given.py +13 -0
  6304. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_of_sm_has_been_started.py +11 -0
  6305. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_slot_available.py +11 -0
  6306. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_created.py +11 -0
  6307. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_started.py +11 -0
  6308. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_stopped.py +11 -0
  6309. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/no_execution_is_running.py +10 -0
  6310. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/no_execution_slot_available.py +10 -0
  6311. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/running_execution_failed_cluster_stopped_given.py +13 -0
  6312. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/running_execution_queried_cluster_succeeded_given.py +13 -0
  6313. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sfn_sm_has_been_created.py +12 -0
  6314. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_already_exists.py +12 -0
  6315. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_does_not_exist.py +10 -0
  6316. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_exists.py +12 -0
  6317. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_is_active_given.py +10 -0
  6318. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_is_not_active_given.py +22 -0
  6319. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_not_already_exist.py +10 -0
  6320. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/smid_in_sm_status.py +12 -0
  6321. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/smid_not_in_sm_status.py +10 -0
  6322. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/test_scenarios.py +27 -0
  6323. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/__init__.py +9 -0
  6324. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/_inv_stepfunctions_neptune_every_running_execution_references_an_active_state_ma.py +12 -0
  6325. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/_inv_stepfunctions_neptune_every_succeeded_execution_recorded_which_cluster_it_q.py +12 -0
  6326. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_available_and_ready_then.py +11 -0
  6327. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_available_then.py +11 -0
  6328. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_stopped_then.py +11 -0
  6329. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_failed_connection_error.py +11 -0
  6330. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_is_running_then.py +11 -0
  6331. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_is_succeeded_then.py +11 -0
  6332. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/sm_is_active_then.py +17 -0
  6333. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/__init__.py +7 -0
  6334. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/create_neptune_cluster.py +11 -0
  6335. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/create_state_machine.py +21 -0
  6336. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/execution_fails_cluster_stopped.py +15 -0
  6337. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/execution_queries_cluster_succeeds.py +13 -0
  6338. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/start_execution.py +21 -0
  6339. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/start_neptune_cluster.py +11 -0
  6340. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/stop_neptune_cluster.py +11 -0
  6341. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/__init__.py +0 -0
  6342. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/client.py +34 -0
  6343. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/conftest.py +9 -0
  6344. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/constants.py +19 -0
  6345. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/__init__.py +30 -0
  6346. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/did_in_domain_status.py +12 -0
  6347. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/did_not_in_domain_status.py +10 -0
  6348. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_already_exists.py +12 -0
  6349. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_config_update_begun_given.py +11 -0
  6350. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_config_update_completed_given.py +11 -0
  6351. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_does_not_exist.py +10 -0
  6352. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_exists.py +12 -0
  6353. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_active_given.py +10 -0
  6354. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_not_active_given.py +22 -0
  6355. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_not_processing_given.py +12 -0
  6356. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_processing_given.py +11 -0
  6357. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_not_already_exist.py +10 -0
  6358. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/eid_in_exec_status.py +33 -0
  6359. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_is_running_given.py +13 -0
  6360. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_of_sm_has_been_started.py +11 -0
  6361. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_slot_available.py +11 -0
  6362. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/no_execution_is_running.py +10 -0
  6363. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/no_execution_slot_available.py +10 -0
  6364. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/opensearch_domain_has_been_created.py +12 -0
  6365. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/running_execution_called_domain_succeeded_given.py +13 -0
  6366. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/running_execution_failed_domain_processing_given.py +13 -0
  6367. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sfn_sm_has_been_created.py +12 -0
  6368. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_already_exists.py +12 -0
  6369. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_does_not_exist.py +10 -0
  6370. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_exists.py +12 -0
  6371. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_is_active_given.py +10 -0
  6372. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_is_not_active_given.py +22 -0
  6373. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_not_already_exist.py +10 -0
  6374. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/smid_in_sm_status.py +12 -0
  6375. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/smid_not_in_sm_status.py +10 -0
  6376. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/test_scenarios.py +27 -0
  6377. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/__init__.py +9 -0
  6378. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/_inv_stepfunctions_opensearch_every_running_execution_references_an_active_state.py +12 -0
  6379. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/_inv_stepfunctions_opensearch_every_succeeded_execution_recorded_which_domain_it.py +15 -0
  6380. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_active_again_then.py +17 -0
  6381. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_active_then.py +17 -0
  6382. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_processing_then.py +11 -0
  6383. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_failed_connection_error.py +11 -0
  6384. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_is_running_then.py +11 -0
  6385. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_is_succeeded_then.py +11 -0
  6386. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/sm_is_active_then.py +17 -0
  6387. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/__init__.py +7 -0
  6388. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/create_opensearch_domain.py +19 -0
  6389. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/create_state_machine.py +21 -0
  6390. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/domain_configuration_update_begins.py +11 -0
  6391. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/domain_configuration_update_completes.py +11 -0
  6392. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/execution_calls_active_domain_succeeds.py +13 -0
  6393. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/execution_fails_domain_processing.py +16 -0
  6394. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/start_execution.py +21 -0
  6395. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/__init__.py +0 -0
  6396. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/client.py +42 -0
  6397. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/conftest.py +9 -0
  6398. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/constants.py +19 -0
  6399. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/__init__.py +30 -0
  6400. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_already_exists.py +12 -0
  6401. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_does_not_exist.py +10 -0
  6402. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_exists.py +12 -0
  6403. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_failover_completed_given.py +11 -0
  6404. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_available_given.py +10 -0
  6405. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_failing_over_given.py +11 -0
  6406. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_not_available_given.py +11 -0
  6407. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_not_failing_over_given.py +12 -0
  6408. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_not_already_exist.py +10 -0
  6409. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/dbid_in_db_status.py +11 -0
  6410. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/dbid_not_in_db_status.py +10 -0
  6411. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/eid_in_exec_status.py +33 -0
  6412. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_is_running_given.py +13 -0
  6413. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_of_sm_has_been_started.py +11 -0
  6414. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_slot_available.py +11 -0
  6415. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/multi_az_failover_begun_given.py +11 -0
  6416. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/no_execution_is_running.py +10 -0
  6417. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/no_execution_slot_available.py +10 -0
  6418. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/rds_db_instance_has_been_created.py +11 -0
  6419. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/running_execution_failed_db_failing_over_given.py +11 -0
  6420. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/running_execution_queried_db_succeeded_given.py +13 -0
  6421. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sfn_sm_has_been_created.py +12 -0
  6422. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_already_exists.py +12 -0
  6423. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_does_not_exist.py +10 -0
  6424. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_exists.py +12 -0
  6425. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_is_active_given.py +10 -0
  6426. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_is_not_active_given.py +20 -0
  6427. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_not_already_exist.py +10 -0
  6428. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/smid_in_sm_status.py +12 -0
  6429. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/smid_not_in_sm_status.py +10 -0
  6430. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/test_scenarios.py +27 -0
  6431. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/__init__.py +9 -0
  6432. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/_inv_stepfunctions_rds_every_running_execution_references_an_active_state_machin.py +12 -0
  6433. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/_inv_stepfunctions_rds_every_succeeded_execution_recorded_which_db_instance_it_q.py +12 -0
  6434. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_available_again_then.py +11 -0
  6435. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_available_then.py +11 -0
  6436. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_failing_over_then.py +11 -0
  6437. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_failed_connection_error.py +11 -0
  6438. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_is_running_then.py +11 -0
  6439. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_is_succeeded_then.py +11 -0
  6440. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/sm_is_active_then.py +17 -0
  6441. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/__init__.py +7 -0
  6442. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/create_rds_db_instance.py +11 -0
  6443. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/create_state_machine.py +21 -0
  6444. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/db_instance_failover_completes.py +11 -0
  6445. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/execution_fails_db_failing_over.py +11 -0
  6446. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/execution_queries_db_succeeds.py +13 -0
  6447. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/multi_az_failover_begins.py +11 -0
  6448. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/start_execution.py +21 -0
  6449. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/__init__.py +0 -0
  6450. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/client.py +34 -0
  6451. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/conftest.py +9 -0
  6452. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/constants.py +64 -0
  6453. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/__init__.py +36 -0
  6454. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bid_not_in_bucket_status.py +10 -0
  6455. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_already_exists.py +12 -0
  6456. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_does_not_exist.py +10 -0
  6457. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_exists.py +12 -0
  6458. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_is_active_given.py +10 -0
  6459. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_is_not_active_given.py +21 -0
  6460. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_not_already_exist.py +10 -0
  6461. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/eid_in_exec_status.py +33 -0
  6462. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_is_running_given.py +13 -0
  6463. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_of_sm_has_been_started.py +11 -0
  6464. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_slot_available.py +11 -0
  6465. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_execution_is_running.py +10 -0
  6466. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_execution_slot_available.py +10 -0
  6467. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_object_exists_in_target_bucket.py +11 -0
  6468. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_object_slot_available.py +10 -0
  6469. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/object_exists_in_target_bucket.py +17 -0
  6470. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/object_slot_available.py +10 -0
  6471. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_read_object_failed_given.py +13 -0
  6472. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_read_object_succeeded_given.py +13 -0
  6473. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_wrote_object_succeeded_given.py +11 -0
  6474. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/s3_bucket_has_been_created.py +12 -0
  6475. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/s3_task_configured_given.py +11 -0
  6476. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sfn_sm_has_been_created.py +12 -0
  6477. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_already_exists.py +12 -0
  6478. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_already_has_s3_task.py +14 -0
  6479. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_does_not_exist.py +10 -0
  6480. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_exists.py +12 -0
  6481. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_has_no_s3_task.py +17 -0
  6482. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_has_s3_task.py +36 -0
  6483. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_is_active_given.py +10 -0
  6484. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_is_not_active_given.py +22 -0
  6485. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_not_already_exist.py +10 -0
  6486. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/smid_in_sm_status.py +12 -0
  6487. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/smid_not_in_sm_status.py +10 -0
  6488. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/target_bucket_is_active.py +10 -0
  6489. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/target_bucket_is_not_active.py +20 -0
  6490. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/test_scenarios.py +27 -0
  6491. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/__init__.py +10 -0
  6492. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/_inv_stepfunctions_s3api_every_existing_object_belongs_to_an_active_bucket.py +10 -0
  6493. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/_inv_stepfunctions_s3api_every_running_execution_references_an_active_state_mach.py +12 -0
  6494. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/bucket_is_active_then.py +16 -0
  6495. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_failed_no_such_key.py +18 -0
  6496. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_is_running_then.py +11 -0
  6497. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_is_succeeded_then.py +17 -0
  6498. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/object_exists_and_execution_succeeded.py +24 -0
  6499. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_is_active_then.py +16 -0
  6500. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_is_active_with_no_s3_task.py +17 -0
  6501. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_will_read_write_objects.py +20 -0
  6502. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/__init__.py +7 -0
  6503. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/configure_s3_task.py +30 -0
  6504. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/create_s3_bucket.py +18 -0
  6505. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/create_state_machine.py +21 -0
  6506. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_reads_object.py +53 -0
  6507. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_reads_object_not_found.py +40 -0
  6508. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_writes_object.py +41 -0
  6509. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/start_execution.py +26 -0
  6510. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/__init__.py +0 -0
  6511. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/client.py +41 -0
  6512. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/conftest.py +9 -0
  6513. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/constants.py +19 -0
  6514. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/__init__.py +30 -0
  6515. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/eid_in_exec_status.py +33 -0
  6516. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_is_running_given.py +13 -0
  6517. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_of_sm_has_been_started.py +11 -0
  6518. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_slot_available.py +11 -0
  6519. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/no_execution_is_running.py +10 -0
  6520. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/no_execution_slot_available.py +10 -0
  6521. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/running_execution_called_table_succeeded_given.py +13 -0
  6522. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/running_execution_failed_table_deleting_given.py +11 -0
  6523. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/s3tables_table_has_been_created.py +12 -0
  6524. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sfn_sm_has_been_created.py +12 -0
  6525. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_already_exists.py +12 -0
  6526. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_does_not_exist.py +10 -0
  6527. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_exists.py +12 -0
  6528. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_is_active_given.py +10 -0
  6529. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_is_not_active_given.py +22 -0
  6530. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_not_already_exist.py +10 -0
  6531. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/smid_in_sm_status.py +12 -0
  6532. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/smid_not_in_sm_status.py +10 -0
  6533. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_already_exists.py +12 -0
  6534. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_deletion_initiated_given.py +19 -0
  6535. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_does_not_exist.py +10 -0
  6536. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_does_not_exist_or_deleting_given.py +10 -0
  6537. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_exists.py +12 -0
  6538. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_active_given.py +10 -0
  6539. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_already_deleting_given.py +22 -0
  6540. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_deleting_given.py +22 -0
  6541. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_not_deleting_given.py +12 -0
  6542. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_not_already_exist.py +10 -0
  6543. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/tid_in_table_status.py +12 -0
  6544. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/tid_not_in_table_status.py +10 -0
  6545. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/test_scenarios.py +27 -0
  6546. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/__init__.py +8 -0
  6547. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/_inv_stepfunctions_s3tables_every_running_execution_references_an_active_state_m.py +12 -0
  6548. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/_inv_stepfunctions_s3tables_every_succeeded_execution_recorded_which_table_it_ca.py +10 -0
  6549. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_failed_resource_not_found.py +11 -0
  6550. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_is_running_then.py +11 -0
  6551. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_is_succeeded_then.py +11 -0
  6552. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/sm_is_active_then.py +17 -0
  6553. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/table_is_active_then.py +17 -0
  6554. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/table_is_deleting_then.py +14 -0
  6555. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/__init__.py +6 -0
  6556. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/create_s3tables_table.py +19 -0
  6557. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/create_state_machine.py +21 -0
  6558. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/execution_calls_active_table_succeeds.py +13 -0
  6559. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/execution_fails_table_deleting.py +13 -0
  6560. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/initiate_table_deletion.py +22 -0
  6561. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/start_execution.py +21 -0
  6562. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/__init__.py +0 -0
  6563. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/client.py +35 -0
  6564. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/conftest.py +9 -0
  6565. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/constants.py +40 -0
  6566. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/__init__.py +31 -0
  6567. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/eid_in_exec_status.py +33 -0
  6568. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_is_running_given.py +15 -0
  6569. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_of_sm_has_been_started.py +11 -0
  6570. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_slot_available.py +11 -0
  6571. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/no_execution_is_running.py +10 -0
  6572. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/no_execution_slot_available.py +10 -0
  6573. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/running_execution_failed_secret_pending_given.py +13 -0
  6574. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/running_execution_read_secret_succeeded_given.py +11 -0
  6575. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_already_exists.py +12 -0
  6576. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_does_not_exist.py +10 -0
  6577. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_exists.py +12 -0
  6578. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_exists_and_is_active.py +12 -0
  6579. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_has_been_created.py +12 -0
  6580. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_active_given.py +10 -0
  6581. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_not_active_given.py +22 -0
  6582. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_not_pending_deletion.py +13 -0
  6583. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_pending_deletion.py +16 -0
  6584. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_not_already_exist.py +10 -0
  6585. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_not_exist_or_not_active.py +10 -0
  6586. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_scheduled_for_deletion_given.py +11 -0
  6587. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sfn_sm_has_been_created.py +12 -0
  6588. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sid_in_secret_status.py +12 -0
  6589. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sid_not_in_secret_status.py +10 -0
  6590. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_already_exists.py +12 -0
  6591. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_does_not_exist.py +10 -0
  6592. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_exists.py +12 -0
  6593. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_is_active_given.py +10 -0
  6594. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_is_not_active_given.py +22 -0
  6595. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_not_already_exist.py +10 -0
  6596. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/smid_in_sm_status.py +12 -0
  6597. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/smid_not_in_sm_status.py +10 -0
  6598. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/test_scenarios.py +27 -0
  6599. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/__init__.py +8 -0
  6600. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/_inv_stepfunctions_secretsmanager_every_running_execution_references_an_active_s.py +12 -0
  6601. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/_inv_stepfunctions_secretsmanager_every_succeeded_execution_recorded_which_secre.py +12 -0
  6602. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_failed_resource_not_found.py +17 -0
  6603. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_is_running_then.py +11 -0
  6604. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_is_succeeded_then.py +17 -0
  6605. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/secret_is_active_then.py +16 -0
  6606. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/secret_is_pending_deletion_then.py +18 -0
  6607. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/sm_is_active_then.py +17 -0
  6608. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/__init__.py +6 -0
  6609. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/create_secret.py +21 -0
  6610. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/create_state_machine.py +21 -0
  6611. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/execution_reads_secret_fails.py +42 -0
  6612. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/execution_reads_secret_succeeds.py +40 -0
  6613. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/schedule_secret_deletion.py +21 -0
  6614. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/start_execution.py +21 -0
  6615. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/__init__.py +0 -0
  6616. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/client.py +34 -0
  6617. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/conftest.py +9 -0
  6618. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/constants.py +44 -0
  6619. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/__init__.py +30 -0
  6620. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/eid_in_exec_status.py +33 -0
  6621. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_is_running_given.py +13 -0
  6622. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_of_sm_has_been_started.py +11 -0
  6623. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_slot_available.py +11 -0
  6624. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/no_execution_is_running.py +10 -0
  6625. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/no_execution_slot_available.py +10 -0
  6626. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/running_execution_published_to_topic_given.py +13 -0
  6627. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sfn_sm_has_been_created.py +12 -0
  6628. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_already_exists.py +12 -0
  6629. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_already_has_sns_task.py +14 -0
  6630. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_does_not_exist.py +10 -0
  6631. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_exists.py +12 -0
  6632. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_has_no_sns_task.py +17 -0
  6633. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_has_sns_task.py +25 -0
  6634. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_is_active_given.py +10 -0
  6635. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_is_not_active_given.py +20 -0
  6636. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_not_already_exist.py +10 -0
  6637. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/smid_in_sm_status.py +12 -0
  6638. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/smid_not_in_sm_status.py +10 -0
  6639. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sns_publish_task_configured_given.py +11 -0
  6640. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sns_topic_has_been_created.py +12 -0
  6641. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/target_topic_is_active.py +10 -0
  6642. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/target_topic_is_not_active.py +20 -0
  6643. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/tid_not_in_topic_status.py +10 -0
  6644. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_already_exists.py +12 -0
  6645. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_does_not_exist.py +10 -0
  6646. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_exists.py +12 -0
  6647. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_is_active_given.py +10 -0
  6648. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_is_not_active_given.py +21 -0
  6649. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_not_already_exist.py +10 -0
  6650. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/test_scenarios.py +27 -0
  6651. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/__init__.py +8 -0
  6652. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/_inv_stepfunctions_sns_every_running_execution_references_an_active_state_machin.py +12 -0
  6653. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/_inv_stepfunctions_sns_every_running_execution_s_state_machine_targets_an_active.py +13 -0
  6654. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/execution_is_running_then.py +11 -0
  6655. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/execution_succeeded_and_message_published.py +19 -0
  6656. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_is_active_then.py +17 -0
  6657. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_is_active_with_no_sns_task.py +17 -0
  6658. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_will_publish_to_topic.py +18 -0
  6659. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/topic_is_active_then.py +17 -0
  6660. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/__init__.py +5 -0
  6661. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/configure_sns_task.py +23 -0
  6662. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/create_sns_topic.py +18 -0
  6663. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/create_state_machine.py +21 -0
  6664. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/execution_publishes_to_topic.py +35 -0
  6665. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/start_execution.py +26 -0
  6666. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/__init__.py +0 -0
  6667. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/client.py +37 -0
  6668. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/conftest.py +9 -0
  6669. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/constants.py +41 -0
  6670. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/__init__.py +34 -0
  6671. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/eid_in_exec_status.py +33 -0
  6672. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_is_running_given.py +13 -0
  6673. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_of_sm_has_been_started.py +11 -0
  6674. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_slot_available.py +11 -0
  6675. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_sm_has_no_sqs_task.py +15 -0
  6676. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_sm_has_sqs_task.py +24 -0
  6677. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/message_slot_available.py +10 -0
  6678. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_execution_is_running.py +10 -0
  6679. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_execution_slot_available.py +10 -0
  6680. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_message_slot_available.py +14 -0
  6681. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/qid_not_in_queue_status.py +10 -0
  6682. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_already_exists.py +12 -0
  6683. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_does_not_exist.py +11 -0
  6684. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_exists.py +12 -0
  6685. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_is_active_given.py +10 -0
  6686. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_is_not_active_given.py +21 -0
  6687. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_not_already_exist.py +10 -0
  6688. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/running_execution_sent_sqs_message_given.py +13 -0
  6689. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sfn_sm_has_been_created.py +12 -0
  6690. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_already_exists.py +12 -0
  6691. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_already_has_sqs_task.py +14 -0
  6692. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_does_not_exist.py +10 -0
  6693. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_exists.py +12 -0
  6694. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_has_no_sqs_task.py +17 -0
  6695. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_has_sqs_task.py +29 -0
  6696. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_is_active_given.py +10 -0
  6697. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_is_not_active_given.py +20 -0
  6698. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_not_already_exist.py +10 -0
  6699. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/smid_in_sm_status.py +12 -0
  6700. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/smid_not_in_sm_status.py +10 -0
  6701. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sqs_queue_has_been_created.py +12 -0
  6702. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sqs_send_message_task_configured_given.py +11 -0
  6703. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/target_queue_is_active.py +10 -0
  6704. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/target_queue_is_not_active.py +14 -0
  6705. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/test_scenarios.py +27 -0
  6706. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/__init__.py +8 -0
  6707. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/_inv_stepfunctions_sqs_every_available_message_belongs_to_an_active_queue.py +10 -0
  6708. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/_inv_stepfunctions_sqs_every_running_execution_references_an_active_state_machin.py +12 -0
  6709. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/execution_is_running_then.py +11 -0
  6710. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/message_available_and_execution_succeeded.py +32 -0
  6711. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/queue_is_active_then.py +17 -0
  6712. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_is_active_then.py +16 -0
  6713. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_is_active_with_no_sqs_task.py +17 -0
  6714. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_will_enqueue_message.py +18 -0
  6715. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/__init__.py +5 -0
  6716. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/configure_sqs_task.py +23 -0
  6717. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/create_sqs_queue.py +18 -0
  6718. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/create_state_machine.py +21 -0
  6719. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/execution_sends_message.py +24 -0
  6720. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/start_execution.py +26 -0
  6721. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/__init__.py +0 -0
  6722. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/client.py +44 -0
  6723. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/conftest.py +9 -0
  6724. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/constants.py +40 -0
  6725. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/__init__.py +30 -0
  6726. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/eid_in_exec_status.py +33 -0
  6727. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_is_running_given.py +15 -0
  6728. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_of_sm_has_been_started.py +18 -0
  6729. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_slot_available.py +11 -0
  6730. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/no_execution_is_running.py +10 -0
  6731. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/no_execution_slot_available.py +10 -0
  6732. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_already_exists.py +12 -0
  6733. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_does_not_exist.py +10 -0
  6734. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_exists.py +12 -0
  6735. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_exists_given.py +12 -0
  6736. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_already_deleted.py +20 -0
  6737. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_deleted_given.py +10 -0
  6738. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_not_deleted_given.py +12 -0
  6739. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_not_already_exist.py +10 -0
  6740. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_not_exist_or_deleted.py +10 -0
  6741. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/pid_in_param_status.py +12 -0
  6742. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/pid_not_in_param_status.py +10 -0
  6743. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/running_execution_failed_parameter_deleted_given.py +31 -0
  6744. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/running_execution_read_parameter_succeeded_given.py +33 -0
  6745. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sfn_sm_has_been_created.py +12 -0
  6746. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_already_exists.py +12 -0
  6747. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_does_not_exist.py +10 -0
  6748. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_exists.py +12 -0
  6749. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_is_active_given.py +10 -0
  6750. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_is_not_active_given.py +20 -0
  6751. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_not_already_exist.py +10 -0
  6752. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/smid_in_sm_status.py +12 -0
  6753. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/smid_not_in_sm_status.py +10 -0
  6754. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/ssm_parameter_has_been_created.py +12 -0
  6755. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/ssm_parameter_has_been_deleted.py +21 -0
  6756. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/test_scenarios.py +27 -0
  6757. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/__init__.py +8 -0
  6758. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/_inv_stepfunctions_ssm_every_running_execution_references_an_active_state_machin.py +12 -0
  6759. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/_inv_stepfunctions_ssm_every_succeeded_execution_recorded_which_parameter_it_rea.py +10 -0
  6760. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_failed_parameter_not_found.py +17 -0
  6761. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_is_running_then.py +11 -0
  6762. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_is_succeeded_then.py +17 -0
  6763. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/param_exists_then.py +16 -0
  6764. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/param_is_deleted_then.py +20 -0
  6765. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/sm_is_active_then.py +17 -0
  6766. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/__init__.py +6 -0
  6767. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/create_parameter.py +20 -0
  6768. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/create_state_machine.py +21 -0
  6769. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/delete_parameter.py +18 -0
  6770. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/execution_reads_parameter_fails.py +39 -0
  6771. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/execution_reads_parameter_succeeds.py +35 -0
  6772. local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/start_execution.py +21 -0
  6773. local_web_services_python_sdk-0.19.0/tests/e2e/sts/__init__.py +0 -0
  6774. local_web_services_python_sdk-0.19.0/tests/e2e/sts/client.py +31 -0
  6775. local_web_services_python_sdk-0.19.0/tests/e2e/sts/conftest.py +9 -0
  6776. local_web_services_python_sdk-0.19.0/tests/e2e/sts/constants.py +7 -0
  6777. local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/__init__.py +4 -0
  6778. local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/a_session_slot_was_available.py +10 -0
  6779. local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/no_session_slot_available.py +11 -0
  6780. local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/the_sts_session_did_not_exist.py +11 -0
  6781. local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/the_sts_session_existed.py +15 -0
  6782. local_web_services_python_sdk-0.19.0/tests/e2e/sts/test_scenarios.py +23 -0
  6783. local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/__init__.py +4 -0
  6784. local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/caller_identity_account_matches_the_session_account.py +11 -0
  6785. local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/every_session_token_maps_to_a_valid_account_id.py +20 -0
  6786. local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/sts_caller_identity_will_return_account_from_session.py +14 -0
  6787. local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/sts_session_will_be_created_with_account_id_embedded.py +15 -0
  6788. local_web_services_python_sdk-0.19.0/tests/e2e/sts/when/__init__.py +2 -0
  6789. local_web_services_python_sdk-0.19.0/tests/e2e/sts/when/an_sts_role_is_assumed_for_an_account.py +27 -0
  6790. local_web_services_python_sdk-0.19.0/tests/e2e/sts/when/the_sts_caller_identity_is_retrieved_with_a_session_token.py +25 -0
  6791. local_web_services_python_sdk-0.19.0/tests/e2e/then/__init__.py +10 -0
  6792. local_web_services_python_sdk-0.19.0/tests/e2e/then/deleted_table_invariant_holds.py +10 -0
  6793. local_web_services_python_sdk-0.19.0/tests/e2e/then/delivery_invariant_holds.py +10 -0
  6794. local_web_services_python_sdk-0.19.0/tests/e2e/then/global_invariant_holds.py +10 -0
  6795. local_web_services_python_sdk-0.19.0/tests/e2e/then/never_negative_invariant_holds.py +10 -0
  6796. local_web_services_python_sdk-0.19.0/tests/e2e/then/no_inflight_invariant_holds.py +10 -0
  6797. local_web_services_python_sdk-0.19.0/tests/e2e/then/operation_is_rejected.py +14 -0
  6798. local_web_services_python_sdk-0.19.0/tests/e2e/then/overwrite_invariant_holds.py +10 -0
  6799. local_web_services_python_sdk-0.19.0/tests/e2e/then/pending_transaction_invariant_holds.py +10 -0
  6800. local_web_services_python_sdk-0.19.0/tests/e2e/then/status_invariant_holds.py +10 -0
  6801. local_web_services_python_sdk-0.19.0/tests/e2e/then/tag_key_invariant_holds.py +10 -0
  6802. local_web_services_python_sdk-0.19.0/tests/e2e/when/__init__.py +0 -0
  6803. local_web_services_python_sdk-0.19.0/tests/unit/__init__.py +0 -0
  6804. local_web_services_python_sdk-0.19.0/tests/unit/test_bucket_has_eventbridge_notification_configures_s3.py +48 -0
  6805. local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_apply.py +53 -0
  6806. local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_exhaust.py +29 -0
  6807. local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_slots.py +29 -0
  6808. local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_unlimited.py +30 -0
  6809. local_web_services_python_sdk-0.19.0/tests/unit/test_fake_builder_delay_ms.py +82 -0
  6810. local_web_services_python_sdk-0.19.0/tests/unit/test_fake_builder_with_header.py +87 -0
  6811. local_web_services_python_sdk-0.19.0/tests/unit/test_log_capture.py +160 -0
  6812. local_web_services_python_sdk-0.19.0/tests/unit/test_session_clear_injected_state_success.py +23 -0
  6813. local_web_services_python_sdk-0.19.0/tests/unit/test_session_client_aws_fake.py +36 -0
  6814. local_web_services_python_sdk-0.19.0/tests/unit/test_session_client_fake.py +36 -0
  6815. local_web_services_python_sdk-0.19.0/tests/unit/test_session_get_chaos_status.py +53 -0
  6816. local_web_services_python_sdk-0.19.0/tests/unit/test_session_get_injected_state_success.py +61 -0
  6817. local_web_services_python_sdk-0.19.0/tests/unit/test_session_imports.py +54 -0
  6818. local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_404_skips.py +51 -0
  6819. local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_error_responses.py +36 -0
  6820. local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_success.py +41 -0
  6821. local_web_services_python_sdk-0.19.0/tests/unit/test_session_lifecycle.py +159 -0
  6822. local_web_services_python_sdk-0.19.0/tests/unit/test_session_port_for.py +55 -0
  6823. local_web_services_python_sdk-0.19.0/tests/unit/test_session_reset_chaos.py +50 -0
  6824. local_web_services_python_sdk-0.19.0/tests/unit/test_session_set_chaos.py +74 -0
  6825. local_web_services_python_sdk-0.19.0/tests/unit/test_target_bus_is_deleted_creates_and_deletes_bus.py +87 -0
  6826. local_web_services_python_sdk-0.2.0/Makefile +0 -36
  6827. local_web_services_python_sdk-0.2.0/PKG-INFO +0 -96
  6828. local_web_services_python_sdk-0.2.0/README.md +0 -69
  6829. local_web_services_python_sdk-0.2.0/pyproject.toml +0 -86
  6830. local_web_services_python_sdk-0.2.0/src/lws_testing/__init__.py +0 -26
  6831. local_web_services_python_sdk-0.2.0/src/lws_testing/_builders/fake.py +0 -107
  6832. local_web_services_python_sdk-0.2.0/src/lws_testing/_builders/iam.py +0 -125
  6833. local_web_services_python_sdk-0.2.0/src/lws_testing/_discovery/cdk.py +0 -115
  6834. local_web_services_python_sdk-0.2.0/src/lws_testing/_logs.py +0 -100
  6835. local_web_services_python_sdk-0.2.0/src/lws_testing/_transport/inprocess.py +0 -329
  6836. local_web_services_python_sdk-0.2.0/src/lws_testing/session.py +0 -392
  6837. local_web_services_python_sdk-0.2.0/tests/unit/test_session_imports.py +0 -50
  6838. local_web_services_python_sdk-0.2.0/tests/unit/test_session_lifecycle.py +0 -149
  6839. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.github/workflows/ci.yml +0 -0
  6840. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.github/workflows/publish.yml +0 -0
  6841. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.gitignore +0 -0
  6842. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/BUILD +0 -0
  6843. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/requirements.txt +0 -0
  6844. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_builders/__init__.py +0 -0
  6845. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_builders/chaos.py +0 -0
  6846. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_discovery/__init__.py +0 -0
  6847. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_discovery/hcl.py +0 -0
  6848. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/__init__.py +0 -0
  6849. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/dynamodb.py +0 -0
  6850. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/s3.py +0 -0
  6851. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/sqs.py +0 -0
  6852. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_transport/__init__.py +0 -0
  6853. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/fixtures.py +0 -0
  6854. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/tests/BUILD +0 -0
  6855. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/tests/__init__.py +0 -0
  6856. {local_web_services_python_sdk-0.2.0/tests/unit → local_web_services_python_sdk-0.19.0/tests/architecture}/__init__.py +0 -0
  6857. {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/tests/pytest_runner.py +0 -0
@@ -0,0 +1,78 @@
1
+ .DEFAULT_GOAL := help
2
+
3
+ # Pass SUITE=tests/e2e/<name> to target a single suite; defaults to all suites.
4
+ SUITE ?= tests/e2e
5
+
6
+ .PHONY: help install lint format format-check complexity cpd pylint \
7
+ test-unit test-architecture test-e2e-minimal test-e2e-guard test-e2e-sequence \
8
+ unit-test architecture-test e2e-test test check
9
+
10
+ help: ## Show available targets
11
+ @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " %-24s %s\n", $$1, $$2}'
12
+
13
+ install: ## Install dependencies
14
+ uv sync --all-groups
15
+
16
+ # ── Static analysis ──────────────────────────────────────────────────────────
17
+
18
+ lint: ## Run all static analysis: ruff, black --check, radon, cpd, pylint
19
+ uvx ruff check --quiet src tests
20
+ uvx black --check --quiet src tests
21
+ @output=$$(uvx radon cc src -a -nc); \
22
+ echo "$$output"; \
23
+ echo "$$output" | grep -qE '^ +[A-Z]' && { echo "FAIL: complexity grade C or worse detected"; exit 1; } || true
24
+ @output=$$(uvx --from pylint symilar -d 5 --ignore-imports --ignore-docstrings --ignore-signatures $$(find src -name "*.py")); \
25
+ echo "$$output" | tail -1; \
26
+ echo "$$output" | tail -1 | grep -q "duplicates=0 " || { echo "$$output"; exit 1; }
27
+ uvx --from pylint pylint src/lws_testing --recursive=y
28
+
29
+ format: ## Auto-format code
30
+ uvx black src tests
31
+
32
+ format-check: ## Check formatting without changing files
33
+ uvx black --check --quiet src tests
34
+
35
+ complexity: ## Check cyclomatic complexity (grade B or better)
36
+ @output=$$(uvx radon cc src -a -nc); \
37
+ echo "$$output"; \
38
+ echo "$$output" | grep -qE '^ +[A-Z]' && { echo "FAIL: complexity grade C or worse detected"; exit 1; } || true
39
+
40
+ cpd: ## Check for copy-pasted code (5+ similar lines)
41
+ @output=$$(uvx --from pylint symilar -d 5 --ignore-imports --ignore-docstrings --ignore-signatures $$(find src -name "*.py")); \
42
+ echo "$$output" | tail -1; \
43
+ echo "$$output" | tail -1 | grep -q "duplicates=0 " || { echo "$$output"; exit 1; }
44
+
45
+ pylint: ## Run pylint
46
+ uvx --from pylint pylint src/lws_testing --recursive=y
47
+
48
+ # ── Tests ─────────────────────────────────────────────────────────────────────
49
+
50
+ test-unit: ## Run unit tests
51
+ uv run pytest -q tests/unit
52
+
53
+ test-architecture: ## Run architecture constraint tests
54
+ uv run pytest -q tests/architecture
55
+
56
+ # Pass SUITE=tests/e2e/<name> on the command line to target one suite.
57
+ test-e2e-minimal: ## Run @minimal e2e scenarios (requires Docker)
58
+ uv run pytest $(SUITE) -v -m minimal --junitxml=test-results/junit-minimal.xml
59
+
60
+ test-e2e-guard: ## Run @guard e2e scenarios (requires Docker)
61
+ uv run pytest $(SUITE) -v -m guard --junitxml=test-results/junit-guard.xml
62
+
63
+ test-e2e-sequence: ## Run @sequence e2e scenarios (requires Docker)
64
+ uv run pytest $(SUITE) -v -m sequence --junitxml=test-results/junit-sequence.xml
65
+
66
+ # ── Aliases (backward-compatible) ─────────────────────────────────────────────
67
+
68
+ unit-test: test-unit ## Alias for test-unit
69
+
70
+ architecture-test: test-architecture ## Alias for test-architecture
71
+
72
+ e2e-test: test-e2e-minimal test-e2e-guard test-e2e-sequence ## Run all e2e scenarios (requires Docker)
73
+
74
+ test: test-unit test-architecture ## Run all non-e2e tests
75
+
76
+ # ── Composite ─────────────────────────────────────────────────────────────────
77
+
78
+ check: lint test-unit test-architecture ## Run all checks (what CI runs)
@@ -0,0 +1,164 @@
1
+ Metadata-Version: 2.4
2
+ Name: local-web-services-python-sdk
3
+ Version: 0.19.0
4
+ Summary: Python testing SDK for local-web-services — in-process pytest fixtures and boto3 helpers
5
+ Project-URL: Homepage, https://local-web-services.github.io
6
+ Project-URL: Repository, https://github.com/local-web-services/local-web-services-sdk-python
7
+ Project-URL: Issues, https://github.com/local-web-services/local-web-services-sdk-python/issues
8
+ License-Expression: MIT
9
+ Keywords: aws,boto3,dynamodb,faking,local,pytest,s3,sqs,testing
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Framework :: Pytest
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Testing
19
+ Requires-Python: >=3.11
20
+ Requires-Dist: botocore>=1.34.0
21
+ Requires-Dist: httpx>=0.27.0
22
+ Requires-Dist: local-web-services>=0.19.0
23
+ Requires-Dist: pyyaml>=6.0
24
+ Provides-Extra: pytest
25
+ Requires-Dist: pytest>=8.0.0; extra == 'pytest'
26
+ Description-Content-Type: text/markdown
27
+
28
+ # local-web-services-python-sdk
29
+
30
+ Python testing SDK for [local-web-services](https://local-web-services.github.io) — starts
31
+ in-process AWS service emulators and provides pre-configured `boto3` clients that point at them.
32
+ Your production code works unchanged: the SDK sets `AWS_ENDPOINT_URL_*` environment variables
33
+ that boto3 picks up automatically.
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ pip install local-web-services-python-sdk
39
+ # or
40
+ uv add local-web-services-python-sdk
41
+ ```
42
+
43
+ Requires Python 3.9+ and `boto3`.
44
+
45
+ ## Quick start
46
+
47
+ ```python
48
+ from lws_testing import LwsSession, DynamoTable, SqsQueue, S3Bucket
49
+
50
+ with LwsSession(
51
+ DynamoTable("Orders", hash_key="id"),
52
+ SqsQueue("OrderQueue"),
53
+ S3Bucket("my-bucket"),
54
+ ) as session:
55
+ # Get a boto3 client pointing at the local emulator
56
+ dynamo = session.client("dynamodb")
57
+ dynamo.put_item(TableName="Orders", Item={"id": {"S": "1"}, "status": {"S": "pending"}})
58
+
59
+ item = dynamo.get_item(TableName="Orders", Key={"id": {"S": "1"}})
60
+ assert item["Item"]["status"]["S"] == "pending"
61
+
62
+ # SQS
63
+ sqs = session.client("sqs")
64
+ queue_url = session.queue_url("OrderQueue")
65
+ sqs.send_message(QueueUrl=queue_url, MessageBody="hello")
66
+
67
+ # S3
68
+ s3 = session.client("s3")
69
+ s3.put_object(Bucket="my-bucket", Key="file.txt", Body=b"hello")
70
+ ```
71
+
72
+ ## Auto-discover resources from CDK / Terraform
73
+
74
+ ```python
75
+ # Read resource definitions from a CDK project
76
+ with LwsSession.from_cdk("../my-cdk-project") as session:
77
+ dynamo = session.client("dynamodb")
78
+ ...
79
+
80
+ # Read resource definitions from a Terraform project
81
+ with LwsSession.from_hcl("../my-terraform-project") as session:
82
+ s3 = session.client("s3")
83
+ ...
84
+ ```
85
+
86
+ ## Resource specs
87
+
88
+ Declare the resources your test needs up front so LwsSession creates them before the test runs:
89
+
90
+ | Spec | Description |
91
+ |---|---|
92
+ | `DynamoTable(name, hash_key, sort_key=None)` | PAY_PER_REQUEST DynamoDB table |
93
+ | `SqsQueue(name)` | Standard SQS queue |
94
+ | `S3Bucket(name)` | S3 bucket |
95
+ | `SnsTopic(name)` | SNS topic |
96
+ | `SsmParameter(name, value, type="String")` | SSM Parameter Store entry |
97
+ | `Secret(name, value)` | Secrets Manager secret |
98
+ | `StateMachine(name, definition)` | Step Functions state machine |
99
+
100
+ ## pytest integration
101
+
102
+ The package registers pytest fixtures automatically via the `pytest11` entry point.
103
+ Add a session fixture to your `conftest.py`:
104
+
105
+ ```python
106
+ # conftest.py
107
+ import pytest
108
+ from lws_testing import DynamoTable, SqsQueue
109
+
110
+ @pytest.fixture(scope="session")
111
+ def lws_session_spec():
112
+ return [
113
+ DynamoTable("Orders", hash_key="id"),
114
+ SqsQueue("OrderQueue"),
115
+ ]
116
+ ```
117
+
118
+ Then use the `lws_session` fixture in your tests:
119
+
120
+ ```python
121
+ def test_create_order(lws_session):
122
+ client = lws_session.client("dynamodb")
123
+ client.put_item(TableName="Orders", Item={"id": {"S": "42"}})
124
+ item = client.get_item(TableName="Orders", Key={"id": {"S": "42"}})
125
+ assert item["Item"]["id"]["S"] == "42"
126
+ ```
127
+
128
+ ## Supported services
129
+
130
+ All 20 services are available via `session.client(service_name)`:
131
+
132
+ | Service | `session.client(...)` name |
133
+ |---|---|
134
+ | DynamoDB | `"dynamodb"` |
135
+ | SQS | `"sqs"` |
136
+ | S3 | `"s3"` |
137
+ | SNS | `"sns"` |
138
+ | EventBridge | `"events"` |
139
+ | Step Functions | `"stepfunctions"` |
140
+ | Cognito IDP | `"cognito-idp"` |
141
+ | Lambda | `"lambda"` |
142
+ | API Gateway | `"apigateway"` |
143
+ | RDS | `"rds"` |
144
+ | DocumentDB | `"docdb"` |
145
+ | SSM Parameter Store | `"ssm"` |
146
+ | Secrets Manager | `"secretsmanager"` |
147
+ | ElastiCache | `"elasticache"` |
148
+ | Neptune | `"neptune"` |
149
+ | MemoryDB | `"memorydb"` |
150
+ | Glacier | `"glacier"` |
151
+ | Elasticsearch | `"es"` |
152
+ | OpenSearch | `"opensearch"` |
153
+ | S3 Tables | `"s3tables"` |
154
+
155
+ ## How it works
156
+
157
+ `LwsSession` picks a random free base port and starts each service emulator in a background
158
+ thread within the test process. It sets `AWS_ENDPOINT_URL_<SERVICE>` (and stub credentials) in
159
+ the current process environment so that any boto3 client created during the test automatically
160
+ talks to the local emulator. On `__exit__` the servers are stopped and the environment is restored.
161
+
162
+ ## License
163
+
164
+ MIT
@@ -0,0 +1,137 @@
1
+ # local-web-services-python-sdk
2
+
3
+ Python testing SDK for [local-web-services](https://local-web-services.github.io) — starts
4
+ in-process AWS service emulators and provides pre-configured `boto3` clients that point at them.
5
+ Your production code works unchanged: the SDK sets `AWS_ENDPOINT_URL_*` environment variables
6
+ that boto3 picks up automatically.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ pip install local-web-services-python-sdk
12
+ # or
13
+ uv add local-web-services-python-sdk
14
+ ```
15
+
16
+ Requires Python 3.9+ and `boto3`.
17
+
18
+ ## Quick start
19
+
20
+ ```python
21
+ from lws_testing import LwsSession, DynamoTable, SqsQueue, S3Bucket
22
+
23
+ with LwsSession(
24
+ DynamoTable("Orders", hash_key="id"),
25
+ SqsQueue("OrderQueue"),
26
+ S3Bucket("my-bucket"),
27
+ ) as session:
28
+ # Get a boto3 client pointing at the local emulator
29
+ dynamo = session.client("dynamodb")
30
+ dynamo.put_item(TableName="Orders", Item={"id": {"S": "1"}, "status": {"S": "pending"}})
31
+
32
+ item = dynamo.get_item(TableName="Orders", Key={"id": {"S": "1"}})
33
+ assert item["Item"]["status"]["S"] == "pending"
34
+
35
+ # SQS
36
+ sqs = session.client("sqs")
37
+ queue_url = session.queue_url("OrderQueue")
38
+ sqs.send_message(QueueUrl=queue_url, MessageBody="hello")
39
+
40
+ # S3
41
+ s3 = session.client("s3")
42
+ s3.put_object(Bucket="my-bucket", Key="file.txt", Body=b"hello")
43
+ ```
44
+
45
+ ## Auto-discover resources from CDK / Terraform
46
+
47
+ ```python
48
+ # Read resource definitions from a CDK project
49
+ with LwsSession.from_cdk("../my-cdk-project") as session:
50
+ dynamo = session.client("dynamodb")
51
+ ...
52
+
53
+ # Read resource definitions from a Terraform project
54
+ with LwsSession.from_hcl("../my-terraform-project") as session:
55
+ s3 = session.client("s3")
56
+ ...
57
+ ```
58
+
59
+ ## Resource specs
60
+
61
+ Declare the resources your test needs up front so LwsSession creates them before the test runs:
62
+
63
+ | Spec | Description |
64
+ |---|---|
65
+ | `DynamoTable(name, hash_key, sort_key=None)` | PAY_PER_REQUEST DynamoDB table |
66
+ | `SqsQueue(name)` | Standard SQS queue |
67
+ | `S3Bucket(name)` | S3 bucket |
68
+ | `SnsTopic(name)` | SNS topic |
69
+ | `SsmParameter(name, value, type="String")` | SSM Parameter Store entry |
70
+ | `Secret(name, value)` | Secrets Manager secret |
71
+ | `StateMachine(name, definition)` | Step Functions state machine |
72
+
73
+ ## pytest integration
74
+
75
+ The package registers pytest fixtures automatically via the `pytest11` entry point.
76
+ Add a session fixture to your `conftest.py`:
77
+
78
+ ```python
79
+ # conftest.py
80
+ import pytest
81
+ from lws_testing import DynamoTable, SqsQueue
82
+
83
+ @pytest.fixture(scope="session")
84
+ def lws_session_spec():
85
+ return [
86
+ DynamoTable("Orders", hash_key="id"),
87
+ SqsQueue("OrderQueue"),
88
+ ]
89
+ ```
90
+
91
+ Then use the `lws_session` fixture in your tests:
92
+
93
+ ```python
94
+ def test_create_order(lws_session):
95
+ client = lws_session.client("dynamodb")
96
+ client.put_item(TableName="Orders", Item={"id": {"S": "42"}})
97
+ item = client.get_item(TableName="Orders", Key={"id": {"S": "42"}})
98
+ assert item["Item"]["id"]["S"] == "42"
99
+ ```
100
+
101
+ ## Supported services
102
+
103
+ All 20 services are available via `session.client(service_name)`:
104
+
105
+ | Service | `session.client(...)` name |
106
+ |---|---|
107
+ | DynamoDB | `"dynamodb"` |
108
+ | SQS | `"sqs"` |
109
+ | S3 | `"s3"` |
110
+ | SNS | `"sns"` |
111
+ | EventBridge | `"events"` |
112
+ | Step Functions | `"stepfunctions"` |
113
+ | Cognito IDP | `"cognito-idp"` |
114
+ | Lambda | `"lambda"` |
115
+ | API Gateway | `"apigateway"` |
116
+ | RDS | `"rds"` |
117
+ | DocumentDB | `"docdb"` |
118
+ | SSM Parameter Store | `"ssm"` |
119
+ | Secrets Manager | `"secretsmanager"` |
120
+ | ElastiCache | `"elasticache"` |
121
+ | Neptune | `"neptune"` |
122
+ | MemoryDB | `"memorydb"` |
123
+ | Glacier | `"glacier"` |
124
+ | Elasticsearch | `"es"` |
125
+ | OpenSearch | `"opensearch"` |
126
+ | S3 Tables | `"s3tables"` |
127
+
128
+ ## How it works
129
+
130
+ `LwsSession` picks a random free base port and starts each service emulator in a background
131
+ thread within the test process. It sets `AWS_ENDPOINT_URL_<SERVICE>` (and stub credentials) in
132
+ the current process environment so that any boto3 client created during the test automatically
133
+ talks to the local emulator. On `__exit__` the servers are stopped and the environment is restored.
134
+
135
+ ## License
136
+
137
+ MIT
@@ -0,0 +1,103 @@
1
+ [project]
2
+ name = "local-web-services-python-sdk"
3
+ version = "0.19.0"
4
+ description = "Python testing SDK for local-web-services — in-process pytest fixtures and boto3 helpers"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.11"
8
+ keywords = ["aws", "testing", "pytest", "boto3", "local", "dynamodb", "sqs", "s3", "faking"]
9
+ classifiers = [
10
+ "Development Status :: 3 - Alpha",
11
+ "Intended Audience :: Developers",
12
+ "License :: OSI Approved :: MIT License",
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3.11",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Programming Language :: Python :: 3.13",
17
+ "Topic :: Software Development :: Testing",
18
+ "Framework :: Pytest",
19
+ ]
20
+ dependencies = [
21
+ "httpx>=0.27.0",
22
+ "botocore>=1.34.0",
23
+ "pyyaml>=6.0",
24
+ "local-web-services>=0.19.0",
25
+ ]
26
+
27
+ [project.optional-dependencies]
28
+ pytest = [
29
+ "pytest>=8.0.0",
30
+ ]
31
+
32
+ [project.urls]
33
+ Homepage = "https://local-web-services.github.io"
34
+ Repository = "https://github.com/local-web-services/local-web-services-sdk-python"
35
+ Issues = "https://github.com/local-web-services/local-web-services-sdk-python/issues"
36
+
37
+ [project.entry-points."pytest11"]
38
+ lws_testing = "lws_testing.fixtures"
39
+
40
+ [build-system]
41
+ requires = ["hatchling"]
42
+ build-backend = "hatchling.build"
43
+
44
+ [tool.hatch.build.targets.wheel]
45
+ packages = ["src/lws_testing"]
46
+
47
+ [tool.pytest.ini_options]
48
+ testpaths = ["tests"]
49
+ asyncio_mode = "auto"
50
+ addopts = "-qq --no-header --disable-warnings"
51
+ markers = [
52
+ "internal: scenarios tagged @internal in Gherkin (excluded from standard test runs)",
53
+ "lifecycle: scenarios tagged @lifecycle in Gherkin (require internal lifecycle control)",
54
+ "capacity: scenarios tagged @capacity in Gherkin (require internal capacity control)",
55
+ "guard: scenarios tagged @guard in Gherkin (guard violation / negative outcome)",
56
+ "sequence: scenarios tagged @sequence in Gherkin (multi-action chain)",
57
+ ]
58
+
59
+ [dependency-groups]
60
+ dev = [
61
+ "pytest>=8.0.0",
62
+ "pytest-asyncio>=0.23.0",
63
+ "pytest-bdd>=8.1.0",
64
+ "boto3>=1.34.0",
65
+ "black>=24.0.0",
66
+ "ruff>=0.4.0",
67
+ "radon>=6.0.0",
68
+ "lws-arch-tests",
69
+ "agency-pytest-agent-reporter>=0.1.0",
70
+ ]
71
+
72
+ [tool.black]
73
+ line-length = 100
74
+ target-version = ["py311"]
75
+
76
+ [tool.ruff]
77
+ line-length = 100
78
+ target-version = "py311"
79
+
80
+ [tool.ruff.lint]
81
+ select = ["E", "F", "I", "W", "UP", "C90"]
82
+
83
+ [tool.ruff.lint.per-file-ignores]
84
+ "tests/e2e/**/given/*.py" = ["E501"]
85
+ "tests/e2e/**/when/*.py" = ["E501"]
86
+ "tests/e2e/**/then/*.py" = ["E501"]
87
+
88
+ [tool.ruff.lint.isort]
89
+ known-first-party = ["lws_testing"]
90
+
91
+ [tool.ruff.lint.mccabe]
92
+ max-complexity = 10
93
+
94
+ [tool.pylint."messages control"]
95
+ disable = [
96
+ "E0401", "W0718", "R0801", "C0301", "C0302", "C0114", "C0115",
97
+ "R0903", "R0902", "R0913", "R0917", "R0904", "R0911", "R0914", "C0103",
98
+ "W0603", "W0621", "C0415", "C0116", "W0212",
99
+ ]
100
+
101
+ [tool.uv.sources]
102
+ local-web-services = { path = "../core", editable = true }
103
+ lws-arch-tests = { path = "../arch_tests", editable = true }
@@ -0,0 +1,53 @@
1
+ """local-web-services testing SDK.
2
+
3
+ In-process pytest fixtures and boto3 helpers for testing AWS applications
4
+ against real LWS service implementations without needing a running ldk dev.
5
+
6
+ Usage::
7
+
8
+ from lws_testing import LwsSession, DynamoTable, SqsQueue
9
+
10
+ # Typed resource specs (recommended)
11
+ with LwsSession(
12
+ DynamoTable("Orders", hash_key="id"),
13
+ SqsQueue("OrderQueue"),
14
+ ) as session: ...
15
+
16
+ # Auto-detect CDK or HCL project in current directory
17
+ with LwsSession.from_cdk("../") as session: ...
18
+ with LwsSession.from_hcl("../") as session: ...
19
+
20
+ # Legacy dict-based resource declaration (still supported)
21
+ with LwsSession(
22
+ tables=[{"name": "Orders", "partition_key": "id"}],
23
+ queues=["OrderQueue"],
24
+ buckets=["ReceiptsBucket"],
25
+ ) as session: ...
26
+ """
27
+
28
+ from __future__ import annotations
29
+
30
+ from lws_testing._spec import (
31
+ DynamoTable,
32
+ S3Bucket,
33
+ Secret,
34
+ SnsTopic,
35
+ SqsQueue,
36
+ SsmParameter,
37
+ StateMachine,
38
+ )
39
+ from lws_testing.services import LifecycleDwell, Service
40
+ from lws_testing.session import LwsSession
41
+
42
+ __all__ = [
43
+ "LwsSession",
44
+ "DynamoTable",
45
+ "SqsQueue",
46
+ "S3Bucket",
47
+ "SnsTopic",
48
+ "SsmParameter",
49
+ "Secret",
50
+ "StateMachine",
51
+ "Service",
52
+ "LifecycleDwell",
53
+ ]
@@ -0,0 +1,63 @@
1
+ """Fluent builder for configuring AWS service capacity."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import httpx
6
+
7
+
8
+ class CapacityBuilder:
9
+ """Fluent builder for AWS service capacity configuration.
10
+
11
+ Usage::
12
+
13
+ session.capacity("stepfunctions").exhaust().apply()
14
+ session.capacity("lambda").exhaust().apply()
15
+ """
16
+
17
+ def __init__(self, service: str, mgmt_port: int) -> None:
18
+ self._service = service
19
+ self._mgmt_port = mgmt_port
20
+ self._config: dict = {}
21
+
22
+ def exhaust(self) -> CapacityBuilder:
23
+ """Set slot count to zero (no capacity available)."""
24
+ self._config["slots"] = 0
25
+ return self
26
+
27
+ def slots(self, n: int) -> CapacityBuilder:
28
+ """Set slot count to a specific value."""
29
+ self._config["slots"] = int(n)
30
+ return self
31
+
32
+ def unlimited(self) -> CapacityBuilder:
33
+ """Remove slot limit (restore unlimited capacity)."""
34
+ self._config["slots"] = None
35
+ return self
36
+
37
+ def apply(self) -> None:
38
+ """Push the capacity configuration to the management API."""
39
+ httpx.post(
40
+ f"http://127.0.0.1:{self._mgmt_port}/_ldk/capacity",
41
+ json={self._service: self._config},
42
+ timeout=5.0,
43
+ )
44
+
45
+ def is_exhausted(self) -> bool:
46
+ """Return True if the service currently has zero capacity."""
47
+ resp = httpx.get(
48
+ f"http://127.0.0.1:{self._mgmt_port}/_ldk/capacity",
49
+ timeout=5.0,
50
+ )
51
+ data = resp.json()
52
+ capacity = data.get("capacity", data)
53
+ svc = capacity.get(self._service, {})
54
+ slots = svc.get("slots")
55
+ return slots is not None and slots == 0
56
+
57
+ def clear(self) -> None:
58
+ """Restore unlimited capacity for this service."""
59
+ httpx.post(
60
+ f"http://127.0.0.1:{self._mgmt_port}/_ldk/capacity",
61
+ json={self._service: {"slots": None}},
62
+ timeout=5.0,
63
+ )