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.
- local_web_services_python_sdk-0.19.0/Makefile +78 -0
- local_web_services_python_sdk-0.19.0/PKG-INFO +164 -0
- local_web_services_python_sdk-0.19.0/README.md +137 -0
- local_web_services_python_sdk-0.19.0/pyproject.toml +103 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/__init__.py +53 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/capacity.py +63 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/fake.py +113 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/iam.py +117 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_builders/lifecycle.py +50 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_discovery/cdk.py +115 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_logs.py +130 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_management/__init__.py +1 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_management/aws_fake.py +121 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_management/chaos.py +38 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_management/fake.py +147 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_management/state.py +54 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_session_helpers.py +90 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_spec.py +98 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_extended_services.py +158 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_management_app.py +58 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_provider_wrappers.py +195 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/_spec_converters.py +90 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/_transport/inprocess.py +482 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/services.py +44 -0
- local_web_services_python_sdk-0.19.0/src/lws_testing/session.py +498 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/conftest.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_bdd_pattern.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_no_httpx_imports.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_no_skipped_tests.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/e2e/test_resource_naming.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_aaa_comments.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_client_class_naming.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_file_length.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_file_naming.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_init_imports_all_steps.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_inprocess_wiring.py +82 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_bare_except.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_magic_strings_in_assertions.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_session_helpers_in_constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_no_steps_in_conftest.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_one_step_per_file.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_provider_feature_e2e_coverage.py +282 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_step_decorator_matches_directory.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/test_step_file_name_matches_function.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/unit/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/architecture/tests/unit/test_one_class_per_file.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/client.py +128 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/constants.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/__init__.py +94 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_deployment_created.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_does_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_does_not_exist.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_not_active_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/api_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/backend_integration_attached.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/backend_integration_called.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/child_resource_created.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_deleted_when_no_stage.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_slot_already_in_use.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/deployment_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_exist_v2.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_does_not_have_throttling_configured.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_has_throttling_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/dev_stage_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/did_in_deployment_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/did_not_in_deployment_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/existing_method_updated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/get_method_created_on_resource.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_does_not_exist.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/integration_response_configured.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_deleted_with_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_exist.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_have_api_association.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_does_not_have_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_has_api_association.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_has_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/method_response_configured.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_in_integration_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_in_method_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/mk_not_in_method_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/no_resource_slot_is_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/non_root_resource_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/parent_resource_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_created.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_exist_v2.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_does_not_have_throttling_configured.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_has_throttling_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/prod_stage_redeployed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/request_made_to_throttled_stage.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_does_not_have_path.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_has_path.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_not_root_resource.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_is_root_resource.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_allocated.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_is_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/resource_slot_unallocated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rest_api_created_with_root_resource.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rest_api_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rid_in_resource_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/rid_not_in_resource_api.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/root_resource_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/sk_in_stage_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/sk_in_stage_throttling.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_integration_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_already_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_does_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/the_method_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_disabled_for_prod_stage.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_dev.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_for_prod_stage.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_enabled_prod.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_not_enabled_dev.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/given/throttling_not_enabled_prod.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/__init__.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_deployments_belong_to_active_apis.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_resources_belong_to_active_apis.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_stages_belong_to_active_apis.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_active_stages_reference_active_deployments.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_existing_integrations_correspond_to_existing_methods.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_existing_methods_belong_to_active_resources.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/all_rest_apis_listed_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/api_is_active_with_root_resource.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/api_is_deleted_with_all_resources.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/deployment_is_active_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/deployment_is_deleted_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_exists_pointing_to_deployment.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_no_longer_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_points_to_new_deployment.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_requests_are_not_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/dev_stage_requests_are_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/each_active_api_has_root_resource.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/every_api_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_exists_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_is_deleted_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_response_exists_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/integration_times_out_or_responds.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_exists_on_resource_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_is_deleted_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_remains_unchanged_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/method_response_exists_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/new_resource_is_active_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/operation_is_rejected_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_exists_pointing_to_deployment.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_no_longer_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_points_to_new_deployment.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_requests_are_not_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/prod_stage_requests_are_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/request_is_throttled_or_passes_non_deterministically.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/resource_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_active_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_created_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_creating_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_deleted_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/rest_api_is_retrieved_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/then/root_resource_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/activate_rest_api.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/attach_backend_integration.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/backend_integration_called_when.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/configure_200_integration_response.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/configure_200_method_response.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_api_deployment.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_child_resource.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_dev_stage.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_get_method_on_resource.py +37 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_prod_stage.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_rest_api.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/create_rest_api_with_root_resource.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_deployment_no_stage.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_dev_stage.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_integration.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_method_with_integration.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_non_root_resource.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_prod_stage.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_rest_api.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/delete_rest_api_quoted.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/disable_throttling_dev_stage.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/disable_throttling_prod_stage.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/enable_throttling_dev_stage.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/enable_throttling_prod_stage.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/get_rest_api.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/init_root_resource.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/list_rest_apis.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/redeploy_dev_stage.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/redeploy_prod_stage.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/request_to_throttled_dev_stage.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/request_to_throttled_prod_stage.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway/when/update_existing_method.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/client.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/__init__.py +45 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_already_has_authorizer.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_authorizer.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_no_authorizer.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_has_no_cognito_authorizer.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_authorizer_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_jwt_issued.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_mismatched_token.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_request_slot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_token_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_no_valid_token.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pid_in_pool_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pid_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_authorized.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_rejected.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_rest_api_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_rid_not_in_req_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_belongs_to_pool_user.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_from_different_pool.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_not_belong_to_pool_user.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_token_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_uid_in_user_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_is_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_is_not_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_user_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/given/apigw_cognito_valid_token_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/__init__.py +11 -0
- 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
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/api_is_active_no_cognito_authorizer.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/api_will_validate_jwt.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/apigw_cognito_pool_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/request_is_authorized.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/request_is_rejected.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/user_is_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/then/valid_token_issued.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/authorize_request.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/cognito_issues_jwt_token.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/configure_cognito_authorizer.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/confirm_user_in_pool.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/create_cognito_user_pool_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/create_rest_api_cognito.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_cognito/when/reject_request.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/client.py +81 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_been_created.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_integration.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_api_not_exist_or_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_integration_configured.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_no_item_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_no_request_slot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_write_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_request_written_200.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_already_deleting.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_deletion_initiated.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_table_not_exist_or_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_deleting.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_target_table_is_not_deleting.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_tid_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/given/apigw_dynamodb_tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/api_will_write_to_table.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/apigw_dynamodb_table_is_deleting.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/item_exists_request_success.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/then/request_failed_no_item.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/configure_dynamodb_integration.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/create_dynamodb_table_apigw.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/create_rest_api_dynamodb.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/initiate_table_deletion.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/request_fails_table_deleting.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_dynamodb/when/request_writes_to_dynamodb.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_lambda_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_has_no_lambda_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integrated_function_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integrated_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_integration_configured.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_completed_success.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_is_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_invocation_slot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_no_request_slot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_request_received_invoked.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/given/apigw_lambda_rest_api_has_been_created.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/__init__.py +9 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/api_will_invoke_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/apigw_lambda_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/apigw_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/invocation_failed_request_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/invocation_success_request_success.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/then/request_and_invocation_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/api_receives_request_invokes_lambda.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/configure_lambda_integration_apigw.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/create_rest_api_lambda.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/deploy_lambda_function_apigw.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/lambda_invocation_fails_apigw.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_lambda/when/lambda_invocation_succeeds_apigw.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/client.py +73 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/__init__.py +37 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_integration.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_api_not_exist_or_not_active.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_already_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_has_been_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_is_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_bucket_not_exist_or_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_get_request_retrieved.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_object_in_bucket.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_object_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_no_request_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_object_exists_in_bucket.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_put_request_written.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_request_failed_bucket_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/given/apigw_s3api_s3_integration_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/api_will_proxy_to_s3.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_bucket_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_bucket_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/apigw_s3api_request_is_success.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/object_exists_request_success.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/then/request_failed_no_such_bucket.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/configure_s3_integration_apigw.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/create_rest_api_s3api.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/create_s3_bucket_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/delete_s3_bucket_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/get_request_retrieves_object.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/put_request_writes_object.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_s3api/when/request_fails_bucket_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/client.py +72 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_integration.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_api_not_exist_or_not_active.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_integration_configured_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_no_message_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_no_request_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_failed_topic_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_published_200.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_target_topic_is_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_has_been_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/given/apigw_sns_topic_not_exist_or_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/api_will_publish_to_topic.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/apigw_sns_topic_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/message_published_request_success.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/then/request_failed_no_message.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/configure_sns_integration_apigw.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/create_rest_api_sns.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/create_sns_topic_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/delete_sns_topic_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/request_fails_topic_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sns/when/request_publishes_to_sns.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/client.py +72 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/__init__.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_no_sqs_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_has_sqs_integration.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_available_message_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_backend_consumer_processed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_integration_configured_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_mid_in_msg_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_available_message.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_message_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_no_request_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_request_enqueued.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_rest_api_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_target_queue_is_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/given/apigw_sqs_target_queue_is_not_active.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/__init__.py +7 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/api_will_enqueue_requests.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_message_is_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/apigw_sqs_queue_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/then/request_accepted_message_available.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/api_receives_request_enqueues.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/backend_consumer_processes_message.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/configure_sqs_integration_apigw.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/create_rest_api_sqs.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_sqs/when/create_sqs_queue_apigw.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/client.py +72 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/constants.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_aid_in_api_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_aid_not_in_api_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_no_sfn_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_has_sfn_integration.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_api_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_eid_in_exec_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_completed_success.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_is_running.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integrated_sm_is_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integrated_sm_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_integration_configured_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_execution_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_no_request_slot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_request_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_request_started_execution.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_rest_api_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/given/apigw_sfn_smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/__init__.py +9 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/api_will_start_execution.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/apigw_sfn_api_is_active_no_integration.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/apigw_sfn_sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/execution_failed_request_failed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/execution_succeeded_request_success.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/then/request_in_progress_execution_running.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/api_receives_request_starts_execution.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/configure_sfn_integration_apigw.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/create_rest_api_sfn.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/create_sfn_state_machine_apigw.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/sfn_execution_fails_apigw.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/apigateway_stepfunctions/when/sfn_execution_succeeds_apigw.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/client.py +64 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/constants.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_fid_in_fake_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_fid_not_in_fake_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_has_been_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_header_filtered_request_intercepted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_no_operation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_oid_in_op_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_does_not_have_header_filter.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_been_added.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_been_removed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_header_filter.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_has_no_header_filter.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_operation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_request_intercepted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/aws_fake_uncovered_request_reached_provider.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/__init__.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/aws_fake_is_active_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/aws_fake_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/canned_response_returned_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/canned_response_returned_when_header_matches_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_active_on_aws_fake_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/operation_is_rejected_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/then/request_passes_through_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/add_operation_to_aws_fake.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/create_aws_fake.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/delete_aws_fake.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/fallthrough_request_reaches_provider.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/intercept_aws_fake_request.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/intercept_header_filtered_request.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/aws_fake/when/remove_operation_from_aws_fake.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/client.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/__init__.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_error_rate_configured.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_has_been_disabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_has_been_enabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_enabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_enabled_for_the_service.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_is_not_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_latency_configured.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_service_call_delayed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_service_call_injected_with_error.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_status_retrieved.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/chaos_svc_in_chaos_enabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/error_rate_not_set_to_full.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/error_rate_set_to_full.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/latency_configured_for_service.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/given/latency_not_configured_for_service.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/__init__.py +9 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_config_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_is_disabled.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_chaos_is_enabled.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_error_rate_updated.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_latency_updated.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_operation_is_rejected.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_service_call_delayed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/then/then_service_call_receives_chaos_error.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_error_rate_configured.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_is_disabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_is_enabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_latency_configured.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_chaos_status_retrieved.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_service_call_delayed_by_latency.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/chaos/when/when_service_call_injected_with_error.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/client.py +93 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/client.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/constants.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/sid_in_stack_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/sid_not_in_stack_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_already_existed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_did_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_did_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/stack_existed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/deleted_stacks_not_describable_invariant.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/operation_is_rejected.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_is_create_complete.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_is_update_complete.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_no_longer_exists.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/stack_status_valid_invariant.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/then/unique_stack_names_invariant.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/__init__.py +3 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/create_stack.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/delete_stack.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudformation/when/update_stack.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/client.py +56 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/conftest.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/__init__.py +55 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_cloudtrail_trail_has_been_created.py +12 -0
- 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
- 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
- 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
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_prior_lookup_events_response_returned_a_next_token.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/a_trail_is_created_with_an_s3_bucket.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/an_eventbridge_event_bus_exists.py +16 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/at_least_one_trail_is_logging.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/awsiamamiddleware_is_configured_in_enforce_mode.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/eid_in_event_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/eid_not_in_event_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/event_status_eid_not_buffered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_accumulate_in_the_internal_buffer.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_are_in_the_internal_buffer.py +16 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_from_multiple_services_are_in_the_buffer.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_from_two_different_callers_are_in_the_buffer.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_have_accumulated_in_the_buffer.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_were_captured_at_different_times.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/events_were_captured_over_a_30_minute_period.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/more_than_50_matching_events_are_in_the_buffer.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/multiple_events_are_in_the_buffer.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_cloudtrail_provider_is_registered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_cloudtrail_trail_has_been_created_with_that_name.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/no_trail_is_in_logging_state.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/s3_and_dynamodb_events_are_in_the_buffer.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/several_service_api_calls_have_been_made.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/start_logging_has_been_called_on_the_trail.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/start_logging_is_called.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/stop_logging_has_been_called_on_the_trail.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_active_trail_count_has_reached_the_maximum.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_active_trail_count_is_below_the_maximum.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_associated_trail_is_logging.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_caller_does_not_have_permission_for_the_operation.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_event_was_buffered.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_already_existed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_did_not_already_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_did_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_existed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_logging.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_not_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_cloudtrail_trail_was_not_logging.py +11 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_bucket_exists.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/the_s3_bucket_has_now_been_created.py +16 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/tname_in_trail_status.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/tname_not_in_trail_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/given/two_cloudtrail_trails_have_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/test_scenarios.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/__init__.py +82 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_cloudtrail_management_event_is_buffered.py +15 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_deleted_trail_is_never_in_logging_state.py +24 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_next_token_is_included_in_the_response.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/a_warning_is_logged.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/active_trail_count_never_exceeds_max.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/all_buffered_events_reference_valid_trails.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/all_matching_buffered_events_are_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/an_eventbridge_event_is_published_to_the_configured_bus.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/both_trails_are_included_in_the_response.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/buffered_events_are_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/each_element_in_records_is_a_valid_cloudtrail_event.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/event_capture_continues_normally.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_are_returned_in_reverse_chronological_order.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_only_delivered_when_logging.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/events_reference_valid_trails_invariant.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/fifty_events_are_returned.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/get_trail_status_returns_a_latest_delivery_error.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/is_logging_is_true.py +13 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/latest_delivery_error_is_cleared.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/log_files_appear_under_the_cloudtrail_s3_key_path.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/lookup_events_returns_the_captured_events.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_cloudtrail_error_is_raised.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_create_table_events_are_included.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_error_is_raised.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_error_is_returned_at_creation_time.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/no_eventbridge_put_events_call_is_made.py +14 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_create_queue_events_are_returned.py +25 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_events_with_s3_bucket_resources_are_returned.py +28 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/only_sqs_events_are_returned.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/subsequent_events_are_forwarded_to_eventbridge.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffer_is_cleared_after_the_flush.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_aws_region.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_id.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_name.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_source.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_time.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_type.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_event_version.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_recipient_account_id.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_source_ip_address.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_buffered_event_includes_user_identity.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_capacity_limit_is_respected.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_event_will_be_buffered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_event_will_be_delivered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_logging_will_be_disabled.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_logging_will_be_enabled.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_will_be_created.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_cloudtrail_trail_will_be_deleted.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_buffer_is_not_lost.py +14 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_error_message_set.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_dynamodb.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_s3.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_event_source_sqs.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_has_no_error_code.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_resources_array_contains_the_object_arn.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_event_resources_array_contains_the_table_arn.py +28 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_event_has_source_aws_cloudtrail.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_eventbridge_rule_target_is_invoked.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_flush_succeeds.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_next_page_of_events_is_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_operation_is_rejected.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_s3_key_follows_the_standard_cloudtrail_path_format.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_sqs_call_succeeds_normally.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_configuration_and_logging_state_are_returned.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_count_is_consistent.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trail_is_created_successfully.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/then/the_trails_s3_bucket_is_updated.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/__init__.py +38 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_event_is_delivered_to_s3.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_event_is_recorded.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_trail_is_created.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_cloudtrail_trail_is_deleted.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_flush_is_attempted.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_service_api_call_is_made.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/a_service_operation_is_called.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/any_aws_service_operation_is_called.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_bucket_is_called_on_the_s3_provider.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_queue_is_called_on_the_sqs_provider.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_table_is_called_on_the_dynamodb_provider.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/create_trail_is_called.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/get_trail_is_called_with_the_trail_name.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/get_trail_status_is_called.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/list_trails_is_called.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_event_name_create_queue.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_event_source_sqs.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_next_token.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_resource_type_s3_bucket.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_time_range.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_with_username_developer.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_without_next_token.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/lookup_events_is_called_without_time_range.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/multiple_service_api_calls_are_made.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/put_item_is_called_on_the_dynamodb_provider.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/put_object_is_called_on_the_s3_provider.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/start_logging_is_called_on_the_cloudtrail_trail.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/stop_logging_is_called_on_the_cloudtrail_trail.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_file_is_downloaded_and_decompressed.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_flush_cycle_runs.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_flush_interval_elapses.py +18 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cloudtrail/when/the_next_scheduled_flush_runs.py +18 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/__init__.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/bus_not_exist_or_not_active.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_event_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_event_bus_has_been_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_pid_in_pool_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_pid_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_publishing_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_action_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_action_delivery_failed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/cognito_events_user_pool_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_already_has_eventbridge_config.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_has_eventbridge_config.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_has_no_eventbridge_config.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/given/pool_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/event_delivered_to_bus.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/event_delivery_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/pool_is_active_no_eventbridge.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/then/pool_will_send_events_to_bus.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/create_user_pool.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/enable_event_publishing.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/user_action_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_events/when/user_action_event_delivery_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/client.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/constants.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/__init__.py +72 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_added_user_to_group.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_confirmed_user.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_initiated_auth.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_removed_user_from_group.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_reset_password.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_set_password.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_admin_updated_attributes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_authenticated_session_expired.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_confirmed_user_initiated_auth.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_group_id_in_group_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_pool_id_in_pool_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_pool_id_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_session_id_in_session_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_compromised.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_disabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_account_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_has_been_created.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_has_been_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_id_in_user_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_id_in_user_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_pool_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_pool_has_been_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_user_responded_to_challenge.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/cognito_idp_verification_code_delivery_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_already_exists.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_exists.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/group_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_does_not_exist.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_authenticated.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_challenge_required.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_not_authenticated.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_is_not_challenge_required.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/session_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_already_exists.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_and_group_belong_to_different_pools.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_and_group_belong_to_same_pool.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_does_not_have_enabled_flag.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_exists.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_has_enabled_flag.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_already_deleted.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_confirmed.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_deleted.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_disabled.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_enabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_force_change_password.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_in_force_change_password_state.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_in_reset_required_state.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_already_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_confirmed.py +38 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_disabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_enabled.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_force_change_password.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_in_force_change_password_state.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_in_reset_required_state.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_not_unconfirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_is_unconfirmed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/given/user_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/__init__.py +31 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/group_is_active_and_associated_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/group_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/operation_is_rejected_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_simple_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/pool_is_deleted_with_users_groups_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_authenticated_or_challenge_failed_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_created_authenticated_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_created_challenge_required_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/session_is_expired_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_attributes_are_updated_then.py +12 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_confirmed_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_deleted_sessions_cleared_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_disabled_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_enabled_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_force_change_password_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_in_compromised_state_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_in_reset_required_state_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_member_of_group_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_is_not_member_of_group_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/then/user_remains_unconfirmed_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/__init__.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_add_user_to_group.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_confirm_user_registration.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_initiates_auth.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_remove_user_from_group.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_reset_user_password.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_set_user_password.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/admin_update_user_attributes.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/authenticated_session_expires.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/confirmed_user_initiates_auth.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_group_in_user_pool.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_user_by_admin.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/create_user_pool.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_group.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_user_by_admin.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/delete_user_pool.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/disable_user_by_admin.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/enable_user_by_admin.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/mark_user_compromised.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/user_responds_to_auth_challenge.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_idp/when/verification_code_delivery_fails.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/client.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_invocation_is_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_no_user_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pid_in_pool_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pid_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_already_has_trigger.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_no_pre_signup_trigger.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_no_trigger.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_has_pre_signup_trigger.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_allowed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_denied.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_pre_signup_trigger_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_trigger_function_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_trigger_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_initiated_signup_with_trigger.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_pool_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_signed_up_no_trigger.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/given/cognito_lambda_user_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/__init__.py +11 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/cognito_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/cognito_lambda_pool_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/invocation_failed_user_rejected.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/invocation_success_user_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/pool_is_active_no_trigger.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/signups_will_invoke_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/user_is_immediately_confirmed.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/then/user_is_pending_trigger_invoked.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/configure_lambda_trigger.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/create_cognito_user_pool.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/deploy_lambda_function_cognito.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/pre_signup_lambda_allows.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/pre_signup_lambda_denies.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/user_initiates_signup_with_trigger.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/cognito_lambda/when/user_signs_up_without_trigger.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/conftest.py +45 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/constants.py +57 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/client.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/__init__.py +75 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_has_no_non_deleted_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_has_non_deleted_instances.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_creating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_not_restoring_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_is_restoring_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_config_modified.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_creation_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_deletion_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_modification_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_restore_completed.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_cluster_restored_from_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_failover_triggered.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_config_modified.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_deletion_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_instance_modification_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_deletion_completed.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/docdb_snapshot_has_finished_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/iid_in_instance_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_belongs_to_cluster.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_does_not_belong_to_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_already_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_primary_of_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_not_the_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_primary_of_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_is_the_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/instance_was_not_already_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/new_primary_instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/new_primary_instance_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/sid_in_snapshot_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/snapshot_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/target_cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/given/target_cluster_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/__init__.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_has_new_primary_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_creating_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_failed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/cluster_returns_to_available_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/creating_snapshot_references_non_deleted_cluster.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/deleted_cluster_has_no_non_deleted_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/deleting_cluster_receives_no_new_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_cluster_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_instance_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/every_snapshot_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/failed_cluster_has_no_available_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_available_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_creating_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_deleted_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/instance_returns_to_available_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/restored_cluster_is_restoring_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_creating_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/then/snapshot_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/__init__.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_creation_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/cluster_restore_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_cluster_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/create_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_cluster_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/delete_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/failover_db_cluster.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/instance_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/modify_db_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/modify_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/restore_db_cluster_from_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/snapshot_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb/when/snapshot_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/client.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_modifying_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_is_not_modifying_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_cluster_modification_delivery_failed.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_event_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/docdb_events_event_bus_has_been_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_modifying_and_event_delivered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/then/cluster_modifying_but_no_event.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modification_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modify_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/cluster_modify_event_fails.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/create_db_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/docdb_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/client.py +102 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/constants.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/__init__.py +68 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/condition_is_not_satisfied.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/condition_is_satisfied.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_all_items_scanned.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_all_tables_listed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_committed_transaction_cleared.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_existing_item_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_existing_item_has_been_updated.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_gsi_caught_up.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_conditionally_written.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_has_been_read.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_item_has_been_written.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_items_have_been_queried.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_in_gsi_pending.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_name_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_pending_transaction_resolved.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_read_throttling_toggled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_rolled_back_transaction_cleared.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_deletion_completed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_been_described.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_table_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_committed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_pending.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transaction_status_rolled_back.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_transactional_write_initiated.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/dynamodb_write_throttling_toggled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_did_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_existed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/gsi_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_does_not_exist_in_table.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_exists_in_table.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_is_not_present.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/item_is_present.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/items_with_different_attribute_values.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/no_transaction_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/no_transaction_is_pending.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/reads_not_throttled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/reads_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_does_not_have_pending_gsi_propagation.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_has_pending_gsi_propagation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_active_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/there_are_no_writes_pending_gsi_propagation.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/there_are_writes_pending_gsi_propagation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_committed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_not_committed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_not_rolled_back.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_pending_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transaction_is_rolled_back_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/transactions_table_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/writes_not_throttled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/given/writes_throttled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/__init__.py +43 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/all_items_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/all_tables_listed_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/deleted_tables_not_target_of_pending_transaction.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/every_table_has_valid_status.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_is_consistent_with_table.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_pending_write_count_non_negative.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/gsi_query_only_when_table_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_deleted_or_unchanged_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_does_not_exist_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_exists_and_gsi_pending_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_is_updated_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_updated_or_unchanged_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_value_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/item_written_if_condition_holds_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/items_only_in_non_deleted_tables.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/list_of_tables_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/matching_items_returned_from_gsi.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/matching_items_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/only_matching_items_returned_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/pending_transaction_references_existing_table.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/query_results_contain_item_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/reads_are_throttled_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/reads_throttled_or_unthrottled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/scan_results_contain_item_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_description_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_enters_deleting_state_then.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_creating_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_deleted_status_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_marked_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/table_metadata_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_committed_or_rolled_back_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_cleared_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_committed_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_pending_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_is_rolled_back_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_slot_is_free_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/transaction_status_always_valid.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/writes_are_throttled_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/then/writes_throttled_or_unthrottled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/__init__.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/activate_table.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/clear_committed_transaction.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/clear_rolled_back_transaction.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/commit_transaction.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/conditional_put_item.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/conditional_write_item.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/create_table.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_existing_item.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_item.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/delete_table.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/describe_table.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/get_item.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/gsi_catches_up.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/list_tables.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/propagate_gsi.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/put_item.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_gsi.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_items_by_key.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/query_table.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/resolve_pending_transaction.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/rollback_transaction.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/scan_table.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/scan_table_with_filter.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/set_throttle_reads.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/set_throttle_writes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/table_deletion_completes.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/toggle_read_throttling.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/toggle_write_throttling.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/transact_write_items.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/update_existing_item.py +37 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb/when/update_item.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/client.py +56 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/__init__.py +43 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_available_record_exists.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_eid_in_esm_status.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_eid_not_in_esm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_already_exists.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_has_been_created.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_is_enabled.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_is_not_enabled.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_esm_polled_and_invoked.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_does_not_exist.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_is_not_active_given.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_is_in_progress.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_invocation_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_mapped_function_is_active.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_mapped_function_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_available_record.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_no_record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_stream_record_produced.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_been_created_with_stream.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_no_stream.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_has_stream.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_tid_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/given/dynamodb_lambda_tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/__init__.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/change_record_available.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/dynamodb_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/esm_is_enabled.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_enabled_esm_references_active_table.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_in_progress_initiated_by_enabled_esm.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invariant_in_progress_references_active_function.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invocation_failed_record_available.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/invocation_success_record_processed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/record_being_processed.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/then/table_is_active_stream_ready.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/create_dynamodb_table_with_stream.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/create_event_source_mapping.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/deploy_lambda_function_dynamodb.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/esm_polls_and_invokes.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/lambda_invocation_fails.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/lambda_invocation_succeeds.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/dynamodb_lambda/when/table_change_produces_record.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/client.py +60 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/__init__.py +114 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/automatic_failover_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/automatic_failover_not_enabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_in_tag_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_does_not_use_redis_engine.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_already_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_creating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_already_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_available_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_part_of_rg.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_part_of_this_rg.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_restoring_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_not_snapshotting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_part_of_rg.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_part_of_this_rg.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_restoring_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_snapshotting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_is_standalone.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_slot_available_for_primary.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/cluster_uses_redis_engine.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_automatic_failover_promoted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_config_modified.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_created_from_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_deletion_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_modification_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_cluster_restore_completed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_memcached_cluster_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_pg_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_pg_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_redis_cluster_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_replica_added.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_replica_creation_completed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_config_modified.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_deletion_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_rg_modification_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_sg_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_sg_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_deletion_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_finished_creating.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_snapshot_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_standalone_cluster_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_standalone_cluster_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_tags_added.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/elasticache_tags_removed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_cluster_slot_available_for_primary.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/no_replica_cluster_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_is_not_present.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_is_present.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pg_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pgid_in_pg_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/pgid_not_in_pg_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/replica_cluster_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_does_not_have_tags.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/resource_has_tags.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_creating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_available_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rg_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rgid_in_rg_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/rgid_not_in_rg_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_is_not_present.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_is_present.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sg_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sgid_in_sg_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sgid_not_in_sg_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/sid_in_snapshot_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_belongs_to_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_does_not_belong_to_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/snapshot_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/target_cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/given/target_cluster_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/__init__.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/active_resources_have_tags.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/available_rg_has_primary.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_available_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_creating_memcached_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_creating_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_is_restoring_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/cluster_returns_to_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/memcached_clusters_not_in_rg.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/new_cluster_creating_associated_with_rg_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/parameter_group_exists_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/parameter_group_no_longer_exists_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/replica_cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/resource_remains_tagged_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/resource_tag_state_unchanged_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_and_clusters_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_and_primary_available_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_has_new_primary_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_creating_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_is_modifying_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/rg_returns_to_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_available_cluster_returns_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_creating_cluster_snapshotting_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshot_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshots_reference_redis_clusters.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/snapshotting_cluster_has_snapshot.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/subnet_group_exists_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/then/subnet_group_no_longer_exists_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/__init__.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/add_replica_to_rg.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/add_tags_to_resource.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/automatic_failover_rg.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/cluster_restore_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_cluster_from_snapshot.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_memcached_cluster.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_parameter_group.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_redis_cluster.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_replication_group.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_snapshot_from_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/create_subnet_group.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_cache_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_parameter_group.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_replication_group.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_snapshot.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/delete_subnet_group.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/modify_cache_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/modify_replication_group.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/remove_tags_from_resource.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/replica_creation_completes.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_deletion_completes.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_finishes_creating.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/rg_modification_completes.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/snapshot_deletion_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache/when/snapshot_finishes_creating.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_already_has_sns_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_exists_and_is_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_has_no_sns_notification.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_has_sns_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_is_modifying_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_is_not_modifying_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/cluster_not_exist_or_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_event_notification_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_event_published.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_cluster_modification_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_modification_event_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_modification_event_sent.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_notification_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_notification_published.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_topic_has_been_created.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/elasticache_sns_topic_has_been_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/tid_in_topic_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/given/topic_not_exist_or_not_active.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_available_no_sns.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_modifying_and_notification_published.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_modifying_but_no_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/cluster_will_publish_lifecycle_events.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/topic_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/then/topic_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_event_notification_delivered.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_event_notification_fails.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/cluster_modification_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/configure_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/create_cache_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/create_topic.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticache_sns/when/delete_topic.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/client.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/__init__.py +50 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/did_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/did_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_has_no_pending_config_change.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_has_pending_config_change.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_being_deleted_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_creating_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_deleting_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_being_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_not_processing_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_is_processing_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/domain_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_config_update_begun.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_config_update_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_created_and_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_domain_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_failed_to_write.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_indexed_document.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_lambda_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_document_indexed_in_active_index.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_config_update_requested.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_finished_deleting.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_domain_finished_processing_config_update.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_index_created_in_active_domain.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_index_deleted_from_active_domain.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_node_failure.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_replica_sync_lag.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_shards_reallocated.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_tags_added_to_domain.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/elasticsearch_seq_tags_removed_from_domain.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_is_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/index_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/tag_key_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/given/tag_key_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/__init__.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/active_index_belongs_to_non_deleted_domain.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/active_tag_belongs_to_non_deleted_domain.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/document_count_increases_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_enters_processing_recovering_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_active_with_new_config_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_creating_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/domain_is_processing_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/index_is_active_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/index_is_deleted_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/pending_config_only_on_processing_domain.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/replica_catches_up_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/shard_layout_updated_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/tags_associated_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/then/tags_removed_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/__init__.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/add_tags.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/create_elasticsearch_domain.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/create_index.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/delete_elasticsearch_domain.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/delete_index.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_deleting.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/domain_finishes_processing.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/index_document.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/node_failure.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/remove_tags.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/replica_sync_lag.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/shard_reallocation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/elasticsearch/when/update_elasticsearch_domain_config.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/client.py +65 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/constants.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/__init__.py +58 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_has_no_rules.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_has_rules.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_default.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_is_not_default.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_name_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/dlq_is_empty.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/dlq_not_empty.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_all_buses_have_been_listed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_all_rules_have_been_listed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_bus_has_been_described.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_dlq_entry_retried_or_discarded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_dlq_not_empty.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_have_been_published.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_described.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_disabled.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_rule_has_been_enabled.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_for_rule_have_been_listed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_have_been_added.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/events_targets_have_been_removed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_is_not_default.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/name_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/no_rule_associated_with_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/no_target_associated_with_rule.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_associated_with_bus.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_has_active_targets.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_has_no_active_targets.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_already_deleted_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_deleted_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_disabled_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_enabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_disabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_is_not_enabled_given.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_name_in_rule_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_name_not_in_rule_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_not_already_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rules_event_bus_does_not_match.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/rules_event_bus_matches.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_associated_with_rule.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_association_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_association_not_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_is_associated_with_rule.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/given/target_not_associated_with_rule.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/__init__.py +25 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/default_bus_cannot_be_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/dlq_never_exceeds_capacity.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/entry_removed_from_dlq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_details_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/event_bus_is_deleted_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_event_bus_has_valid_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_has_valid_pattern_type.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_has_valid_status.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/every_rule_references_existing_bus.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_event_buses_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_rules_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/list_of_targets_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/matching_rules_route_events.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/no_enabled_rule_references_deleted_bus.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_can_only_be_deleted_without_targets.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_details_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_disabled_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/rule_is_enabled_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/targets_associated_with_rule.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/then/targets_disassociated_from_rule.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/__init__.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/create_event_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/delete_event_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/delete_rule.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/describe_event_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/describe_rule.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/disable_rule.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/enable_rule.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_event_buses.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_rules.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/list_targets_by_rule.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_events.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_rule.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/put_targets.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/remove_targets.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events/when/retry_dead_letter.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/client.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/__init__.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/a_rule_is_enabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/bus_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_event_matched_and_written.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_event_matched_write_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rid_in_rule_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_created_targeting_table.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_disabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_rule_enabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_table_deletion_initiated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_tid_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/events_ddb_tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/no_rule_is_enabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_already_disabled.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_already_enabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_disabled_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_is_enabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_is_already_deleting.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/table_not_exist_or_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_deleting.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/given/target_table_is_not_deleting.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/__init__.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/event_matched_but_no_item_written.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/item_exists_and_event_matched.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_disabled_with_dynamo_target.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_is_disabled_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/rule_is_enabled_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/table_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/then/table_is_deleting_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/__init__.py +8 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_dynamo_table.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/create_rule_targeting_dynamodb.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/delete_dynamo_table.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/disable_rule.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/enable_rule.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/event_matches_rule_and_writes_item.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_dynamodb/when/event_matches_rule_but_table_deleting.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/client.py +57 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_enabled_rule_exists.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_fid_in_func_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_enabled_rule.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rid_not_in_rule_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rule_already_exists.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_bus_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_event_published_and_invoked.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_invocation_completed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_invocation_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_seq_rule_created.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_target_function_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/given/events_lambda_target_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/__init__.py +9 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_bus_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/events_lambda_invocation_is_success.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/then/rule_is_enabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/create_event_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/create_eventbridge_rule.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/deploy_lambda_function_events.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/events_lambda_invocation_completes.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/events_lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_lambda/when/put_event_triggers_invocation.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/client.py +43 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/__init__.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/available_message_exists_on_topic.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/enabled_rule_exists_targeting_topic.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/event_bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_bid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_bid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_mid_in_msg_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_rid_not_in_rule_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_bus_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_event_published.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_message_consumed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_rule_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_seq_topic_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/events_sns_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_available_message_on_topic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_enabled_rule_targeting_topic.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/rule_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/target_topic_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/target_topic_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/__init__.py +7 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/event_bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/message_available_on_topic.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/message_is_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/rule_enabled_and_targeting_topic.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/then/topic_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/consume_message_from_sns.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/create_topic.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/put_event_to_bus_routed_to_sns.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sns/when/put_rule_targeting_sns.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/client.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/available_message_exists_in_queue.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/enabled_rule_exists_targeting_queue.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/event_bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_bid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_bid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_mid_in_msg_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_qid_in_queue_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_rid_not_in_rule_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_bus_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_event_published.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_message_consumed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_queue_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/events_sqs_seq_rule_created.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_available_message_in_queue.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_enabled_rule_targeting_queue.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_existed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/rule_already_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/target_queue_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/given/target_queue_is_not_active.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/__init__.py +7 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/event_bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/message_available_in_target_queue.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/message_is_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/queue_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/then/rule_enabled_targeting_queue.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/consume_message_from_sqs.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/create_queue.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/put_event_routed_to_sqs.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_sqs/when/put_rule_targeting_sqs.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/client.py +52 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/constants.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/enabled_rule_exists_targeting_sfn.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/event_bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_bid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_bid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_eid_in_exec_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_rid_not_in_rule_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_bus_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_event_published.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_execution_completed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_execution_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_rule_created.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_seq_sm_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/events_sfn_smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/execution_is_running.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_enabled_rule_targeting_sfn.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_execution_is_running.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/rule_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/rule_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/target_sm_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/given/target_sm_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/__init__.py +9 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/event_bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_failed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_running_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/rule_enabled_targeting_sfn.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/then/sm_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/create_state_machine.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/put_event_triggers_sfn.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/put_rule_targeting_sfn.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/running_execution_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/events_stepfunctions/when/running_execution_succeeds.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/client.py +54 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/constants.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/__init__.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_chaos_has_been_enabled_or_disabled.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_route_has_been_added.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_route_has_been_removed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_has_been_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/fake_server_status_has_been_retrieved.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/no_route_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/rid_in_route_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/route_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_does_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/server_is_not_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/sid_in_server_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/sid_not_in_server_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/__init__.py +9 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/_inv_fake_every_server_has_a_valid_protocol.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/chaos_enabled_flag_updated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/operation_is_rejected.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/route_is_active_on_server.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/route_is_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_is_active_with_chaos_disabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_is_deleted_and_routes_removed.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/then/server_name_protocol_route_count_returned.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/add_route_to_fake_server.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/create_fake_server.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/delete_fake_server.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/get_status_of_fake_server.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/remove_route_from_fake_server.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/fake/when/set_chaos_enabled_for_fake_server.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/given/__init__.py +1 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/given/system_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/__init__.py +56 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_already_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_is_not_stored_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_is_stored_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/archive_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_retrieval_initiated.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_archive_uploaded.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_empty_vault_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_inventory_retrieval_initiated.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_completed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_job_output_retrieved.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_aborted.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_completed.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_multipart_upload_initiated.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_part_uploaded.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_vault_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/glacier_seq_vault_inventory_refreshed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/jid_in_job_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_in_progress_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_not_in_progress_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_not_succeeded_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_is_succeeded_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_output_is_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_output_is_not_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/job_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/part_already_uploaded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/part_not_already_uploaded.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_already_exists.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_exists.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_id_in_upload_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_in_upload_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_is_in_progress_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_is_not_in_progress_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/upload_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_archives.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_in_progress_jobs.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_no_archives.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_has_no_in_progress_jobs.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_in_vault_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/given/vault_not_in_vault_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/__init__.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_is_stored_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/archive_retrieval_job_has_archive_id.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/in_progress_job_references_active_vault.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_failed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_in_progress_for_archive_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_in_progress_for_vault_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_output_marked_retrieved_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/job_output_only_for_succeeded_jobs.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/part_is_recorded_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/stored_archives_belong_to_active_vault.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_aborted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_completed_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/upload_is_in_progress_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_archive_count_non_negative.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_inventory_marked_fresh_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/then/vault_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/__init__.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/abort_multipart_upload.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/complete_multipart_upload.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/create_vault.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/delete_archive.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/delete_vault.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/get_job_output.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_archive_retrieval.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_inventory_retrieval.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/initiate_multipart_upload.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/job_completes_successfully.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/job_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/refresh_vault_inventory.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/upload_archive.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier/when/upload_multipart_part.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/configured_topic_is_not_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_job_is_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_job_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_no_job_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_no_job_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_jid_in_job_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_no_message_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_completed_notification_failed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_completed_notification_published.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_job_initiated.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_notification_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_topic_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_topic_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_seq_vault_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_topic_not_exist_or_not_active.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_vid_in_vault_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/glacier_sns_vid_not_in_vault_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_already_has_sns_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_has_no_sns_notification.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_has_sns_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/given/vault_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_is_in_progress_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_succeeded_no_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_job_succeeded_notification_published.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_sns_topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/glacier_sns_topic_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/vault_exists_no_notification.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/then/vault_will_publish_notifications.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/configure_sns_notification_on_vault.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/create_glacier_vault.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/create_sns_topic_glacier.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/delete_sns_topic_glacier.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/glacier_job_completes_and_notifies.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/glacier_job_completes_notification_fails.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/glacier_sns/when/initiate_glacier_job.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/conftest.py +1 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/iam_auth/test_scenarios.py +1 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/init/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/init/conftest.py +1 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/init/test_scenarios.py +1 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/client.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/__init__.py +93 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/active_executions_at_or_above_concurrency_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/active_executions_below_concurrency_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_empty.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_has_function_assigned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_no_function_assigned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/async_slot_occupied.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/esm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_active_execs.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_has_policy.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_active_execution_tracking.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_active_executions_tracked.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_concurrency_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_positive_concurrency_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_resource_policy.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_resource_policy_entry.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_does_not_have_unreserved_concurrency.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_execution_tracking.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_executions.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_active_executions_tracked.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_at_least_one_active_execution.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_concurrency_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_no_active_executions.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_no_active_executions_tracking.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_positive_concurrency_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_resource_policy.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_resource_policy_entry.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_has_unreserved_concurrency.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_deleted_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_deleting_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_failed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_failed_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_not_pending_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_is_pending_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_active_function_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_retried.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_async_succeeded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_concurrency_set.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_disabled_esm_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_enabled_esm_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_disabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_finished_creating.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_esm_finished_deleting.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_failed_function_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_code_updated.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_config_updated.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_function_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_async.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_sync.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_invoked_sync_concurrency.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_pending_resolved.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_permission_added.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_permission_removed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_sync_completed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_tag_added.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/lambda_seq_tag_removed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_creating.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_deleting.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_disabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_creating.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_deleting.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_disabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mapping_is_not_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mid_in_mapping_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/mid_not_in_mapping_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/no_async_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_count_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_count_not_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_tracking_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/retry_tracking_not_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/slot_in_async_func.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_does_not_exist_on_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_exists_on_function.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_is_not_set.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/given/tag_is_set.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/__init__.py +37 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_async_retry_count_never_exceeds_two.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/_inv_lambda_every_function_has_a_valid_status.py +10 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_esm_references_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_decreases.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_increases.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/active_execution_count_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_retry_count_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_slot_freed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/async_slots_reference_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/esm_valid_status_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/event_dropped_and_slot_freed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/event_queued_in_async_slot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_becomes_active_or_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_configuration_updated.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_enters_deleting_state.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_concurrency_limit.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_resource_policy_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_has_tag_set.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_is_deleted_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_is_in_pending_state.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_resource_policy_cleared.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_returns_to_pending.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/function_valid_status_invariant.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_enters_deleting_state.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_in_creating_state.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_deleted_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_disabled_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_enabled_and_active_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/mapping_is_enabled_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/no_function_in_deleting_has_executions.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/retry_count_increases.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/then/tag_cleared_from_function.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/activate_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/add_permission.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/create_event_source_mapping.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/create_function.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_disabled_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_enabled_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_failed_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/delete_function.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/disable_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/enable_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_create_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_delete_esm.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_delete_function.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/finish_invoke_function_sync.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_async.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_sync.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/invoke_function_sync_with_concurrency.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_retry.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/process_async_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/remove_permission.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/set_reserved_concurrency.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/tag_function.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/untag_function.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/update_function_code.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda/when/update_function_configuration.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_invocation_failed.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_invocation_succeeded.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_pool_created.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/lambda_cognito_seq_pool_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pid_in_pool_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pid_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_active_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_already_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/given/pool_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/pool_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/then/pool_is_deleted_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/create_cognito_user_pool.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/delete_cognito_user_pool.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invocation_fails_pool_deleted.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invocation_succeeds_cognito.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_cognito/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_not_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_is_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/document_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_cluster_stopped.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_invocation_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/lambda_docdb_seq_invocation_succeeded.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_document_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_available_ready_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/cluster_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/document_exists_invocation_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/invocation_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/create_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/invocation_fails_cluster_stopped.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/lambda_writes_document.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/start_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_docdb/when/stop_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/client.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/__init__.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_invocation_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_invocation_succeeded.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_item_written.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/lambda_dynamodb_seq_table_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/no_item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/given/tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/item_exists_in_table.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/then/table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/create_dynamodb_table.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_dynamodb/when/lambda_writes_item.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cached_entry_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cached_entry_in_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/key_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/kid_in_key_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_cluster_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_entry_evicted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_invocation_cache_miss.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_invocation_read_succeeded.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/lambda_elasticache_seq_value_written.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entries_in_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entry_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_cached_entry_exists_in_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/given/no_key_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cache_entry_cached.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cache_entry_evicted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/cache_evict.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/create_elasticache_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invocation_fails_cache_miss.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invocation_succeeds_cache_hit.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticache/when/lambda_writes_cache.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/did_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/did_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/document_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_already_exists.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_available_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_not_available_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_not_processing_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_is_processing_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_update_begun.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_domain_update_completed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_invocation_failed.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/lambda_elasticsearch_seq_invocation_succeeded.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_document_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/document_exists_invocation_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_available_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/domain_is_processing_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/invocation_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/create_elasticsearch_domain.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/domain_update_begins.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/domain_update_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/invocation_fails_domain_processing.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_elasticsearch/when/lambda_indexes_document.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_already_deleted.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/bus_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/busid_in_bus_status.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_bus_created.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_bus_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_function_deployed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_function_invoked.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_invocation_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/lambda_events_seq_invocation_succeeded.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/bus_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/bus_is_deleted_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/event_published_invocation_success.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/create_event_bus.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/delete_event_bus.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/invocation_fails_bus_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_events/when/publish_event_task.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/__init__.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/archive_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/glacier_vault_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/glacier_vault_has_been_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_failed_upload_vault_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/lambda_function_uploaded_archive_succeeded_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_archive_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists_not_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_exists_quoted.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_already_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vault_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vid_in_vault_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/given/vid_not_in_vault_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/archive_exists_invocation_success.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/vault_exists_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/then/vault_is_deleted_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/create_glacier_vault.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/delete_glacier_vault.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/invocation_fails_vault_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_glacier/when/lambda_uploads_archive.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/client.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/__init__.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_func_already_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_active_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_already_deleted.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_is_not_deleted_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_lambda_function_has_been_deployed_seq.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/callee_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_failed_to_invoke_callee_deleted_seq.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_func_already_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_function_has_been_deployed_seq.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/caller_lambda_invoked_callee_succeeded_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/cfid_in_caller_status.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_in_callee_status.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_not_in_callee_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/fid_not_in_caller_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/invocation_is_in_progress.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/callee_func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/callee_is_deleted_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/caller_func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/caller_invocation_fails_callee_deleted.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/caller_invokes_callee_succeeds.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/delete_callee.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/deploy_callee.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/deploy_caller.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_lambda/when/invoke_caller.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/client.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_not_updating_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_is_updating_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_failed_write_cluster_updating_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/lambda_written_record_to_cluster_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_update_has_begun_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/memorydb_cluster_update_has_completed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/no_record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/given/record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/cluster_is_updating_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/invocation_failed_connection_refused.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/then/record_exists_invocation_success.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/create_memorydb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/invocation_fails_cluster_updating.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/lambda_writes_record.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/memorydb_cluster_update_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_memorydb/when/memorydb_cluster_update_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_not_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_is_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_executed_graph_query_succeeded_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_failed_connect_cluster_stopped_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_started_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_has_been_stopped_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_not_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/neptune_cluster_is_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_available_ready_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/cluster_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/create_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/invocation_fails_cluster_stopped.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/lambda_executes_graph_query.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/start_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_neptune/when/stop_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/did_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/did_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/document_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_already_exists.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_is_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_domain_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_domain_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/index_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_indexed_document_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_invocation_completed_successfully_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/lambda_invocation_has_failed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_document_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/opensearch_domain_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/given/opensearch_index_has_been_created_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/__init__.py +10 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/document_is_indexed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/domain_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/index_exists_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/create_opensearch_domain.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/create_opensearch_index.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_indexes_document.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_opensearch/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_failing_over_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/db_instance_is_not_failing_over_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/did_in_db_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/did_not_in_db_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_failing_over_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_is_not_failing_over_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/instance_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_executed_sql_succeeded_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_failed_to_connect_failover_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_database_instance_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_failover_has_completed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/given/rds_multi_az_failover_has_begun_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/instance_is_failing_over_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/create_rds_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/invocation_fails_db_unavailable.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/lambda_executes_sql.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/rds_failover_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_rds/when/rds_failover_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/__init__.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_invocation_completed_successfully_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_invocation_has_failed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/lambda_written_object_to_bucket_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/given/s3_bucket_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/bucket_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/then/object_exists_in_bucket.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/create_s3_bucket.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3api/when/lambda_writes_object.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/client.py +50 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/__init__.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_a_table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bucket_already_exists.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_failed_write_table_deleting_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_fid_in_func_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_invocation_is_in_progress.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_no_table_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_record_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_already_exists.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_is_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_bucket_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_deletion_has_been_initiated_seq.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_exists.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_has_been_created_seq.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_active_given.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_already_deleting_given.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_deleting_given.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_is_not_deleting_given.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_tid_in_table_status.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/given/lambda_s3tables_written_record_succeeded_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_bucket_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_record_exists_invocation_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/then/lambda_s3tables_table_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_create_table.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_create_table_bucket.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_deploy_function.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_function_fails_write_table_deleting.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_function_writes_record_succeeds.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_initiate_table_deletion.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_s3tables/when/lambda_s3tables_invoke_function.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/__init__.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_failed_secret_pending_deletion_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/lambda_read_active_secret_succeeded_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_exists_and_is_active_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_has_been_scheduled_for_deletion_seq.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_not_active_given.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_not_pending_deletion.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_is_pending_deletion.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/secret_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/sid_in_secret_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/given/sid_not_in_secret_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/secret_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/then/secret_is_pending_deletion_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/create_secret.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invocation_fails_secret_pending.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invocation_succeeds_secret.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_secretsmanager/when/schedule_secret_deletion.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/client.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_invocation_completed_successfully_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_invocation_has_failed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/lambda_published_message_to_topic_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/sns_topic_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/__init__.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/every_in_progress_invocation_references_active_function_sns.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/message_published_to_topic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/operation_is_rejected_lambda_sns.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/publishing_requires_active_topic.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/then/topic_is_active_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/create_sns_topic.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sns/when/lambda_publishes_to_topic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/client.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/__init__.py +53 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/available_message_in_mapped_queue.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/dlq_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/eid_in_esm_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/eid_not_in_esm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_has_polled_queue_and_invoked_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_is_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_is_not_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/esm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_esm_has_been_created_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_function_has_been_deployed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_invocation_completed_successfully_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/lambda_invocation_has_failed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/mapped_function_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/mapped_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/message_has_arrived_in_sqs_queue_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_available_message_in_mapped_queue.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/qid_in_queue_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_has_dlq.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/source_queue_no_dlq.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/sqs_queue_configured_with_dlq_seq.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/given/sqs_queue_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/__init__.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/esm_is_enabled_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_enabled_esm_references_active_queue.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_in_progress_invocation_initiated_by_enabled_esm.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_in_progress_invocation_references_active_function.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/every_message_belongs_to_active_queue.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/invocation_success_message_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_available_for_processing.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_in_flight_invocation_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/message_reprocessing_or_dlq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/operation_is_rejected_lambda_sqs.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/queue_is_active_no_dlq.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/then/redrive_configured.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/__init__.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/configure_redrive.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/create_event_source_mapping.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/create_sqs_queue.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/deploy_lambda_function.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/esm_poll_and_invoke.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs/when/message_arrives.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/__init__.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_invocation_completed_successfully_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_invocation_has_failed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/lambda_sent_message_to_sqs_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_existed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/given/sqs_queue_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_failed_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/message_available_in_queue.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/operation_is_rejected_lambda_sqs_producer.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/then/queue_is_active_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/create_sqs_queue.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_invocation_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_invocation_succeeds.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_sqs_producer/when/lambda_sends_message.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_failed_parameter_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/lambda_read_parameter_succeeded_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_exists_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_is_not_deleted_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/param_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/pid_in_param_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/pid_not_in_param_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/ssm_parameter_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/given/ssm_parameter_has_been_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/__init__.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/every_in_progress_invocation_references_active_function_ssm.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/every_successful_invocation_recorded_parameter.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_failed_param_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/invocation_is_success_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/operation_is_rejected_lambda_ssm.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/param_exists_and_readable.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/then/param_is_deleted_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/create_parameter.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/delete_parameter.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invocation_fails_param_not_found.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invocation_reads_param_succeeds.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_ssm/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/eid_in_exec_status.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/execution_is_running_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/fid_in_func_status.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/func_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/invocation_is_in_progress.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_failed_to_start_execution_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_function_has_been_deployed_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_function_has_been_invoked_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/lambda_started_execution_succeeded_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/running_execution_completed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sfn_state_machine_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sfn_state_machine_has_been_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_already_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/sm_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/__init__.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/every_in_progress_invocation_references_active_function_sfn.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/every_running_execution_references_existing_sm.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/execution_running_invocation_success.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/func_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/invocation_failed_sm_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/invocation_is_in_progress_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/operation_is_rejected_lambda_stepfunctions.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/then/sm_is_deleted_then.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/delete_state_machine.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/deploy_lambda_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/execution_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invocation_fails_sm_deleted.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invocation_starts_execution.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/lambda_stepfunctions/when/invoke_function.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/client.py +38 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/__init__.py +105 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/acl_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/aid_in_acl_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/aid_not_in_acl_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_in_tag_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_creating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_available_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_restoring_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_not_snapshotting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_restoring_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_is_snapshotting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_associated_with_cluster_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_update_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_acl_updated_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_configuration_updated_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_been_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_been_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_has_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_restore_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_restored_from_snapshot_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_cluster_update_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_shard_failover_triggered_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_created_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_deleted_seq.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_snapshot_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_tags_added_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_tags_removed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_added_to_acl_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_removed_from_acl_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_update_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/memorydb_user_updated_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/multi_az_enabled_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/multi_az_not_enabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_does_not_have_tag_entry.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_does_not_have_tag_entry_guard.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_has_tag_entry.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/resource_has_tag_entry_guard.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/sid_in_snapshot_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_belongs_to_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_does_not_belong_to_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/snapshot_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/target_cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/target_cluster_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/uid_in_user_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/uid_not_in_user_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_already_member_of_acl.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_member_of_acl.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_already_member_of_acl.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_member_of_acl.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_membership_entry_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_membership_entry_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/given/user_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_creating_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_deleted_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_deleting_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/acl_returns_to_active_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/active_cluster_has_write_durability.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/active_resources_have_tags.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_available_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_creating_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_linked_to_acl_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_remains_available_after_failover_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/cluster_returns_to_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/no_deleting_acl_associated_with_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/no_deleting_user_in_acl.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/resource_remains_tagged_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/resource_tag_state_unchanged_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/restored_cluster_is_restoring_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_available_cluster_returns_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_creating_cluster_snapshotting_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshot_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/snapshotting_cluster_has_snapshot.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_creating_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_member_of_acl_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_not_member_of_acl_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/then/user_returns_to_active_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_deletion_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_finishes_creating.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/acl_update_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/add_tags.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/add_user_to_acl.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/associate_acl_with_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_restore_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/cluster_update_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_acl.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_snapshot.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/create_user.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_acl.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_cluster.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_snapshot.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/delete_user.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/remove_tags.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/remove_user_from_acl.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/restore_cluster.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/shard_failover.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/snapshot_deletion_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/snapshot_finishes_creating.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_acl.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/update_user.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_deletion_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_finishes_creating.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/memorydb/when/user_update_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/client.py +67 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/__init__.py +95 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_does_not_exist.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_has_no_non_deleted_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_has_non_deleted_instances.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_creating_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_deleting_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_available_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_restoring_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_starting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_stopped_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_not_stopping_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_restoring_given.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_starting_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_stopped_given.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_is_stopping_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/iid_in_instance_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_belongs_to_cluster.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_does_not_belong_to_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_already_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_creating_given.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_deleting_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_already_the_primary.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_primary_of_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_rebooting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_not_the_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_primary_of_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_rebooting_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_is_the_primary.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/instance_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/multi_az_enabled_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/multi_az_not_enabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_automated_backup_window_ran_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_cluster_restore_completed_seq.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_cluster_restored_from_snapshot_seq.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_configuration_modified_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_creation_failed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_deleted_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_modification_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_start_completed_seq.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_stop_completed_seq.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_cluster_stopped_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_configuration_modified_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_created_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_deleted_seq.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_modification_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_reboot_completed_seq.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_database_instance_rebooted_seq.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_multi_az_failover_triggered_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_replica_promoted_to_primary_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_created_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_deleted_seq.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_deletion_completed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_snapshot_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/neptune_stopped_cluster_started_seq.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/new_primary_instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/new_primary_instance_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/no_snapshot_slot_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/sid_in_snapshot_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_creating_given.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_deleting_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/snapshot_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/target_cluster_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/given/target_cluster_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/backing_up_cluster_has_snapshot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_and_instances_available_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_and_instances_stopped_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_enters_modifying_for_primary_promotion_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_available_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_creating_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_failed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_modifying_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_starting_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_is_stopping_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_returns_to_available_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/cluster_returns_to_available_with_new_primary_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/deleted_cluster_has_no_available_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_cluster_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_instance_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/every_snapshot_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/failed_cluster_has_no_available_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_available_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_creating_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_deleted_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_modifying_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_is_rebooting_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/instance_returns_to_available_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/restored_cluster_is_restoring_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_available_cluster_returns_then.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_creating_cluster_backing_up_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_creating_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/snapshot_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/stopped_cluster_has_no_available_instances.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/then/stopped_cluster_instances_not_modifying.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/__init__.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/automated_backup_window.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_creation_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_restore_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_start_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/cluster_stop_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_cluster.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_cluster_snapshot.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/create_db_instance.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_cluster.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_cluster_snapshot.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/delete_db_instance.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/instance_reboot_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/modify_db_cluster.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/modify_db_instance.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/multi_az_failover.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/promote_replica_to_primary.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/reboot_db_instance.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/restore_db_cluster_from_snapshot.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/snapshot_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/snapshot_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/start_db_cluster.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune/when/stop_db_cluster.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/client.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cid_in_cluster_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_not_stopping_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_is_stopping_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/eventbridge_bus_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/eventbridge_bus_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_created_and_available_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_finished_stopping_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_stopped_event_delivered_seq.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/neptune_cluster_stopped_event_failed_seq.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_stopping_and_event_delivered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/cluster_stopping_but_no_event.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/then/every_neptune_cluster_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_complete.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_event_delivered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/cluster_stop_event_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/create_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/neptune_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/client.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/__init__.py +82 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/associated_inbound_connection_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/associated_inbound_connection_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_in_inbound_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_in_outbound_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/conn_not_in_outbound_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/connection_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/connection_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_being_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_creating_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_deleting_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_being_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_not_processing_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_is_processing_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/domain_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_already_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_already_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_not_pending_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_is_pending_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_not_already_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/inbound_connection_not_already_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_and_remote_domains_different.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_and_remote_domains_same.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/local_domain_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_already_prepared.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_is_not_ready.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_is_ready.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/new_cluster_not_prepared_yet.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_blue_green_deployment_completed_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_blue_green_new_cluster_ready_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_domain_configuration_update_requested_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_accepted_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_deleted_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_finished_deleting_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_inbound_connection_rejected_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_created_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_deleted_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_outbound_connection_finished_deleting_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_created_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_deleted_seq.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_finished_creating_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_search_domain_finished_deleting_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_shards_rebalanced_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_tags_added_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_tags_removed_seq.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/opensearch_traffic_swapped_blue_green_seq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_already_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_already_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_not_already_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/outbound_connection_not_already_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/remote_domain_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/tag_key_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/tag_key_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_already_swapped.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_has_been_swapped.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_not_been_swapped.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/given/traffic_not_been_swapped_yet.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/__init__.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/active_outbound_no_rejected_inbound.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/both_connections_active_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/both_connections_rejected_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/connection_is_pending_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_has_new_cluster_prepared_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_active_with_new_config_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_creating_then.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_is_processing_blue_green_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/domain_serving_new_cluster_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/inbound_connection_deleted_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/inbound_connection_deleting_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/instance_count_updated_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/no_active_connection_references_deleted_domain.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/outbound_and_inbound_deleted_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/outbound_connection_deleting_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/pending_config_only_on_processing_domain.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/tags_associated_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/tags_removed_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/then/traffic_swap_requires_new_cluster.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/__init__.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/accept_inbound_connection.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/add_tags.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_complete.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_new_cluster_ready.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/blue_green_swap_traffic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/create_domain.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/create_outbound_connection.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_domain.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_inbound_connection.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/delete_outbound_connection.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/domain_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/domain_finishes_deleting.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/inbound_connection_finishes_deleting.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/outbound_connection_finishes_deleting.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/reject_inbound_connection.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/remove_tags.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/shard_rebalancing.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/opensearch/when/update_domain_config.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/client.py +103 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/__init__.py +54 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_policy_has_been_attached_to_a_target.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_policy_has_been_detached_from_a_target.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/a_service_control_policy_has_been_created.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/acc_id_in_node_status.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_does_not_exist_or_not_active.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_existed_under_ou.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_existed_with_tags.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_exists_and_active.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/account_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_account_has_been_created_in_the_org.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_account_has_been_moved_to_a_new_parent.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_organization_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_ou_has_been_created_under_a_parent.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/an_ou_has_been_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/destination_parent_active.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/destination_parent_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/multiple_ous_existed_under_root.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/node_id_in_node_status.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_1_in_org_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_1_not_in_org_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/org_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_does_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_exists_and_active.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_attached_policies.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_child_accounts.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_child_ous.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_attached_policies.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_child_accounts.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_has_no_child_ous.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_id_in_node_status.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/ou_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/parent_does_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/parent_exists_and_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/pol_id_in_policy_status.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/pol_id_target_id_in_policy_attached.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_already_attached.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_attached_to_target.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_does_not_exist_or_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_exists_and_active.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_already_attached.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/policy_not_attached_to_target.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/resource_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/resource_exists.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/source_parent_does_not_match.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/source_parent_matches.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/target_does_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/given/target_exists_and_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/__init__.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/_inv_organizations_every_active_account_has_an_active_parent.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_active_under_root.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_children_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/account_under_new_parent.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/empty_tag_list_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/no_active_node_child_of_deleted_ou.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/organization_and_root_exist.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_children_returned.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_is_active.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/ou_is_deleted.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_is_active.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_is_attached_to_target.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/policy_no_longer_attached_to_target.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/resource_tags_set.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/root_active_when_org_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/then/tags_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/__init__.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/attach_policy.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_account.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_organization.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_organizational_unit.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/create_policy.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/delete_organizational_unit.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/detach_policy.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_account_type.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_invalid_type.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_children_ou_type.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_tags_for_resource_with_account_id.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/list_tags_for_resource_with_unknown_id.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/move_account.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/organizations/when/tag_resource.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/client.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/__init__.py +57 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_configuration_has_been_modified.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_deletion_has_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_deleted_with_final_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_deleted_without_final_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_rebooted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_been_restored_from_a_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_modification_has_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_reboot_has_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_instance_restore_from_snapshot_has_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_deletion_has_completed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_been_created_from_an_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_database_snapshot_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_multi_az_failover_has_been_triggered.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/a_tag_has_been_applied_to_a_database_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/an_automated_backup_has_run.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/db_instance_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/iid_in_instance_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/iid_not_in_instance_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_does_not_have_multi_az.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_has_multi_az.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_available_or_failed_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_backing_up_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_creating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_modifying_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_neither_available_nor_failed_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_available_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_backing_up_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_modifying_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_rebooting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_not_restoring_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_rebooting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/instance_is_restoring_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/multi_az_has_been_enabled.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/no_snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/sid_in_snapshot_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_creating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/snapshot_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/target_instance_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/given/target_instance_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/__init__.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/backing_up_instance_has_snapshot.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/every_db_instance_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/every_db_snapshot_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_configured_for_multi_az_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_deleting_snapshot_creating_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_enters_modifying_during_promotion_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_available_or_failed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_creating_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_is_rebooting_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_returns_to_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/instance_tag_state_unchanged_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/restored_instance_is_restoring_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_available_instance_returns_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_creating_and_instance_backing_up_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_creating_instance_backing_up_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/then/snapshot_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/__init__.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/automated_backup.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/create_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/create_db_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_instance_skip_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_instance_with_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/delete_db_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/enable_multi_az.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_deletion_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_modification_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_reboot_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/instance_restore_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/modify_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/multi_az_failover.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/reboot_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/restore_db_instance_from_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/snapshot_deletion_completes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/snapshot_finishes_creating.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds/when/tag_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_not_stopping_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_is_stopping_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/db_instance_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_db_instance_created_and_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_db_instance_finished_stopping.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_dbid_in_db_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_dbid_not_in_db_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_event_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_events_event_bus_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_instance_stopped_event_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/given/rds_instance_stopped_event_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_stopping_and_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/then/db_instance_stopping_but_no_event.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/create_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_complete.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_event_delivered.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/db_stop_event_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/client.py +51 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_already_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_configured_with_iam_role.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_exists_and_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_has_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_has_no_integration.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_is_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_is_not_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_db_not_exist_or_not_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_dbid_in_db_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_dbid_not_in_db_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_fid_in_func_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_already_deleted.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_function_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_lambda_function_is_not_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_lambda_rds_db_instance_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_stored_proc_failed_function_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/given/rds_stored_proc_invoked_lambda_succeeded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/db_instance_available_no_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/function_is_deleted_procs_fail.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/invocation_failed_function_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/rds_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/rds_lambda_invocation_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/then/stored_procs_can_invoke.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/configure_rds_lambda_integration.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/create_rds_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/delete_lambda_function_rds.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/deploy_lambda_function_rds.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/stored_proc_fails_function_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/rds_lambda/when/stored_proc_invokes_lambda.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/client.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/__init__.py +63 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_bucket_has_been_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_lifecycle_rule_has_expired_an_object.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_aborted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_completed.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_multipart_upload_has_been_initiated.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/a_part_has_been_uploaded_for_a_multipart_upload.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_copied.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_deleted_from_a_bucket.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_retrieved_from_a_bucket.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/an_object_has_been_uploaded_to_a_bucket.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bname_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bname_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_does_not_exist.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_empty.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_not_active_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_is_not_empty.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/bucket_not_already_exist.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_does_not_exist.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/destination_bucket_is_not_active_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/lifecycle_policy_has_expiry.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_does_not_exist_in_bucket.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_exists_in_bucket.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_is_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_metadata_has_been_retrieved.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/object_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/objects_in_a_bucket_have_been_listed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_does_not_exist.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_bucket_is_not_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_is_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/source_object_is_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/src_bname_in_bucket_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/the_list_of_buckets_has_been_retrieved.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_exists.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_has_at_least_one_part.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_has_no_parts.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_in_progress_with_part.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_is_in_progress_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_is_not_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/upload_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_has_been_configured_on_a_bucket.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_disabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_enabled.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_not_disabled.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/given/versioning_is_not_enabled.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/__init__.py +35 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/all_buckets_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/available_buckets_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_active_with_versioning_disabled.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_is_deleted_status_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_versioning_enabled_or_suspended_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/bucket_will_be_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/copy_succeeds_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/deleting_bucket_requires_empty.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_bucket_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_bucket_versioning_state_is_valid.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/every_multipart_upload_has_valid_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/list_of_objects_returned_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_data_is_returned_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_deleted_by_lifecycle_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_exists_in_bucket_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_exists_in_destination_bucket_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_expired_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_deleted_status_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_deleted_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_is_returned_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_listing_returned_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/object_metadata_returned_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/operation_is_rejected.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/part_uploaded_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_aborted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_completed_assembled_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_completed_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_has_at_least_one_part_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/upload_in_progress_no_parts_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/versioning_is_enabled_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/then/versioning_is_suspended_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/abort_multipart_upload.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/abort_multipart_upload_old.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/complete_multipart_upload.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/complete_multipart_upload_old.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/copy_object.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/copy_object_old.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/create_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/create_multipart_upload.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_object.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/delete_object_old.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/get_object.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/get_object_old.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/head_object.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/head_object_old.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/lifecycle_expire_object.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/lifecycle_expire_object_old.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_buckets.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_buckets_old.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_objects_v2.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/list_objects_v2_old.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_bucket_versioning.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_bucket_versioning_old.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/put_object.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/upload_part.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api/when/upload_part_old.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_already_has_eventbridge_notification.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_has_eventbridge_notification.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_has_no_eventbridge_notification.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_is_not_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bucket_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/bus_not_exist_or_not_active.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/object_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_event_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_event_bus_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_eventbridge_notifications_enabled.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_object_uploaded_event_delivered.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_object_uploaded_event_failed.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/s3api_events_s3_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/given/target_bus_is_not_deleted.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bucket_active_no_eventbridge.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bucket_will_send_events.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/object_exists_and_event_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/then/object_exists_but_no_event.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/create_s3_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/enable_eventbridge_notification.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/put_object_event_fails.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_events/when/put_object_with_event.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/client.py +45 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/__init__.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_already_has_notification.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_has_no_notification.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_has_notification.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_is_not_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_completed_successfully.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_has_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_is_in_progress.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_invocation_slot_available.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_configured.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_target_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_notification_target_not_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_object_put_invoked_lambda.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/given/s3api_lambda_s3_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/bucket_active_no_event_notification.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/bucket_will_invoke_function.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/object_exists_invocation_in_progress.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_invocation_is_failed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/then/s3api_lambda_invocation_is_success.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/configure_s3_notification_lambda.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/create_s3_bucket_lambda.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/deploy_lambda_function_s3api.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/put_object_and_invoke_lambda.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/s3api_lambda_invocation_completes.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_lambda/when/s3api_lambda_invocation_fails.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_already_has_notification.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_has_no_notification.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_has_notification.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_is_not_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/bucket_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/no_message_slot_available.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_notification_config_added.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_object_uploaded_notification_failed.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_object_uploaded_notification_published.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_s3_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_sns_topic_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/s3api_sns_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_active.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_deleted.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/target_topic_is_not_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/given/topic_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/bucket_active_no_notification.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/bucket_will_publish_notifications.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/object_exists_and_notification_published.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/object_exists_but_no_notification.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/then/topic_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/add_sns_notification_config.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/create_s3_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/create_sns_topic.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/delete_sns_topic.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/put_object_notification_fails.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sns/when/put_object_with_sns_notification.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_already_has_notification.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_has_no_notification.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_has_notification.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_is_not_active_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/bucket_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/no_message_slot_available.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_is_already_deleted.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/queue_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_bid_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_object_uploaded_notification_delivered.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_object_uploaded_notification_failed.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_qid_in_queue_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_s3_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_notification_config_added.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_queue_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/s3api_sqs_sqs_queue_has_been_deleted.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_deleted.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/given/target_queue_is_not_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/bucket_active_no_notification.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/bucket_will_send_notifications.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/object_exists_and_notification_queued.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/object_exists_but_no_notification.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/queue_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/then/queue_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/add_sqs_notification_config.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/create_s3_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/create_sqs_queue.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/delete_sqs_queue.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/put_object_notification_fails.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3api_sqs/when/put_object_with_sqs_notification.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/client.py +56 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/__init__.py +70 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bname_in_bucket_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bname_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_has_active_namespaces.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_has_no_active_namespaces.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_creating_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_deleting_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/compaction_enabled_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/compaction_not_enabled_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_has_active_tables.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_has_no_active_tables.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_deleting_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_not_active_given.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/namespace_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/ns_key_in_ns_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_been_deleted.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_namespace_has_finished_being_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_policy_has_been_attached.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_snapshot_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_been_created.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_been_deleted.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_finished_being_deleted.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_bucket_has_finished_creating.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_been_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_finished_being_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_table_has_finished_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_tables_policy_has_been_deleted.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_a_tables_schema_has_been_evolved.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_an_expired_snapshot_has_been_removed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_compaction_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_compaction_has_finished.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/s3tables_maintenance_configuration_has_been_applied.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_already_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_is_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_is_not_active_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/snapshot_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_does_not_have_policy.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_more_than_one_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_one_or_fewer_snapshots.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_has_policy.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_creating_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_deleting_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_in_maintenance_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_active_given.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_creating_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_is_not_in_maintenance_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/given/tkey_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/__init__.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_enters_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_active_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_creating_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/bucket_is_deleted_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/compaction_is_enabled_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/deleting_bucket_has_no_active_namespaces.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/deleting_namespace_has_no_active_tables.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_enters_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_is_active_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/namespace_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/operation_is_rejected_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/schema_version_at_least_one.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/schema_version_incremented_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_count_non_negative.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_is_active_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/snapshot_is_deleted_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_enters_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_enters_maintenance_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_has_no_policy_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_has_policy_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_active_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_creating_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_is_deleted_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/then/table_returns_to_active_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/__init__.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_namespace.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_table.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/create_table_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_namespace.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table_bucket.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/delete_table_policy.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/evolve_schema.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/expire_snapshot.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/finish_compaction.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/namespace_finishes_deleting.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/put_table_maintenance_configuration.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/put_table_policy.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/start_compaction.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_bucket_finishes_creating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_bucket_finishes_deleting.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_finishes_creating.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/s3tables/when/table_finishes_deleting.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/client.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/__init__.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/recovery_window_not_open_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/recovery_window_open_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_deleted_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_is_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secret_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_deleted_secret_has_been_restored.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_a_secret_has_been_described.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_all_secrets_have_been_listed.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_automatic_rotation_event_has_occurred.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_current_value_has_been_retrieved.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_metadata_has_been_updated.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_new_value_has_been_stored.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_recovery_window_has_expired.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_sname_in_secret_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_sname_not_in_secret_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_tags_have_been_added.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/given/secretsmanager_tags_have_been_removed.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/__init__.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/all_secret_names_unique.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/all_version_ids_unique.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/at_most_one_current_version.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/at_most_one_previous_version.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/current_secret_value_returned.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/deleted_secret_closed_window_not_restorable.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_active_secret_has_current_version.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_active_secret_has_current_version_quoted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/every_deleted_secret_recovery_window_open.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/list_of_secrets_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/new_version_created.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_cannot_be_restored.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_has_new_version.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_active_again.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_active_with_initial_version.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_is_deleted_and_window_open.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_metadata_returned.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/secret_metadata_updated.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/specified_tags_associated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/then/specified_tags_disassociated.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/__init__.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/create_secret.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/delete_secret.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/describe_secret.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/get_secret_value.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/list_secrets.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/put_secret_value.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/recovery_window_expires.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/restore_secret.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/rotation_event.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/tag_resource.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/untag_resource.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager/when/update_secret.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/client.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/__init__.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/bus_not_exist_or_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secret_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_event_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_event_bus_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_created_event_delivered.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_created_event_failed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_deleted_event_delivered.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_secret_rotated_event_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_sid_in_secret_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/given/secretsmanager_events_sid_not_in_secret_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_and_created_event_delivered.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_but_no_event.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_active_with_new_version_and_rotated_event.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/then/secret_pending_deletion_and_deleted_event.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_secret_event_delivered.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/create_secret_event_fails.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/delete_secret_event_delivered.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_events/when/rotate_secret_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/client.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/__init__.py +36 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_a_rotation_has_been_triggered.py +11 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_fid_in_func_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_already_deleted.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_function_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_invocation_is_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_not_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_function_succeeded.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_rotation_has_been_configured.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_already_has_rotation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_exists_and_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_has_no_rotation.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_has_rotation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_secret_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_sid_in_secret_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_sid_not_in_secret_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/given/sm_lambda_the_rotation_function_has_been_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/invocation_failed_secret_unchanged.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/invocation_success_secret_rotated.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/rotation_function_is_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/secret_has_rotation_configured.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/secret_is_rotating.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/sm_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/then/sm_lambda_secret_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/configure_rotation.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/create_secret_sm.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/delete_rotation_function.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/deploy_lambda_rotation_function.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/rotation_function_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/rotation_function_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/secretsmanager_lambda/when/trigger_rotation.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/client.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_product_and_launch_path_exist.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_product_did_not_exist.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/a_provisioned_product_with_a_known_record_exists.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/no_record_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/given/system_is_initialized.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/__init__.py +4 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/every_provisioned_product_has_an_associated_record.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/every_provisioned_record_has_status_succeeded.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/operation_is_rejected.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/then/service_catalog_record_will_be_succeeded.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/__init__.py +2 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/a_product_is_provisioned.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/service_catalog/when/a_record_is_described.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/client.py +28 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/constants.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/__init__.py +48 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmation_token_expired.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmation_token_valid.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/confirmed_subscription_exists.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_is_in_flight_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_is_not_in_flight_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/delivery_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/no_confirmed_subscription_exists.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/pending_subscription_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_at_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_below_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/retry_count_reached_limit.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_delivery_attempt_has_failed_and_been_retried.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_delivery_attempt_has_succeeded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_message_has_been_published_to_a_topic.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_pending_subscription_has_been_confirmed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_subscription_confirmation_token_has_expired.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_a_subscription_has_been_removed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_all_delivery_retries_have_been_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_endpoint_has_subscribed_to_a_topic.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_an_sns_topic_has_been_deleted.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_did_in_delivery_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_sid_in_sub_status.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_tarn_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/sns_tarn_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_belongs_to_topic.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_exists.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_confirmed_given.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_not_confirmed_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_not_pending_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_is_pending_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_not_belong_to_topic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscription_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/subscriptions_topic_is_not_active.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_does_not_exist.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_is_not_active_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/__init__.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_abandoned_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_done_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_marked_done_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_is_retried_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_retry_count_incremented_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/delivery_retry_count_within_limit.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/every_active_subscription_references_active_topic.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/message_delivered_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/no_delivery_to_deleted_subscription.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/no_delivery_to_unconfirmed_subscription.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/pending_subscription_deleted_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_confirmed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_deleted_by_removal_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/subscription_is_pending_or_confirmed_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_active_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_deleted_and_subscriptions_removed_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/then/topic_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/__init__.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/all_delivery_retries_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/confirm_subscription.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/confirmation_token_expires_when.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/create_topic.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delete_topic.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_fails_and_retried.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_retry_exhausted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/delivery_succeeds.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/publish_to_topic.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscribe_to_topic.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscription_confirmation_token_expires.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns/when/subscription_removed.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/client.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/constants.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_a_lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_a_lambda_function_has_subscribed.py +11 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_an_sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_confirmed_subscription_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_iid_in_inv_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_invocation_is_in_progress.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_confirmed_subscription.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscribed_function_is_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscribed_function_is_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscription_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_subscription_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_the_lambda_invocation_has_completed_successfully.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_the_lambda_invocation_has_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/given/sns_lambda_topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/__init__.py +9 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_in_progress_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_invocation_is_success.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/sns_lambda_topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/then/subscription_confirmed.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/create_sns_topic_lambda.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/deploy_lambda_function_sns.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/publish_and_invoke_lambda.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/sns_lambda_invocation_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/sns_lambda_invocation_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_lambda/when/subscribe_lambda_to_topic.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/client.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/constants.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/__init__.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/available_message_exists_in_queue.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/confirmed_subscription_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_available_message_exists.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_confirmed_subscription_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/no_message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_existed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_a_message_has_been_consumed.py +21 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sqs_queue_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_an_sqs_queue_has_subscribed.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_mid_in_msg_status.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_tid_in_topic_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/sns_sqs_tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscribed_queue_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscribed_queue_is_not_active.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscription_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/subscription_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/__init__.py +8 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/message_available_in_queue.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/message_is_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/queue_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/subscription_confirmed.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/then/topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/consume_message.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/create_sns_topic.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/create_sqs_queue.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/publish_and_deliver.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sns_sqs/when/subscribe_queue_to_topic.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/client.py +45 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/__init__.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/dlq_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_does_not_exist.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_exceeded_max_receive_count.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_exists.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_in_flight_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_is_not_in_flight_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_not_exceeded_max_receive_count.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/message_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/messages_queue_is_not_active.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_does_not_exist.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_has_max_receive_count.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_has_no_max_receive_count.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_is_not_active_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_exceeding_receive_count_moved_to_dlq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_has_been_received_from_the_queue.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_has_been_sent_to_the_queue.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_message_visibility_timeout_has_expired.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_queue_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_a_queue_has_been_deleted.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_all_messages_in_a_queue_have_been_purged.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_an_in_flight_message_has_been_deleted.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_did_in_delivery_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_message_visibility_timeout_has_been_changed.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_mid_in_msg_status.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_qname_in_queue_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_qname_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/given/sqs_queue_attributes_have_been_retrieved.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/__init__.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/all_messages_deleted_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_in_flight_message_belongs_to_active_queue.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_message_has_non_negative_receive_count.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/every_non_deleted_message_belongs_to_active_queue.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_becomes_available_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_in_dlq_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_available_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_in_flight_then.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_is_removed_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/message_visibility_updated_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_attributes_returned_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/then/queue_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/__init__.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/change_message_visibility.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/create_queue.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/delete_message.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/delete_queue.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/get_queue_attributes.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/purge_queue.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/receive_message.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/redrive_to_dlq.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/send_message.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sqs/when/visibility_timeout_expires.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/client.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/constants.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/__init__.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/parameter_not_already_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_retrieved.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_stored.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_a_parameter_has_been_written_without_overwrite.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_an_existing_parameter_value_has_been_updated.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_multiple_parameters_have_been_deleted.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_multiple_parameters_have_been_retrieved.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_parameters_have_been_described.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_parameters_under_a_path_have_been_retrieved.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_pname_in_param_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_pname_not_in_param_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_for_a_parameter_have_been_listed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_have_been_added_to_a_parameter.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/ssm_tags_have_been_removed_from_a_parameter.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_associated_with_parameter.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_association_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_association_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/given/tag_not_associated_with_parameter.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/__init__.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/error_log_only_parameter_already_exists.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/every_parameter_has_valid_type.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/every_parameter_version_is_positive.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/list_of_tags_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/no_parameter_exists_after_delete.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/param_exists_values_valid_booleans.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_already_exists_error.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_exists_with_version_1.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_has_new_value_and_version.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_metadata_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_no_longer_exists.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_value_returned.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameter_values_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameters_no_longer_exist.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/parameters_under_path_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/tags_associated_with_parameter.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/then/tags_disassociated_from_parameter.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/__init__.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/add_tags_to_parameter.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/delete_parameter.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/delete_parameters.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/describe_parameters.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameter.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameters.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/get_parameters_by_path.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/list_tags_for_parameter.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_create.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_no_overwrite.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/put_parameter_overwrite.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm/when/remove_tags_from_parameter.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/client.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/constants.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/__init__.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_is_not_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/eventbridge_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/eventbridge_bus_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_created_event_delivered_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_created_event_failed_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_deleted_event_delivered_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_exists_not_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/param_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/pid_in_param_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/given/pid_not_in_param_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/__init__.py +7 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_exists_and_created_event_delivered.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_exists_but_no_event.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/then/param_is_deleted_and_event_delivered.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/delete_parameter_event_delivered.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/put_parameter_event_delivered.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/ssm_events/when/put_parameter_event_fails.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/client.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/constants.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/__init__.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/all_sms_have_been_listed_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/arn_in_sm_status.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/arn_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_exists.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_has_been_described_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_history_retrieved_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_is_not_running_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_is_running_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_slot_not_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/execution_started_on_standard_sm_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/executions_listed_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_stopped_given.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_terminal_given.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/running_execution_timed_out_given.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sfn_sm_has_been_created.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_already_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_definition_updated_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_definition_validated_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_deletion_finalized_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_exists.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_has_been_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_has_been_described_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_deleting_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_express_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_express_given.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_not_standard_given.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_is_standard_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sm_versions_have_been_listed_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/sync_execution_started_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_associated_with_sm.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_association_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_association_not_active.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tag_not_associated_with_sm.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_added_to_sm_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_for_sm_listed_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/given/tags_removed_from_sm_given.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/__init__.py +26 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/definition_is_valid_or_invalid.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_execution_belongs_to_known_sm.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_execution_has_valid_status.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_sm_has_valid_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/every_sm_has_valid_type.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_details_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_history_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_aborted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_succeeded_or_failed_then.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/execution_is_timed_out_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_executions_returned.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_sm_versions_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_sms_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/list_of_tags_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_details_returned.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_active_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_is_deleting_then.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sm_version_incremented.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/sync_executions_only_for_express.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/tags_associated_with_sm.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/then/tags_disassociated_from_sm.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/__init__.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/create_state_machine.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/delete_state_machine.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/describe_execution.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/describe_state_machine.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/execution_step_transition.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/execution_timeout.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/finalize_delete_state_machine.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/get_execution_history.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_executions.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_state_machine_versions.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_state_machines.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/list_tags_for_sm.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/start_execution.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/start_sync_execution.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/stop_execution.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/tag_state_machine.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/untag_state_machine.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/update_state_machine.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions/when/validate_state_machine_definition.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/client.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/cognito_pool_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/cognito_pool_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pid_in_pool_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pid_not_in_pool_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_already_deleted.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/pool_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/running_execution_called_pool_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/running_execution_failed_pool_deleted_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/pool_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/pool_is_deleted_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/create_user_pool.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/delete_user_pool.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/execution_calls_active_pool.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/execution_fails_pool_deleted.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_cognito/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/client.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cid_in_cluster_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_not_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_is_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/docdb_cluster_has_been_stopped.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/running_execution_connected_cluster_succeeded_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/running_execution_failed_cluster_stopped_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_available_and_ready_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/cluster_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/create_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/execution_connects_to_cluster_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/execution_fails_cluster_stopped.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/start_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_docdb/when/stop_docdb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/client.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/constants.py +63 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/__init__.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/dynamodb_putitem_task_configured_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/dynamodb_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/item_exists_in_target_table.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/item_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_item_exists_in_target_table.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/no_item_slot_available.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/running_execution_get_item_failed_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/running_execution_wrote_item_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_already_has_dynamodb_task.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_has_dynamodb_task.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_has_no_dynamodb_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_does_not_exist.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_is_not_active_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/target_table_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/target_table_is_not_active.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/given/tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/execution_failed_item_not_found.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/item_exists_and_execution_succeeded.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/sm_active_no_dynamodb_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/sm_will_write_item.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/then/table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/configure_dynamodb_task.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/create_dynamodb_table.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/execution_gets_item_not_found.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/execution_writes_item.py +43 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_dynamodb/when/start_execution.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/client.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cid_in_cluster_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_modifying_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_is_not_modifying_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_modification_begun_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_modification_completed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/elasticache_cluster_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/running_execution_connected_cluster_succeeded_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/running_execution_failed_cluster_modifying_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/cluster_is_modifying_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/cluster_modification_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/cluster_modification_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/create_elasticache_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/execution_fails_cluster_modifying.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/execution_reads_from_cluster_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticache/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/did_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/did_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_config_update_begun_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_config_update_completed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_not_processing_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_is_processing_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/elasticsearch_domain_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/running_execution_called_domain_succeeded_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/running_execution_failed_domain_processing_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_available_again_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_available_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/domain_is_processing_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/create_elasticsearch_domain.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/domain_configuration_update_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/domain_configuration_update_completes.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/execution_calls_available_domain_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/execution_fails_domain_processing.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_elasticsearch/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/client.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/bus_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/busid_in_bus_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/busid_not_in_bus_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eventbridge_bus_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/eventbridge_bus_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_started_event_delivered_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/execution_started_event_failed_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_event_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/running_execution_succeeded_event_delivered_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/running_execution_succeeded_event_failed_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_already_has_eventbridge_bus.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_configured_to_publish_events_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_has_eventbridge_bus.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_has_no_eventbridge_bus.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/sm_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/__init__.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/bus_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/bus_is_deleted_then.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_running_and_started_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_running_but_no_started_event.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_succeeded_and_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/execution_succeeded_but_no_event.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/sm_active_no_eventbridge_bus.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/then/sm_will_send_events.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/__init__.py +8 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/configure_event_publishing.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/create_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/delete_event_bus.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/execution_succeeds_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/execution_succeeds_event_fails.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/start_execution_event_delivered.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_events/when/start_execution_event_fails.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/client.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/__init__.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/glacier_vault_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/glacier_vault_has_been_deleted.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/running_execution_called_vault_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/running_execution_failed_vault_deleted_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_does_not_exist_or_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_exists_not_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_already_deleted_given.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_deleted_given.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vault_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vid_in_vault_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/given/vid_not_in_vault_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/vault_exists_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/then/vault_is_deleted_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/create_glacier_vault.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/delete_glacier_vault.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/execution_calls_vault_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/execution_fails_vault_deleted.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_glacier/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/client.py +38 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/constants.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/__init__.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/configured_function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/configured_function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/fid_not_in_func_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/function_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/iid_in_inv_status.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/invocation_is_in_progress_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/invocation_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_function_has_been_deployed.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_completed_successfully_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_failed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/lambda_task_has_been_configured_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_invocation_is_in_progress.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/no_invocation_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/running_execution_invoked_lambda_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_already_has_lambda_task_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_configured_lambda_task_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_lambda_task_given.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_no_configured_lambda_task_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_has_no_lambda_task_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/__init__.py +13 -0
- 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
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/function_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_failed_execution_failed.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_is_in_progress_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/invocation_success_execution_succeeded.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_is_active_no_lambda_task_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/then/sm_will_invoke_function_then.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/configure_lambda_task.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/deploy_lambda_function.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/execution_invokes_lambda.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/lambda_task_fails.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/lambda_task_succeeds.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_lambda/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/client.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cid_in_cluster_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_not_updating_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_is_updating_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_update_begun_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/memorydb_cluster_update_completed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/running_execution_connected_cluster_succeeded_given.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/running_execution_failed_cluster_updating_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/cluster_is_updating_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/create_memorydb_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/execution_connects_to_cluster_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/execution_fails_cluster_updating.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/memorydb_cluster_update_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/memorydb_cluster_update_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_memorydb/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/client.py +37 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cid_in_cluster_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cid_not_in_cluster_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_not_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_is_stopped_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/cluster_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/neptune_cluster_has_been_stopped.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/running_execution_failed_cluster_stopped_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/running_execution_queried_cluster_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_available_and_ready_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/cluster_is_stopped_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/create_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/execution_fails_cluster_stopped.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/execution_queries_cluster_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/start_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_neptune/when/stop_neptune_cluster.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/did_in_domain_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/did_not_in_domain_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_config_update_begun_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_config_update_completed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_not_processing_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_is_processing_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/domain_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/opensearch_domain_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/running_execution_called_domain_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/running_execution_failed_domain_processing_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_active_again_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/domain_is_processing_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/create_opensearch_domain.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/domain_configuration_update_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/domain_configuration_update_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/execution_calls_active_domain_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/execution_fails_domain_processing.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_opensearch/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/client.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_failover_completed_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_available_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_failing_over_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_not_available_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_is_not_failing_over_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/db_instance_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/dbid_in_db_status.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/dbid_not_in_db_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/multi_az_failover_begun_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/rds_db_instance_has_been_created.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/running_execution_failed_db_failing_over_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/running_execution_queried_db_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/__init__.py +9 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_available_again_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_available_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/db_instance_is_failing_over_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_failed_connection_error.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/create_rds_db_instance.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/db_instance_failover_completes.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/execution_fails_db_failing_over.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/execution_queries_db_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/multi_az_failover_begins.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_rds/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/constants.py +64 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/__init__.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bid_not_in_bucket_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/bucket_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_object_exists_in_target_bucket.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/no_object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/object_exists_in_target_bucket.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/object_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_read_object_failed_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_read_object_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/running_execution_wrote_object_succeeded_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/s3_bucket_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/s3_task_configured_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_already_has_s3_task.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_has_no_s3_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_has_s3_task.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/target_bucket_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/given/target_bucket_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/__init__.py +10 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/bucket_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_failed_no_such_key.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/execution_is_succeeded_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/object_exists_and_execution_succeeded.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_is_active_with_no_s3_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/then/sm_will_read_write_objects.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/__init__.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/configure_s3_task.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/create_s3_bucket.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_reads_object.py +53 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_reads_object_not_found.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/execution_writes_object.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3api/when/start_execution.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/client.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/constants.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/running_execution_called_table_succeeded_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/running_execution_failed_table_deleting_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/s3tables_table_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_deletion_initiated_given.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_does_not_exist_or_deleting_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_already_deleting_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_deleting_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_is_not_deleting_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/table_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/tid_in_table_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/given/tid_not_in_table_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_failed_resource_not_found.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/execution_is_succeeded_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/table_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/then/table_is_deleting_then.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/create_s3tables_table.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/execution_calls_active_table_succeeds.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/execution_fails_table_deleting.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/initiate_table_deletion.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_s3tables/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/client.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/constants.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/__init__.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_is_running_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/running_execution_failed_secret_pending_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/running_execution_read_secret_succeeded_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_exists_and_is_active.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_not_pending_deletion.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_is_pending_deletion.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_not_exist_or_not_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/secret_scheduled_for_deletion_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sid_in_secret_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sid_not_in_secret_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_is_not_active_given.py +22 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_failed_resource_not_found.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/execution_is_succeeded_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/secret_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/secret_is_pending_deletion_then.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/create_secret.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/execution_reads_secret_fails.py +42 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/execution_reads_secret_succeeds.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/schedule_secret_deletion.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_secretsmanager/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/client.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/constants.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/running_execution_published_to_topic_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_already_has_sns_task.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_has_no_sns_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_has_sns_task.py +25 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sns_publish_task_configured_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/sns_topic_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/target_topic_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/target_topic_is_not_active.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/tid_not_in_topic_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/given/topic_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/execution_succeeded_and_message_published.py +19 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_is_active_with_no_sns_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/sm_will_publish_to_topic.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/then/topic_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/configure_sns_task.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/create_sns_topic.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/execution_publishes_to_topic.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sns/when/start_execution.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/client.py +37 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/constants.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/__init__.py +34 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_is_running_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_of_sm_has_been_started.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_sm_has_no_sqs_task.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/execution_sm_has_sqs_task.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/message_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/no_message_slot_available.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/qid_not_in_queue_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_does_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_is_not_active_given.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/queue_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/running_execution_sent_sqs_message_given.py +13 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_already_has_sqs_task.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_has_no_sqs_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_has_sqs_task.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sqs_queue_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/sqs_send_message_task_configured_given.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/target_queue_is_active.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/given/target_queue_is_not_active.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/message_available_and_execution_succeeded.py +32 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/queue_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_is_active_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_is_active_with_no_sqs_task.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/then/sm_will_enqueue_message.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/__init__.py +5 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/configure_sqs_task.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/create_sqs_queue.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/execution_sends_message.py +24 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_sqs/when/start_execution.py +26 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/client.py +44 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/constants.py +40 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/__init__.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/eid_in_exec_status.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_is_running_given.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_of_sm_has_been_started.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/execution_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/no_execution_is_running.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/no_execution_slot_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_exists_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_already_deleted.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_deleted_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_is_not_deleted_given.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/param_not_exist_or_deleted.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/pid_in_param_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/pid_not_in_param_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/running_execution_failed_parameter_deleted_given.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/running_execution_read_parameter_succeeded_given.py +33 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sfn_sm_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_already_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_does_not_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_exists.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_is_active_given.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_is_not_active_given.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/sm_not_already_exist.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/smid_in_sm_status.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/smid_not_in_sm_status.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/ssm_parameter_has_been_created.py +12 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/given/ssm_parameter_has_been_deleted.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/test_scenarios.py +27 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/__init__.py +8 -0
- 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
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_failed_parameter_not_found.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_is_running_then.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/execution_is_succeeded_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/param_exists_then.py +16 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/param_is_deleted_then.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/then/sm_is_active_then.py +17 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/__init__.py +6 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/create_parameter.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/create_state_machine.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/delete_parameter.py +18 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/execution_reads_parameter_fails.py +39 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/execution_reads_parameter_succeeds.py +35 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/stepfunctions_ssm/when/start_execution.py +21 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/client.py +31 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/conftest.py +9 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/constants.py +7 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/__init__.py +4 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/a_session_slot_was_available.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/no_session_slot_available.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/the_sts_session_did_not_exist.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/given/the_sts_session_existed.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/test_scenarios.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/__init__.py +4 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/caller_identity_account_matches_the_session_account.py +11 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/every_session_token_maps_to_a_valid_account_id.py +20 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/sts_caller_identity_will_return_account_from_session.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/then/sts_session_will_be_created_with_account_id_embedded.py +15 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/when/__init__.py +2 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/sts/when/an_sts_role_is_assumed_for_an_account.py +27 -0
- 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
- local_web_services_python_sdk-0.19.0/tests/e2e/then/__init__.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/deleted_table_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/delivery_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/global_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/never_negative_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/no_inflight_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/operation_is_rejected.py +14 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/overwrite_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/pending_transaction_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/status_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/then/tag_key_invariant_holds.py +10 -0
- local_web_services_python_sdk-0.19.0/tests/e2e/when/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/unit/__init__.py +0 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_bucket_has_eventbridge_notification_configures_s3.py +48 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_apply.py +53 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_exhaust.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_slots.py +29 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_capacity_builder_unlimited.py +30 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_fake_builder_delay_ms.py +82 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_fake_builder_with_header.py +87 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_log_capture.py +160 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_clear_injected_state_success.py +23 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_client_aws_fake.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_client_fake.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_get_chaos_status.py +53 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_get_injected_state_success.py +61 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_imports.py +54 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_404_skips.py +51 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_error_responses.py +36 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_inject_state_success.py +41 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_lifecycle.py +159 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_port_for.py +55 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_reset_chaos.py +50 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_session_set_chaos.py +74 -0
- local_web_services_python_sdk-0.19.0/tests/unit/test_target_bus_is_deleted_creates_and_deletes_bus.py +87 -0
- local_web_services_python_sdk-0.2.0/Makefile +0 -36
- local_web_services_python_sdk-0.2.0/PKG-INFO +0 -96
- local_web_services_python_sdk-0.2.0/README.md +0 -69
- local_web_services_python_sdk-0.2.0/pyproject.toml +0 -86
- local_web_services_python_sdk-0.2.0/src/lws_testing/__init__.py +0 -26
- local_web_services_python_sdk-0.2.0/src/lws_testing/_builders/fake.py +0 -107
- local_web_services_python_sdk-0.2.0/src/lws_testing/_builders/iam.py +0 -125
- local_web_services_python_sdk-0.2.0/src/lws_testing/_discovery/cdk.py +0 -115
- local_web_services_python_sdk-0.2.0/src/lws_testing/_logs.py +0 -100
- local_web_services_python_sdk-0.2.0/src/lws_testing/_transport/inprocess.py +0 -329
- local_web_services_python_sdk-0.2.0/src/lws_testing/session.py +0 -392
- local_web_services_python_sdk-0.2.0/tests/unit/test_session_imports.py +0 -50
- local_web_services_python_sdk-0.2.0/tests/unit/test_session_lifecycle.py +0 -149
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.github/workflows/ci.yml +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.github/workflows/publish.yml +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/.gitignore +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/BUILD +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/requirements.txt +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_builders/__init__.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_builders/chaos.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_discovery/__init__.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_discovery/hcl.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/__init__.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/dynamodb.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/s3.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_resources/sqs.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/_transport/__init__.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/src/lws_testing/fixtures.py +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/tests/BUILD +0 -0
- {local_web_services_python_sdk-0.2.0 → local_web_services_python_sdk-0.19.0}/tests/__init__.py +0 -0
- {local_web_services_python_sdk-0.2.0/tests/unit → local_web_services_python_sdk-0.19.0/tests/architecture}/__init__.py +0 -0
- {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
|
+
)
|