├── .amazonq ├── README.md ├── profiles │ ├── profile-thingpress-dev.md │ └── profile-thingpress-rel.md ├── prompts │ └── thingpress-profile.md └── rules │ ├── thingpress-rules-github.md │ └── thingpress-rules-secid.md ├── .env ├── .github ├── coverage.svg ├── dependabot.yml ├── linting.svg ├── sambuild.svg ├── samlint.svg └── workflows │ ├── ci.yml │ ├── coverage.yml │ ├── integration-tests-full.yml │ ├── integration-tests-multi.yml │ ├── integration-tests.yml │ └── release-integration-tests.yml ├── .gitignore ├── .pylintrc ├── .python-version ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSIONING.md ├── configs ├── MULTI_TEST_ARTIFACTS_README.md ├── awscli-thing-group-basic.json ├── deployer-permissions-policy.json ├── deployer-trust-policy.json ├── deployment-role-README.md ├── multi-test-policy-admin.json ├── multi-test-policy-base.json ├── multi-test-policy-sensor.json ├── multi-test-thing-group-dept.json ├── multi-test-thing-group-location.json ├── multi-test-thing-group-product.json ├── sam-integration-full.toml ├── sam-integration-multi.toml └── test-policy-basic.json ├── devfile.yaml ├── docs ├── GITHUB_WORKFLOW_FIXES.md ├── INTEGRATION_TESTING.md ├── INTEGRATION_TESTING_MANUAL.md ├── INTEGRATION_TESTING_RELEASE.md ├── MULTI_ATTACHMENT_GUIDE.md ├── TESTING.md ├── THROTTLING_STANDARDIZATION_SUMMARY.md ├── gory-details.md ├── integration-testing │ ├── COMMIT_CHECKLIST.md │ ├── INTEGRATION_TEST_FINDINGS.md │ ├── LAYER_DEPENDENCY_REFERENCE.md │ ├── REPOSITORY_ORGANIZATION_PLAN.md │ ├── aws-session-management.md │ └── integration-test-framework.md ├── legacy │ └── integration_v1_backup │ │ ├── README.md │ │ ├── bi-sqs-ev-1.json │ │ ├── common │ │ ├── metrics.py │ │ └── test_utils.py │ │ ├── espressif │ │ ├── samconfig.toml │ │ ├── template.yaml │ │ └── test_espressif.py │ │ ├── generated │ │ ├── samconfig.toml │ │ ├── template.yaml │ │ └── test_generated.py │ │ ├── infineon │ │ ├── samconfig.toml │ │ ├── template.yaml │ │ └── test_infineon.py │ │ └── microchip │ │ ├── samconfig.toml │ │ ├── template.yaml │ │ └── test_microchip.py ├── session-logs │ └── convo.md ├── setup │ ├── aws-api-limits.md │ └── installation.md ├── troubleshooting │ └── import-issues-resolved.md ├── vendors │ ├── espressif.md │ ├── generated.md │ ├── infineon.md │ └── microchip.md └── workflows.md ├── planning ├── ROADMAP.md └── v1.0-marketing-plan.md ├── pyrightconfig.json ├── pytest.ini ├── requirements.txt ├── scripts ├── README.md ├── cleanup-integration-test-README.md ├── cleanup-integration-test.sh ├── create-deployment-role.sh ├── debug │ ├── circuit_breaker_diagnostics.py │ ├── debug_microchip.py │ ├── debug_microchip_test.py │ ├── enable_xray_tracing.py │ ├── test_circuit_breaker_behavior.py │ ├── test_lambda_import.py │ └── test_thingpress_tagging.py ├── deploy-legacy.sh ├── deploy.sh ├── deploytp.sh ├── dev_coverage.sh ├── encode_certificates.py ├── export_azure_certificates.py ├── get-iot-summary.sh ├── install-multi-test-artifacts.sh ├── transform_iot_policy.py ├── uninstall-multi-test-artifacts.sh └── update-deployment-role.sh ├── src ├── bulk_importer │ ├── bulk_importer │ │ ├── __init__.py │ │ └── main.py │ └── requirements.txt ├── certificate_deployer │ ├── certificate_deployer │ │ ├── __init__.py │ │ ├── cfnresponse.py │ │ └── main.py │ ├── certificates │ │ └── encoded_certificates.json │ └── requirements.txt ├── certificate_generator │ ├── generate_certificates.py │ └── requirements.txt ├── layer_utils │ ├── layer_utils │ │ ├── __init__.py │ │ ├── aws_utils.py │ │ ├── cert_utils.py │ │ ├── circuit_state.py │ │ └── throttling_utils.py │ └── requirements.txt ├── product_verifier │ ├── __init__.py │ ├── main.py │ └── requirements.txt ├── provider_espressif │ ├── provider_espressif │ │ ├── __init__.py │ │ └── main.py │ └── requirements.txt ├── provider_generated │ ├── __init__.py │ ├── provider_generated │ │ ├── __init__.py │ │ └── main.py │ └── requirements.txt ├── provider_infineon │ ├── provider_infineon │ │ ├── __init__.py │ │ ├── main.py │ │ └── manifest_handler.py │ └── requirements.txt └── provider_microchip │ ├── provider_microchip │ ├── __init__.py │ ├── main.py │ └── manifest_handler.py │ └── requirements.txt ├── template.yaml └── test ├── artifacts ├── ECC608-TMNGTLSS-B.json ├── ECC608C-TNGTLSU-B.json ├── certificates_test.txt ├── manifest-espressif.csv ├── manifest-infineon.7z ├── mchp_verifiers │ ├── MCHP_manifest_signer_1_Jan-21-2019_Jul2-21-2019.crt │ ├── MCHP_manifest_signer_2_Aug-15-2019_Aug-15-2020.crt │ ├── MCHP_manifest_signer_3_Aug-13-2020_Aug-13-2023.crt │ ├── MCHP_manifest_signer_4_Jul-18-2023_Jul-18-2026.crt │ └── MCHP_manifest_signer_5_Mar_6-2024_noExpiration.crt ├── single.pem └── test_artifacts.yml ├── cleanpress ├── lambda-cleanpress-cert │ ├── main.py │ └── requirements.txt ├── lambda-cleanpress-invoke │ ├── main.py │ └── requirements.txt ├── lambda-cleanpress-policy │ ├── main.py │ └── requirements.txt ├── lambda-cleanpress-thing │ ├── main.py │ └── requirements.txt ├── script │ ├── build.sh │ ├── certificate-count.py │ ├── deploy.sh │ └── package.sh └── template.yaml ├── integration ├── __init__.py ├── cleanup_utils │ ├── __init__.py │ ├── cleanup_config.py │ └── thingpress_cleanup.py ├── common │ ├── __init__.py │ ├── aws_helpers.py │ ├── session_manager.py │ └── test_framework.py ├── component │ ├── __init__.py │ ├── test_espressif_provider.py │ ├── test_generated_provider.py │ ├── test_infineon_provider.py │ └── test_microchip_provider.py ├── end_to_end │ ├── __init__.py │ ├── e2e_test_framework.py │ ├── test_espressif_e2e.py │ ├── test_generated_e2e.py │ ├── test_infineon_e2e.py │ └── test_microchip_e2e.py ├── run_component_tests.py └── run_e2e_tests.py ├── performance ├── PERFORMANCE_TESTING.md ├── performance_test_integrated.py ├── run_performance_test.sh ├── sqs_batch_performance_test.py └── sqs_throttling_performance_test.py └── unit ├── __init__.py ├── conftest.py ├── model_bulk_importer.py ├── model_product_verifier.py ├── model_provider_espressif.py ├── model_provider_generated.py ├── model_provider_infineon.py ├── requirements.txt ├── test_aws_utils.py ├── test_bulk_importer.py ├── test_certificate_deployer.py ├── test_certificate_generator.py ├── test_certificate_generator_extended.py ├── test_certificate_generator_main.py ├── test_certificate_generator_provider_integration.py ├── test_cfnresponse.py ├── test_circuit_state.py ├── test_product_verifier.py ├── test_provider_espressif.py ├── test_provider_espressif_throttling.py ├── test_provider_generated.py ├── test_provider_infineon.py ├── test_provider_microchip.py └── test_throttling_utils.py /.amazonq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.amazonq/README.md -------------------------------------------------------------------------------- /.amazonq/profiles/profile-thingpress-dev.md: -------------------------------------------------------------------------------- 1 | # Q CLI Profile **Developer** 2 | 3 | -------------------------------------------------------------------------------- /.amazonq/profiles/profile-thingpress-rel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.amazonq/profiles/profile-thingpress-rel.md -------------------------------------------------------------------------------- /.amazonq/prompts/thingpress-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.amazonq/prompts/thingpress-profile.md -------------------------------------------------------------------------------- /.amazonq/rules/thingpress-rules-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.amazonq/rules/thingpress-rules-github.md -------------------------------------------------------------------------------- /.amazonq/rules/thingpress-rules-secid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.amazonq/rules/thingpress-rules-secid.md -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.env -------------------------------------------------------------------------------- /.github/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/coverage.svg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/linting.svg -------------------------------------------------------------------------------- /.github/sambuild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/sambuild.svg -------------------------------------------------------------------------------- /.github/samlint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/samlint.svg -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/integration-tests-full.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests-multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/integration-tests-multi.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.github/workflows/release-integration-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.pylintrc -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13.3 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/VERSIONING.md -------------------------------------------------------------------------------- /configs/MULTI_TEST_ARTIFACTS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/MULTI_TEST_ARTIFACTS_README.md -------------------------------------------------------------------------------- /configs/awscli-thing-group-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/awscli-thing-group-basic.json -------------------------------------------------------------------------------- /configs/deployer-permissions-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/deployer-permissions-policy.json -------------------------------------------------------------------------------- /configs/deployer-trust-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/deployer-trust-policy.json -------------------------------------------------------------------------------- /configs/deployment-role-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/deployment-role-README.md -------------------------------------------------------------------------------- /configs/multi-test-policy-admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-policy-admin.json -------------------------------------------------------------------------------- /configs/multi-test-policy-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-policy-base.json -------------------------------------------------------------------------------- /configs/multi-test-policy-sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-policy-sensor.json -------------------------------------------------------------------------------- /configs/multi-test-thing-group-dept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-thing-group-dept.json -------------------------------------------------------------------------------- /configs/multi-test-thing-group-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-thing-group-location.json -------------------------------------------------------------------------------- /configs/multi-test-thing-group-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/multi-test-thing-group-product.json -------------------------------------------------------------------------------- /configs/sam-integration-full.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/sam-integration-full.toml -------------------------------------------------------------------------------- /configs/sam-integration-multi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/sam-integration-multi.toml -------------------------------------------------------------------------------- /configs/test-policy-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/configs/test-policy-basic.json -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/devfile.yaml -------------------------------------------------------------------------------- /docs/GITHUB_WORKFLOW_FIXES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/GITHUB_WORKFLOW_FIXES.md -------------------------------------------------------------------------------- /docs/INTEGRATION_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/INTEGRATION_TESTING.md -------------------------------------------------------------------------------- /docs/INTEGRATION_TESTING_MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/INTEGRATION_TESTING_MANUAL.md -------------------------------------------------------------------------------- /docs/INTEGRATION_TESTING_RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/INTEGRATION_TESTING_RELEASE.md -------------------------------------------------------------------------------- /docs/MULTI_ATTACHMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/MULTI_ATTACHMENT_GUIDE.md -------------------------------------------------------------------------------- /docs/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/TESTING.md -------------------------------------------------------------------------------- /docs/THROTTLING_STANDARDIZATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/THROTTLING_STANDARDIZATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/gory-details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/gory-details.md -------------------------------------------------------------------------------- /docs/integration-testing/COMMIT_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/COMMIT_CHECKLIST.md -------------------------------------------------------------------------------- /docs/integration-testing/INTEGRATION_TEST_FINDINGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/INTEGRATION_TEST_FINDINGS.md -------------------------------------------------------------------------------- /docs/integration-testing/LAYER_DEPENDENCY_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/LAYER_DEPENDENCY_REFERENCE.md -------------------------------------------------------------------------------- /docs/integration-testing/REPOSITORY_ORGANIZATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/REPOSITORY_ORGANIZATION_PLAN.md -------------------------------------------------------------------------------- /docs/integration-testing/aws-session-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/aws-session-management.md -------------------------------------------------------------------------------- /docs/integration-testing/integration-test-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/integration-testing/integration-test-framework.md -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/README.md -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/bi-sqs-ev-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/bi-sqs-ev-1.json -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/common/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/common/metrics.py -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/common/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/common/test_utils.py -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/espressif/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/espressif/samconfig.toml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/espressif/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/espressif/template.yaml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/espressif/test_espressif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/espressif/test_espressif.py -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/generated/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/generated/samconfig.toml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/generated/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/generated/template.yaml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/generated/test_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/generated/test_generated.py -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/infineon/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/infineon/samconfig.toml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/infineon/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/infineon/template.yaml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/infineon/test_infineon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/infineon/test_infineon.py -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/microchip/samconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/microchip/samconfig.toml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/microchip/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/microchip/template.yaml -------------------------------------------------------------------------------- /docs/legacy/integration_v1_backup/microchip/test_microchip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/legacy/integration_v1_backup/microchip/test_microchip.py -------------------------------------------------------------------------------- /docs/session-logs/convo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/session-logs/convo.md -------------------------------------------------------------------------------- /docs/setup/aws-api-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/setup/aws-api-limits.md -------------------------------------------------------------------------------- /docs/setup/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/setup/installation.md -------------------------------------------------------------------------------- /docs/troubleshooting/import-issues-resolved.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/troubleshooting/import-issues-resolved.md -------------------------------------------------------------------------------- /docs/vendors/espressif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/vendors/espressif.md -------------------------------------------------------------------------------- /docs/vendors/generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/vendors/generated.md -------------------------------------------------------------------------------- /docs/vendors/infineon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/vendors/infineon.md -------------------------------------------------------------------------------- /docs/vendors/microchip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/vendors/microchip.md -------------------------------------------------------------------------------- /docs/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/docs/workflows.md -------------------------------------------------------------------------------- /planning/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/planning/ROADMAP.md -------------------------------------------------------------------------------- /planning/v1.0-marketing-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/planning/v1.0-marketing-plan.md -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/cleanup-integration-test-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/cleanup-integration-test-README.md -------------------------------------------------------------------------------- /scripts/cleanup-integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/cleanup-integration-test.sh -------------------------------------------------------------------------------- /scripts/create-deployment-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/create-deployment-role.sh -------------------------------------------------------------------------------- /scripts/debug/circuit_breaker_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/circuit_breaker_diagnostics.py -------------------------------------------------------------------------------- /scripts/debug/debug_microchip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/debug_microchip.py -------------------------------------------------------------------------------- /scripts/debug/debug_microchip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/debug_microchip_test.py -------------------------------------------------------------------------------- /scripts/debug/enable_xray_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/enable_xray_tracing.py -------------------------------------------------------------------------------- /scripts/debug/test_circuit_breaker_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/test_circuit_breaker_behavior.py -------------------------------------------------------------------------------- /scripts/debug/test_lambda_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/test_lambda_import.py -------------------------------------------------------------------------------- /scripts/debug/test_thingpress_tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/debug/test_thingpress_tagging.py -------------------------------------------------------------------------------- /scripts/deploy-legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/deploy-legacy.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/deploytp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/deploytp.sh -------------------------------------------------------------------------------- /scripts/dev_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/dev_coverage.sh -------------------------------------------------------------------------------- /scripts/encode_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/encode_certificates.py -------------------------------------------------------------------------------- /scripts/export_azure_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/export_azure_certificates.py -------------------------------------------------------------------------------- /scripts/get-iot-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/get-iot-summary.sh -------------------------------------------------------------------------------- /scripts/install-multi-test-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/install-multi-test-artifacts.sh -------------------------------------------------------------------------------- /scripts/transform_iot_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/transform_iot_policy.py -------------------------------------------------------------------------------- /scripts/uninstall-multi-test-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/uninstall-multi-test-artifacts.sh -------------------------------------------------------------------------------- /scripts/update-deployment-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/scripts/update-deployment-role.sh -------------------------------------------------------------------------------- /src/bulk_importer/bulk_importer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bulk_importer/bulk_importer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/bulk_importer/bulk_importer/main.py -------------------------------------------------------------------------------- /src/bulk_importer/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.40.21 2 | aws_lambda_powertools==3.22.0 3 | -------------------------------------------------------------------------------- /src/certificate_deployer/certificate_deployer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/certificate_deployer/certificate_deployer/__init__.py -------------------------------------------------------------------------------- /src/certificate_deployer/certificate_deployer/cfnresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/certificate_deployer/certificate_deployer/cfnresponse.py -------------------------------------------------------------------------------- /src/certificate_deployer/certificate_deployer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/certificate_deployer/certificate_deployer/main.py -------------------------------------------------------------------------------- /src/certificate_deployer/certificates/encoded_certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/certificate_deployer/certificates/encoded_certificates.json -------------------------------------------------------------------------------- /src/certificate_deployer/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.26.0 2 | aws-lambda-powertools>=2.0.0 3 | -------------------------------------------------------------------------------- /src/certificate_generator/generate_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/certificate_generator/generate_certificates.py -------------------------------------------------------------------------------- /src/certificate_generator/requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography>=41.0.0 2 | tqdm>=4.65.0 -------------------------------------------------------------------------------- /src/layer_utils/layer_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/layer_utils/layer_utils/__init__.py -------------------------------------------------------------------------------- /src/layer_utils/layer_utils/aws_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/layer_utils/layer_utils/aws_utils.py -------------------------------------------------------------------------------- /src/layer_utils/layer_utils/cert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/layer_utils/layer_utils/cert_utils.py -------------------------------------------------------------------------------- /src/layer_utils/layer_utils/circuit_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/layer_utils/layer_utils/circuit_state.py -------------------------------------------------------------------------------- /src/layer_utils/layer_utils/throttling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/layer_utils/layer_utils/throttling_utils.py -------------------------------------------------------------------------------- /src/layer_utils/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.40.21 2 | cryptography==45.0.7 3 | -------------------------------------------------------------------------------- /src/product_verifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/product_verifier/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/product_verifier/main.py -------------------------------------------------------------------------------- /src/product_verifier/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.39.3 2 | aws_lambda_powertools==3.17.0 3 | -------------------------------------------------------------------------------- /src/provider_espressif/provider_espressif/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/provider_espressif/provider_espressif/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_espressif/provider_espressif/main.py -------------------------------------------------------------------------------- /src/provider_espressif/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.40.21 2 | aws_lambda_powertools==3.22.0 3 | -------------------------------------------------------------------------------- /src/provider_generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/provider_generated/provider_generated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/provider_generated/provider_generated/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_generated/provider_generated/main.py -------------------------------------------------------------------------------- /src/provider_generated/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.40.21 2 | aws_lambda_powertools==3.22.0 3 | -------------------------------------------------------------------------------- /src/provider_infineon/provider_infineon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/provider_infineon/provider_infineon/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_infineon/provider_infineon/main.py -------------------------------------------------------------------------------- /src/provider_infineon/provider_infineon/manifest_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_infineon/provider_infineon/manifest_handler.py -------------------------------------------------------------------------------- /src/provider_infineon/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_infineon/requirements.txt -------------------------------------------------------------------------------- /src/provider_microchip/provider_microchip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/provider_microchip/provider_microchip/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_microchip/provider_microchip/main.py -------------------------------------------------------------------------------- /src/provider_microchip/provider_microchip/manifest_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_microchip/provider_microchip/manifest_handler.py -------------------------------------------------------------------------------- /src/provider_microchip/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/src/provider_microchip/requirements.txt -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/template.yaml -------------------------------------------------------------------------------- /test/artifacts/ECC608-TMNGTLSS-B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/ECC608-TMNGTLSS-B.json -------------------------------------------------------------------------------- /test/artifacts/ECC608C-TNGTLSU-B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/ECC608C-TNGTLSU-B.json -------------------------------------------------------------------------------- /test/artifacts/certificates_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/certificates_test.txt -------------------------------------------------------------------------------- /test/artifacts/manifest-espressif.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/manifest-espressif.csv -------------------------------------------------------------------------------- /test/artifacts/manifest-infineon.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/manifest-infineon.7z -------------------------------------------------------------------------------- /test/artifacts/mchp_verifiers/MCHP_manifest_signer_1_Jan-21-2019_Jul2-21-2019.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/mchp_verifiers/MCHP_manifest_signer_1_Jan-21-2019_Jul2-21-2019.crt -------------------------------------------------------------------------------- /test/artifacts/mchp_verifiers/MCHP_manifest_signer_2_Aug-15-2019_Aug-15-2020.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/mchp_verifiers/MCHP_manifest_signer_2_Aug-15-2019_Aug-15-2020.crt -------------------------------------------------------------------------------- /test/artifacts/mchp_verifiers/MCHP_manifest_signer_3_Aug-13-2020_Aug-13-2023.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/mchp_verifiers/MCHP_manifest_signer_3_Aug-13-2020_Aug-13-2023.crt -------------------------------------------------------------------------------- /test/artifacts/mchp_verifiers/MCHP_manifest_signer_4_Jul-18-2023_Jul-18-2026.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/mchp_verifiers/MCHP_manifest_signer_4_Jul-18-2023_Jul-18-2026.crt -------------------------------------------------------------------------------- /test/artifacts/mchp_verifiers/MCHP_manifest_signer_5_Mar_6-2024_noExpiration.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/mchp_verifiers/MCHP_manifest_signer_5_Mar_6-2024_noExpiration.crt -------------------------------------------------------------------------------- /test/artifacts/single.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/single.pem -------------------------------------------------------------------------------- /test/artifacts/test_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/artifacts/test_artifacts.yml -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-cert/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/lambda-cleanpress-cert/main.py -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-cert/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-invoke/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/lambda-cleanpress-invoke/main.py -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-invoke/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-policy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/lambda-cleanpress-policy/main.py -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-policy/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-thing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/lambda-cleanpress-thing/main.py -------------------------------------------------------------------------------- /test/cleanpress/lambda-cleanpress-thing/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /test/cleanpress/script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/script/build.sh -------------------------------------------------------------------------------- /test/cleanpress/script/certificate-count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/script/certificate-count.py -------------------------------------------------------------------------------- /test/cleanpress/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/script/deploy.sh -------------------------------------------------------------------------------- /test/cleanpress/script/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/script/package.sh -------------------------------------------------------------------------------- /test/cleanpress/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/cleanpress/template.yaml -------------------------------------------------------------------------------- /test/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/__init__.py -------------------------------------------------------------------------------- /test/integration/cleanup_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/cleanup_utils/__init__.py -------------------------------------------------------------------------------- /test/integration/cleanup_utils/cleanup_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/cleanup_utils/cleanup_config.py -------------------------------------------------------------------------------- /test/integration/cleanup_utils/thingpress_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/cleanup_utils/thingpress_cleanup.py -------------------------------------------------------------------------------- /test/integration/common/__init__.py: -------------------------------------------------------------------------------- 1 | # Common utilities for integration testing 2 | -------------------------------------------------------------------------------- /test/integration/common/aws_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/common/aws_helpers.py -------------------------------------------------------------------------------- /test/integration/common/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/common/session_manager.py -------------------------------------------------------------------------------- /test/integration/common/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/common/test_framework.py -------------------------------------------------------------------------------- /test/integration/component/__init__.py: -------------------------------------------------------------------------------- 1 | # Component integration tests 2 | -------------------------------------------------------------------------------- /test/integration/component/test_espressif_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/component/test_espressif_provider.py -------------------------------------------------------------------------------- /test/integration/component/test_generated_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/component/test_generated_provider.py -------------------------------------------------------------------------------- /test/integration/component/test_infineon_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/component/test_infineon_provider.py -------------------------------------------------------------------------------- /test/integration/component/test_microchip_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/component/test_microchip_provider.py -------------------------------------------------------------------------------- /test/integration/end_to_end/__init__.py: -------------------------------------------------------------------------------- 1 | # End-to-end integration tests 2 | -------------------------------------------------------------------------------- /test/integration/end_to_end/e2e_test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/end_to_end/e2e_test_framework.py -------------------------------------------------------------------------------- /test/integration/end_to_end/test_espressif_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/end_to_end/test_espressif_e2e.py -------------------------------------------------------------------------------- /test/integration/end_to_end/test_generated_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/end_to_end/test_generated_e2e.py -------------------------------------------------------------------------------- /test/integration/end_to_end/test_infineon_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/end_to_end/test_infineon_e2e.py -------------------------------------------------------------------------------- /test/integration/end_to_end/test_microchip_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/end_to_end/test_microchip_e2e.py -------------------------------------------------------------------------------- /test/integration/run_component_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/run_component_tests.py -------------------------------------------------------------------------------- /test/integration/run_e2e_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/integration/run_e2e_tests.py -------------------------------------------------------------------------------- /test/performance/PERFORMANCE_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/performance/PERFORMANCE_TESTING.md -------------------------------------------------------------------------------- /test/performance/performance_test_integrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/performance/performance_test_integrated.py -------------------------------------------------------------------------------- /test/performance/run_performance_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/performance/run_performance_test.sh -------------------------------------------------------------------------------- /test/performance/sqs_batch_performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/performance/sqs_batch_performance_test.py -------------------------------------------------------------------------------- /test/performance/sqs_throttling_performance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/performance/sqs_throttling_performance_test.py -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/conftest.py -------------------------------------------------------------------------------- /test/unit/model_bulk_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/model_bulk_importer.py -------------------------------------------------------------------------------- /test/unit/model_product_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/model_product_verifier.py -------------------------------------------------------------------------------- /test/unit/model_provider_espressif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/model_provider_espressif.py -------------------------------------------------------------------------------- /test/unit/model_provider_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/model_provider_generated.py -------------------------------------------------------------------------------- /test/unit/model_provider_infineon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/model_provider_infineon.py -------------------------------------------------------------------------------- /test/unit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/requirements.txt -------------------------------------------------------------------------------- /test/unit/test_aws_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_aws_utils.py -------------------------------------------------------------------------------- /test/unit/test_bulk_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_bulk_importer.py -------------------------------------------------------------------------------- /test/unit/test_certificate_deployer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_certificate_deployer.py -------------------------------------------------------------------------------- /test/unit/test_certificate_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_certificate_generator.py -------------------------------------------------------------------------------- /test/unit/test_certificate_generator_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_certificate_generator_extended.py -------------------------------------------------------------------------------- /test/unit/test_certificate_generator_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_certificate_generator_main.py -------------------------------------------------------------------------------- /test/unit/test_certificate_generator_provider_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_certificate_generator_provider_integration.py -------------------------------------------------------------------------------- /test/unit/test_cfnresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_cfnresponse.py -------------------------------------------------------------------------------- /test/unit/test_circuit_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_circuit_state.py -------------------------------------------------------------------------------- /test/unit/test_product_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_product_verifier.py -------------------------------------------------------------------------------- /test/unit/test_provider_espressif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_provider_espressif.py -------------------------------------------------------------------------------- /test/unit/test_provider_espressif_throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_provider_espressif_throttling.py -------------------------------------------------------------------------------- /test/unit/test_provider_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_provider_generated.py -------------------------------------------------------------------------------- /test/unit/test_provider_infineon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_provider_infineon.py -------------------------------------------------------------------------------- /test/unit/test_provider_microchip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_provider_microchip.py -------------------------------------------------------------------------------- /test/unit/test_throttling_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-iot-builder-tools/thingpress/HEAD/test/unit/test_throttling_utils.py --------------------------------------------------------------------------------