stoobly-agent 1.0.7__tar.gz → 1.0.8__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.
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/PKG-INFO +2 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/pyproject.toml +2 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/__init__.py +1 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/constants.py +9 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/constants.py +6 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/builder.py +0 -2
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py +1 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py +0 -1
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/managed_services_docker_compose.py +9 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_command.py +3 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_config.py +2 -1
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/service_docker_compose.py +15 -0
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/service_workflow_validate_command.py +234 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/constants.py +3 -3
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/validate_command.py +59 -0
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/validate_exceptions.py +5 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow.py +22 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow_run_command.py +2 -1
- stoobly_agent-1.0.8/stoobly_agent/app/cli/scaffold/workflow_validate_command.py +94 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold_cli.py +40 -2
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/data_dir.py +10 -2
- stoobly_agent-1.0.8/stoobly_agent/test/app/cli/scaffold/e2e_test.py +428 -0
- stoobly_agent-1.0.8/stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION +1 -0
- stoobly_agent-1.0.8/stoobly_agent/test/mock_data/scaffold/docker-compose-assets-service.yml +18 -0
- stoobly_agent-1.0.8/stoobly_agent/test/mock_data/scaffold/docker-compose-local-service.yml +16 -0
- stoobly_agent-1.0.8/stoobly_agent/test/mock_data/scaffold/index.html +12 -0
- stoobly_agent-1.0.7/stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION +0 -1
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/LICENSE +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/README.md +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/application_http_request_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/bodies_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/configs_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/headers_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/proxy_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/query_params_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/replayed_response_headers_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/replayed_responses_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/requests_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/response_headers_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/responses_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/routes.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/scenarios_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/simple_http_request_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/api/statuses_controller.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/ca_cert_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/config_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/decorators/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/decorators/config.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/decorators/exec.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/dev_tools_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/endpoint_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/feature_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/handlers/request_cli_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/handlers/scenario_cli_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/certificate_authority.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/endpoint_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/endpoints_apply_context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/endpoints_apply_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/endpoints_import_context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/endpoints_import_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/feature_flags.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/handle_config_update_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/handle_mock_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/handle_replay_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/handle_test_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/iterate_group_by.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/json_print.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/openapi_endpoint_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/print_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/project_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/replay_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/report_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/request_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/request_synchronize_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/run_command_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/scenario_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/schema_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/shell.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/synchronize_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/tabulate_print_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/test_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/test_replay_context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/trace_aliases.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/trace_context_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/validations.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/helpers/verify_raw_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/intercept_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/main_group.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/project_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/report_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/request_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/app.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/app_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/app_config.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/app_create_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/config.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/app_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/service/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/service/build_decorator.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/service/builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/service/set_gateway_ports.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/service/types.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/build_decorator.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/workflow/decorators_factory.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/env.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_create_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_workflow.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.context +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.proxy +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/.Makefile +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/.docker-compose.base.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/Makefile +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/.config.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/.docker-compose.base.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/mock/.docker-compose.mock.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/mock/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/record/.docker-compose.record.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/record/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/test/.docker-compose.test.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.config.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/.docker-compose.mock.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/docker-compose.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/.docker-compose.record.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/docker-compose.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/.docker-compose.test.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/docker-compose.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/gateway/.config.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/gateway/.docker-compose.base.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/gateway/mock/.docker-compose.mock.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/gateway/record/.docker-compose.record.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/.config.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/.docker-compose.base.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/.docker-compose.exec.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.create +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.delete +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.disable +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.enable +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.mkcert +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.reset +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.run +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.snapshot +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/exec/bin/.stop +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/mock/.docker-compose.mock.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/record/.docker-compose.record.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/factory.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures/.keep +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/mock/lifecycle_hooks.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/record/lifecycle_hooks.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures/.keep +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/workflow/test/lifecycle_hooks.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow_copy_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow_create_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/workflow_log_command.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scenario_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/snapshot_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/trace_cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/output.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/print_options.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/scenario.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/types/test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/joined_request_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/mitmproxy/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/mitmproxy/request/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/mitmproxy/request/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/mitmproxy/response/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/mitmproxy/response/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/joined_request_string_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/request/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/request/mitmproxy_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/request/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/response/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/response/mitmproxy_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/orm/response/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/request/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/request/mitmproxy_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/request/raw_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/request/stoobly_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/response/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/response/mitmproxy_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/python/response/raw_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_http_request_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_http_response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_joined/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_joined/request/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_joined/request/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_joined/response/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/raw_joined/response/python_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/stoobly/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/stoobly/request/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/adapters/stoobly/request/mitmproxy_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/body_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/body.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/header.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/body_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/header_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/create_request_columns_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/log.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/log_event.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/request_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/request_snapshot.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/scenario_snapshot.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/search.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/snapshot.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/snapshot_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/snapshot_types.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/helpers/tiebreak_scenario_request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/local_db_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/orm_request_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/query_param_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/replayed_response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/request_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/response_header_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/local_db/scenario_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/query_param.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/replayed_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/response_header.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/scenario.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/stoobly/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/stoobly/request_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/factories/resource/stoobly/scenario_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/header_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/helpers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/helpers/apply.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/helpers/create_request_params_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/query_param_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/replayed_response_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/request_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/response_header_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/response_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/scenario_model.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/schemas/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/schemas/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/endpoint.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/replayed_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/request_components.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/models/types/scenario.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/constants/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/constants/custom_response_codes.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/handle_mock_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/handle_record_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/handle_replay_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/handle_test_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/hot_reload.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/intercept_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/intercept_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/flow_mock.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/request_body_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/request_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mitmproxy/response_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/custom_not_found_response_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/eval_fixtures_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/eval_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/hashed_request_decorator.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/ignored_components_response_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/request_hasher.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/search_endpoint.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/mock/types/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/join_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/joined_request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/overwrite_scenario_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/proxy_request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/request_string.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/request_string_control.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/response_string.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/response_string_control.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/record/upload_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/alias_context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/alias_resolver.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/body_parser_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/multipart.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/replay_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/replay_scenario_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/rewrite_params_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/replay/trace_context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/run.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/simulate_intercept_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/context_abc.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/context_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/diff_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/endpoint_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/mitmproxy_response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/request_component_names_facade.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/requests_response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/stoobly_response_adapter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/test_results_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/helpers/upload_test_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/context.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/contract.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/custom.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/diff.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/errors.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/fuzzy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/matchers/handlers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/test/test_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/allowed_request_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/publish_change_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/request_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/response_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/proxy/utils/rewrite_rules_to_ignored_components_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/cli_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/constants/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/constants/firewall_action.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/constants/intercept_mode.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/constants/mode.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/constants/request_component.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/data_rules.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/data_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/feature_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/firewall_rule.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/firewall_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/helpers/active_mode_settings_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/intercept_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/match_rule.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/match_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/parameter_rule.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/proxy_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/remote_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/rewrite_rule.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/rewrite_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/types/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/types/cli_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/types/proxy_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/types/remote_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/types/ui_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/ui_settings.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/settings/url_rule.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/cli.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/alias_resolve_strategy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/custom_headers.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/env_vars.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/headers.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/lifecycle_hooks.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/mitmproxy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/mock_policy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/mode.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/record_policy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/replay_policy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/request_origin.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/statuses.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/test_filter.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/test_output_level.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/constants/test_strategy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/mitmproxy.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/schema.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/settings.yml.sample +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/config/source_dir.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_03_17_060144_create_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_03_17_074916_create_responses.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_05_10_003705_create_traces.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_05_10_003840_create_trace_aliases.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_06_29_234516_create_trace_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_06_29_235155_add_trace_request_reference_to_trace_aliases.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_12_12_092437_align_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2022_12_28_092917_add_filter_columns_to_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_01_21_055426_create_scenarios.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_01_21_060225_add_scenario_id_reference_to_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_02_02_022229_create_replayed_responses.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_03_20_192909_add_http_version_column_to_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_03_20_220448_add_http_version_column_to_responses.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_04_18_071327_align_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_05_15_212505_add_uuid_column_to_requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_05_15_213119_add_uuid_column_to_scenarios.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/2023_05_29_053649_add_overwritable_column_to_scenarios.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/db/migrations/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/agent_api.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/api.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/body_param_names_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/endpoints_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/header_names_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/endpoints.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/headers.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/pagination_query_params.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/projects.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/query_params.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/reports.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/requests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/response_headers.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/responses.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/scenarios.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/tests.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/traces.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/interfaces/users.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/json_response_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/organization_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/project_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/report_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/request_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/resource_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/scenario_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/test_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/keys/uuid_key.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/param_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/projects_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/query_param_names_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/reports_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/requests_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/response_header_names_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/response_param_names_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/scenarios_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/stoobly_api.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/test_responses_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/tests_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/api/users_resource.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/cache.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/logger.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/base.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/migrate_service.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/replayed_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/scenario.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/trace.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/trace_alias.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/trace_request.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/transformers/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/transformers/orm_to_request_transformer.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/transformers/orm_to_requests_response_transformer.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/transformers/orm_to_stoobly_request_transformer.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/transformers/orm_to_stoobly_response_transformer.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/types/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/types/request_columns.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/types/response_columns.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/utils/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/utils/request_parse_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/utils/requests_response_builder.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/orm/utils/response_parse_handler.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/conditional_decorator.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/decode.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/jmespath.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/python_to_ruby_type.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/lib/utils/visitor.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/mock.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/0-es2015.c7c5a6d51b98cb85b9fc.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/0-es5.c7c5a6d51b98cb85b9fc.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/1-es2015.bb4492eeabe1fe937ada.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/1-es5.bb4492eeabe1fe937ada.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/10-es2015.56da22458086513ba0c7.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/10-es5.56da22458086513ba0c7.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/12-es2015.be58ed0ef449008b932e.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/12-es5.be58ed0ef449008b932e.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/13-es2015.343b0261a8b3b3f4a1fc.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/13-es5.343b0261a8b3b3f4a1fc.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/14-es2015.b6619d7742671d2a37fb.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/14-es5.b6619d7742671d2a37fb.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/15-es2015.d8855701408b0e1d7a3e.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/15-es5.d8855701408b0e1d7a3e.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/16-es2015.98fa59c2c96d2caac3c3.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/16-es5.98fa59c2c96d2caac3c3.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/17-es2015.7f60b56d1fd66d4d5544.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/17-es5.7f60b56d1fd66d4d5544.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/18-es2015.d3b430636a4d6f544d92.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/18-es5.d3b430636a4d6f544d92.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/19-es2015.78ec0e9fd228b5104712.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/19-es5.78ec0e9fd228b5104712.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/2-es2015.51eb8544ea9a21f2874c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/2-es5.51eb8544ea9a21f2874c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/20-es2015.90544c488f1f0900bab4.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/20-es5.90544c488f1f0900bab4.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/21-es2015.63ed4e6b242fbc047bd6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/21-es5.63ed4e6b242fbc047bd6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/22-es2015.1e96ef651f96d51191e2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/22-es5.1e96ef651f96d51191e2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/23-es2015.6d3052555b4fac38f16d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/23-es5.6d3052555b4fac38f16d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/28-es2015.a2bf42f38e4dd771ccea.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/28-es5.a2bf42f38e4dd771ccea.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/29-es2015.18b515f07c88753c7eb6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/29-es5.18b515f07c88753c7eb6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/30-es2015.d4d3dc4101400cadf3f3.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/30-es5.d4d3dc4101400cadf3f3.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/31-es2015.e3ea815f75c19c217b7d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/31-es5.e3ea815f75c19c217b7d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/32-es2015.57553995bff0ae518501.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/32-es5.57553995bff0ae518501.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/33-es2015.da5ba1e5baa164921198.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/33-es5.da5ba1e5baa164921198.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/34-es2015.87acbb95cfb824650157.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/34-es5.87acbb95cfb824650157.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/35-es2015.f741ebce0bfc25f0ec99.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/35-es5.f741ebce0bfc25f0ec99.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/36-es2015.e3a104020eeec02cb8c4.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/36-es5.e3a104020eeec02cb8c4.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/37-es2015.3b472e6cf303201bbf2c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/37-es5.3b472e6cf303201bbf2c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/38-es2015.39dbf43d46cdc94f78c6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/38-es5.39dbf43d46cdc94f78c6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/39-es2015.e5475ea4fb6ec5c60741.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/39-es5.e5475ea4fb6ec5c60741.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/3rdpartylicenses.txt +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/4-es2015.f8ac5475bf103969b2d2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/4-es5.f8ac5475bf103969b2d2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/40-es2015.47b2873a8439717af6a7.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/40-es5.47b2873a8439717af6a7.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/41-es2015.69f2771002745c066976.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/41-es5.69f2771002745c066976.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/42-es2015.b590b92ede890155dcd6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/42-es5.b590b92ede890155dcd6.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/43-es2015.ad1d956bffba561ba64c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/43-es5.ad1d956bffba561ba64c.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/44-es2015.3ef2c17996ed5be95ced.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/44-es5.3ef2c17996ed5be95ced.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/45-es2015.3d65d27e0a7085e96356.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/45-es5.3d65d27e0a7085e96356.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/46-es2015.e4f0a5b127eae13c27c0.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/46-es5.e4f0a5b127eae13c27c0.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/47-es2015.c7d45334a70131f133b5.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/47-es5.c7d45334a70131f133b5.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/5-es2015.90ea7bd4439d9749e052.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/5-es5.90ea7bd4439d9749e052.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/6-es2015.5fb726c0555664300974.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/6-es5.5fb726c0555664300974.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/7-es2015.19ccb84e62e2ea874f53.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/7-es5.19ccb84e62e2ea874f53.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/8-es2015.b901639e2aeff1358c3d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/8-es5.b901639e2aeff1358c3d.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/9-es2015.b7bcad8238f58e214f03.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/9-es5.b7bcad8238f58e214f03.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/CHANGELOG.md +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/README.md +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/_redirects +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/1.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/2.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/3.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/4.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/5.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/6.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/7.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/8.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/landscape.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/demo/mountain-cinematic.jpg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/checklist.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/data_center.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/idea.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/it_support.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/peak_mountain_3.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/illustrations/under_constructions_1.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/logo/colored.png +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/logo/colored.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/logo/white.png +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/assets/img/logo/white.svg +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/common-es2015.388805227aa99c527fba.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/common-es5.388805227aa99c527fba.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/favicon.ico +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/index.html +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/main-es2015.ccd46ac1b6638ddf2066.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/main-es5.ccd46ac1b6638ddf2066.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/polyfills-es2015.8ce2adc69f283f6c4c5e.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/polyfills-es5.7530172ddcec11a10eb3.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/runtime-es2015.9addf49b79aca951b7e2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/runtime-es5.9addf49b79aca951b7e2.js +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/public/styles.ab281309cf423b2cdcb0.css +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/cli_mock_integration_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/config/firewall_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/config/match_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/config/project/config_project_set_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/config/rewrite_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/config/scenario/config_scenario_set_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/endpoint/endpoint_cli_apply_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/certificate_authority_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_additional_props_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_info_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_oauth2_scopes_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_missing_servers_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/schema_builder_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/helpers/synchronize_request_service_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/intercept/intercept_configure_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/intercept/intercept_enable_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_delete_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_list_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_replay_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_reset_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_response_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_snapshot_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/request/request_test_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_create_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_replay_integration_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_replay_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_reset_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_snapshot_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/scenario/scenario_test_integration_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/snapshot/snapshot_apply_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/snapshot/snapshot_copy_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/snapshot/snapshot_prune_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/cli/snapshot/snapshot_update_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/orm/joined_request_string_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/orm/request/orm_mitmproxy_request_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/orm/request/orm_python_request_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/orm/response/orm_mitmproxy_response_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/orm/response/orm_python_response_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/python/request/mitmproxy_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/python/request/raw_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/python/request/stoobly_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/python/response/mitmproxy_response_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/adapters/python/response/raw_response_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/factories/resource/local_db/helpers/log_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/factories/resource/local_db/helpers/tiebreak_scenario_request_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/factories/resource/local_db/request_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/factories/resource/local_db/response_adapter_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/schemas/.stoobly/db/stoobly_agent.sqlite3 +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/schemas/.stoobly/settings.yml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/schemas/.stoobly/tmp/options.json +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/models/schemas/request_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/mitmproxy/request_facade_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/mock/eval_fixtures_service_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/replay/body_parser_service_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/replay/rewrite_params_service_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/replay/trace_context_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/replay/visitor_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/test/helpers/test_results_builder_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/upload/request_string_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/proxy/upload/response_string_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/test/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/test/matchers/contract_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/test/matchers/diff_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/app/test/matchers/fuzzy_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/cli/mock_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/cli/record_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/config/data_dir_test.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/__init__.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/endpoint_show_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-additional-props.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-expanded.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-missing-info.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-missing-oauth2-scopes.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-missing-servers.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-references.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore-swagger-io.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/petstore.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/request_show_response.py +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/mock_data/uspto.yaml +0 -0
- {stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/test/test_helper.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: stoobly-agent
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.8
|
4
4
|
Summary: Record, mock, and test HTTP(s) requests. CLI agent for Stoobly
|
5
5
|
License: Apache-2.0
|
6
6
|
Author: Matt Le
|
@@ -16,6 +16,7 @@ Requires-Dist: click (>=8.1.0,<9.0.0)
|
|
16
16
|
Requires-Dist: diff-match-patch (>=20230430,<20230431)
|
17
17
|
Requires-Dist: distro (>=1.6.0,<1.7.0)
|
18
18
|
Requires-Dist: dnspython (>=2.6.1,<2.7.0)
|
19
|
+
Requires-Dist: docker (>=7.1.0,<8.0)
|
19
20
|
Requires-Dist: httptools (>=0.4.0)
|
20
21
|
Requires-Dist: jmespath (>=1.0.0)
|
21
22
|
Requires-Dist: mergedeep (>=1.3.0,<1.3.4)
|
@@ -10,12 +10,13 @@ description = "Record, mock, and test HTTP(s) requests. CLI agent for Stoobly"
|
|
10
10
|
license = "Apache License 2.0"
|
11
11
|
name = "stoobly-agent"
|
12
12
|
readme = "README.md"
|
13
|
-
version = "1.0.
|
13
|
+
version = "1.0.8"
|
14
14
|
|
15
15
|
[tool.poetry.dependencies]
|
16
16
|
python = "^3.10"
|
17
17
|
|
18
18
|
click = "^8.1.0"
|
19
|
+
docker = ">=7.1.0,<8.0"
|
19
20
|
diff-match-patch = "^20230430"
|
20
21
|
distro = ">=1.6.0,<1.7.0"
|
21
22
|
dnspython = ">=2.6.1,<2.7.0"
|
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '1.0.
|
2
|
+
VERSION = '1.0.8'
|
@@ -1,5 +1,8 @@
|
|
1
1
|
from typing import Literal
|
2
2
|
|
3
|
+
from stoobly_agent.config.data_dir import DATA_DIR_NAME
|
4
|
+
|
5
|
+
|
3
6
|
APP_NETWORK_ENV = 'APP_NETWORK'
|
4
7
|
CA_CERTS_DIR_ENV = 'CA_CERTS_DIR'
|
5
8
|
CERTS_DIR_ENV = 'CERTS_DIR'
|
@@ -26,11 +29,16 @@ SERVICE_PORT = '${SERVICE_PORT}'
|
|
26
29
|
SERVICE_PORT_ENV = 'SERVICE_PORT'
|
27
30
|
SERVICE_PRIORITY_ENV = 'SERVICE_PRIORITY'
|
28
31
|
STOOBLY_HOME_DIR = '/home/stoobly'
|
32
|
+
STOOBLY_DATA_DIR = f"{STOOBLY_HOME_DIR}/{DATA_DIR_NAME}"
|
29
33
|
USER_ID_ENV = 'USER_ID'
|
34
|
+
VIRTUAL_HOST_ENV = 'VIRTUAL_HOST'
|
35
|
+
VIRTUAL_PORT_ENV = 'VIRTUAL_PORT'
|
36
|
+
VIRTUAL_PROTO_ENV = 'VIRTUAL_PROTO'
|
30
37
|
WORKFLOW_CUSTOM_FILTER = 'custom'
|
31
38
|
WORKFLOW_MOCK_TYPE = 'mock'
|
32
39
|
WORKFLOW_NAME_ENV = 'WORKFLOW_NAME'
|
33
40
|
WORKFLOW_RECORD_TYPE = 'record'
|
34
41
|
WORKFLOW_TEST_TYPE = 'test'
|
35
42
|
|
36
|
-
WORKFLOW_TEMPLATE = Literal[WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]
|
43
|
+
WORKFLOW_TEMPLATE = Literal[WORKFLOW_MOCK_TYPE, WORKFLOW_RECORD_TYPE, WORKFLOW_TEST_TYPE]
|
44
|
+
|
{stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/docker/constants.py
RENAMED
@@ -5,3 +5,9 @@ DOCKERFILE_CONTEXT = '.Dockerfile.context'
|
|
5
5
|
DOCKERFILE_PROXY = '.Dockerfile.proxy'
|
6
6
|
DOCKERFILE_SERVICE = 'Dockerfile.source'
|
7
7
|
GATEWAY_NETWORK = 'gateway'
|
8
|
+
|
9
|
+
# TODO: add scaffold container name templates here
|
10
|
+
|
11
|
+
# Example:
|
12
|
+
# COMPOSE_TEMPLATE = 'docker-compose.{workflow}.yml'
|
13
|
+
|
@@ -182,7 +182,6 @@ class WorkflowBuilder(Builder):
|
|
182
182
|
|
183
183
|
depends_on = {}
|
184
184
|
environment = { **self.env_dict() }
|
185
|
-
extra_hosts = []
|
186
185
|
networks = [self.service_builder.service_name]
|
187
186
|
volumes = []
|
188
187
|
|
@@ -190,7 +189,6 @@ class WorkflowBuilder(Builder):
|
|
190
189
|
'build': self.proxy_build,
|
191
190
|
'depends_on': depends_on,
|
192
191
|
'environment': environment,
|
193
|
-
'extra_hosts': extra_hosts,
|
194
192
|
'extends': self.service_builder.build_extends_proxy_base(self.dir_path),
|
195
193
|
'networks': networks,
|
196
194
|
'profiles': self.profiles,
|
@@ -0,0 +1,9 @@
|
|
1
|
+
|
2
|
+
class ManagedServicesDockerCompose():
|
3
|
+
def __init__(self, target_workflow_name):
|
4
|
+
self.init_container_name = f"{target_workflow_name}-build.init-1"
|
5
|
+
self.configure_container_name = f"{target_workflow_name}-build.configure-1"
|
6
|
+
self.gateway_container_name = f"{target_workflow_name}-gateway.service-1"
|
7
|
+
self.mock_ui_container_name = f"{target_workflow_name}-stoobly_ui.service-1"
|
8
|
+
self.entrypoint_init_container_name = f"{target_workflow_name}-entrypoint.init-1"
|
9
|
+
self.entrypoint_configure_container_name = f"{target_workflow_name}-entrypoint.configure-1"
|
{stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_command.py
RENAMED
@@ -5,6 +5,7 @@ from .app import App
|
|
5
5
|
from .app_command import AppCommand
|
6
6
|
from .service_config import ServiceConfig
|
7
7
|
|
8
|
+
|
8
9
|
class ServiceCommand(AppCommand):
|
9
10
|
|
10
11
|
def __init__(self, app: App, **kwargs):
|
@@ -47,4 +48,5 @@ class ServiceCommand(AppCommand):
|
|
47
48
|
_config = self.app_config.read()
|
48
49
|
_config.update(self.service_config.read())
|
49
50
|
_config.update(_c)
|
50
|
-
return _config
|
51
|
+
return _config
|
52
|
+
|
{stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/service_config.py
RENAMED
@@ -210,4 +210,5 @@ class ServiceConfig(Config):
|
|
210
210
|
|
211
211
|
# Split the DNS servers string into a list
|
212
212
|
dns_servers = match[0].strip().split("\n")
|
213
|
-
return list(map(lambda dns_server: dns_server.strip(), dns_servers))
|
213
|
+
return list(map(lambda dns_server: dns_server.strip(), dns_servers))
|
214
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
from stoobly_agent.config.data_dir import DataDir
|
2
|
+
|
3
|
+
|
4
|
+
class ServiceDockerCompose():
|
5
|
+
def __init__(self, app_dir_path, target_workflow_name, service_name, hostname):
|
6
|
+
self.service_name = service_name
|
7
|
+
self.hostname = hostname
|
8
|
+
self.container_name = f"{target_workflow_name}-{service_name}-1"
|
9
|
+
self.proxy_container_name = f"{target_workflow_name}-{service_name}.proxy-1"
|
10
|
+
self.init_container_name = f"{target_workflow_name}-{service_name}.init-1"
|
11
|
+
self.configure_container_name = f"{target_workflow_name}-{service_name}.configure-1"
|
12
|
+
|
13
|
+
data_dir_path = DataDir.instance(app_dir_path).path
|
14
|
+
self.docker_compose_path = f"{data_dir_path}/docker/{service_name}/{target_workflow_name}/docker-compose.yml"
|
15
|
+
self.init_script_path = f"{data_dir_path}/docker/{service_name}/{target_workflow_name}/bin/init"
|
@@ -0,0 +1,234 @@
|
|
1
|
+
import os
|
2
|
+
import pdb
|
3
|
+
import ssl
|
4
|
+
from collections import Counter
|
5
|
+
from pathlib import Path
|
6
|
+
|
7
|
+
import requests
|
8
|
+
import yaml
|
9
|
+
from docker.models.containers import Container
|
10
|
+
from requests.adapters import HTTPAdapter
|
11
|
+
from urllib3 import Retry
|
12
|
+
|
13
|
+
from stoobly_agent.app.cli.scaffold.constants import (
|
14
|
+
FIXTURES_FOLDER_NAME,
|
15
|
+
STOOBLY_DATA_DIR,
|
16
|
+
STOOBLY_HOME_DIR,
|
17
|
+
VIRTUAL_HOST_ENV,
|
18
|
+
VIRTUAL_PORT_ENV,
|
19
|
+
VIRTUAL_PROTO_ENV,
|
20
|
+
WORKFLOW_RECORD_TYPE,
|
21
|
+
WORKFLOW_TEST_TYPE,
|
22
|
+
)
|
23
|
+
from stoobly_agent.app.cli.scaffold.service_command import ServiceCommand
|
24
|
+
from stoobly_agent.app.cli.scaffold.service_docker_compose import ServiceDockerCompose
|
25
|
+
from stoobly_agent.app.cli.scaffold.validate_command import ValidateCommand
|
26
|
+
from stoobly_agent.app.cli.scaffold.validate_exceptions import ScaffoldValidateException
|
27
|
+
from stoobly_agent.config.data_dir import DATA_DIR_NAME
|
28
|
+
|
29
|
+
from .app import App
|
30
|
+
|
31
|
+
|
32
|
+
class ServiceWorkflowValidateCommand(ServiceCommand, ValidateCommand):
|
33
|
+
def __init__(self, app: App, **kwargs):
|
34
|
+
ServiceCommand.__init__(self, app, **kwargs)
|
35
|
+
ValidateCommand.__init__(self)
|
36
|
+
|
37
|
+
self.workflow_name = kwargs['workflow_name']
|
38
|
+
self.hostname = self.service_config.hostname
|
39
|
+
self.service_docker_compose = ServiceDockerCompose(app_dir_path=app.dir_path, target_workflow_name=self.workflow_name, service_name=self.service_name, hostname=self.hostname)
|
40
|
+
|
41
|
+
@property
|
42
|
+
def fixtures_dir_path(self):
|
43
|
+
return os.path.join(self.workflow_path, FIXTURES_FOLDER_NAME)
|
44
|
+
|
45
|
+
@property
|
46
|
+
def workflow_path(self):
|
47
|
+
return os.path.join(
|
48
|
+
self.scaffold_dir_path,
|
49
|
+
self.workflow_relative_path
|
50
|
+
)
|
51
|
+
@property
|
52
|
+
def workflow_relative_path(self):
|
53
|
+
return os.path.join(
|
54
|
+
self.service_relative_path,
|
55
|
+
self.workflow_name
|
56
|
+
)
|
57
|
+
|
58
|
+
def is_local(self):
|
59
|
+
with open (self.service_docker_compose.docker_compose_path,'rb') as f:
|
60
|
+
docker_compose_file_content = yaml.safe_load(f)
|
61
|
+
if docker_compose_file_content and docker_compose_file_content.get('services'):
|
62
|
+
return True
|
63
|
+
|
64
|
+
# We can potentially check the port too someday
|
65
|
+
|
66
|
+
return False
|
67
|
+
|
68
|
+
def is_external(self):
|
69
|
+
return not self.is_local()
|
70
|
+
|
71
|
+
def hostname_reachable(self, url: str) -> None:
|
72
|
+
# Retry HTTP request. Source: https://stackoverflow.com/questions/15431044/can-i-set-max-retries-for-requests-request
|
73
|
+
session = requests.Session()
|
74
|
+
retries = Retry(total=5,
|
75
|
+
backoff_factor=0.1,
|
76
|
+
status_forcelist=[ 500, 502, 503, 504 ])
|
77
|
+
session.mount('http://', HTTPAdapter(max_retries=retries))
|
78
|
+
session.mount('https://', HTTPAdapter(max_retries=retries))
|
79
|
+
|
80
|
+
# Use default OpenSSL path to CA certs on the system
|
81
|
+
default_ssl_verify_paths = ssl.get_default_verify_paths()
|
82
|
+
default_capath = default_ssl_verify_paths.capath
|
83
|
+
|
84
|
+
response = session.get(url=url, verify=default_capath)
|
85
|
+
if not response.ok:
|
86
|
+
raise ScaffoldValidateException(f"Host is not reachable: {url}")
|
87
|
+
|
88
|
+
def validate_hostname(self, url: str) -> None:
|
89
|
+
print(f"Validating hostname: {url}")
|
90
|
+
self.hostname_reachable(url)
|
91
|
+
|
92
|
+
# TODO: check logs of proxy. lifecycle hook for custom logging? Does mitmproxy support json logging?
|
93
|
+
|
94
|
+
def validate_internal_hostname(self, url: str) -> None:
|
95
|
+
print(f"Validating hostname inside Docker network, url: {url}")
|
96
|
+
|
97
|
+
timeout_seconds = 1
|
98
|
+
output = self.docker_client.containers.run(
|
99
|
+
image='curlimages/curl:8.11.0',
|
100
|
+
command=f"curl --max-time {timeout_seconds} {url} --verbose",
|
101
|
+
network=self.app_config.network,
|
102
|
+
stderr=True,
|
103
|
+
remove=True,
|
104
|
+
)
|
105
|
+
|
106
|
+
# Note: 499 error could also mean success because it shows the proxy
|
107
|
+
# connection is working, but we haven't recorded anything yet
|
108
|
+
logs = output.decode('ascii')
|
109
|
+
if ('200 OK' not in logs) and ('499' not in logs):
|
110
|
+
raise ScaffoldValidateException(f"Error reaching {url} from inside Docker network")
|
111
|
+
|
112
|
+
# Check fixtures folder mounted into container
|
113
|
+
def validate_fixtures_folder(self, container: Container):
|
114
|
+
|
115
|
+
if self.workflow_name == WORKFLOW_RECORD_TYPE:
|
116
|
+
print(f"Skipping validating fixtures folder in workflow: {self.workflow_name}, container: {container.name}")
|
117
|
+
return
|
118
|
+
|
119
|
+
print(f"Validating fixtures folder in container: {container.name}")
|
120
|
+
|
121
|
+
data_dir_mounted = False
|
122
|
+
volume_mounts = container.attrs['Mounts']
|
123
|
+
|
124
|
+
for volume_mount in volume_mounts:
|
125
|
+
if volume_mount['Destination'] == STOOBLY_DATA_DIR:
|
126
|
+
data_dir_mounted = True
|
127
|
+
break
|
128
|
+
if not data_dir_mounted:
|
129
|
+
raise ScaffoldValidateException(f"Data directory is not mounted for: {container.name}")
|
130
|
+
|
131
|
+
# Only the running proxy containers will be checkable
|
132
|
+
if container.status == 'exited':
|
133
|
+
print(f"Skipping validating fixtures folder contents because container is exited: {container.name}")
|
134
|
+
return
|
135
|
+
|
136
|
+
# Check contents of fixtures folder to confirm it's shared
|
137
|
+
fixtures_folder_path = f"{STOOBLY_HOME_DIR}/{self.workflow_name}/{FIXTURES_FOLDER_NAME}"
|
138
|
+
exec_result = container.exec_run(f"ls -A {fixtures_folder_path}")
|
139
|
+
output = exec_result.output
|
140
|
+
|
141
|
+
fixtures_folder_contents_container = output.decode('ascii').split('\n')
|
142
|
+
if fixtures_folder_contents_container[-1] == '':
|
143
|
+
fixtures_folder_contents_container.pop()
|
144
|
+
fixtures_folder_contents_scaffold = os.listdir(self.fixtures_dir_path)
|
145
|
+
|
146
|
+
if Counter(fixtures_folder_contents_container) != Counter(fixtures_folder_contents_scaffold):
|
147
|
+
raise ScaffoldValidateException(f"Fixtures was not mounted properly, expected {self.fixtures_dir_path} to exist in container path {fixtures_folder_path}")
|
148
|
+
|
149
|
+
# Note: might not need this if the hostname is reachable and working
|
150
|
+
def proxy_environment_variables_exist(self, container: Container) -> None:
|
151
|
+
environment_variables = container.attrs['Config']['Env']
|
152
|
+
virtual_host_exists = False
|
153
|
+
virtual_port_exists = False
|
154
|
+
virtual_proto_exists = False
|
155
|
+
|
156
|
+
for environment_variable in environment_variables:
|
157
|
+
environment_variable_name, environment_variable_value = environment_variable.split('=')
|
158
|
+
if environment_variable_name == VIRTUAL_HOST_ENV:
|
159
|
+
virtual_host_exists = True
|
160
|
+
elif environment_variable_name == VIRTUAL_PORT_ENV:
|
161
|
+
virtual_port_exists = True
|
162
|
+
elif environment_variable_name == VIRTUAL_PROTO_ENV:
|
163
|
+
virtual_proto_exists = True
|
164
|
+
|
165
|
+
if not virtual_host_exists:
|
166
|
+
raise ScaffoldValidateException(f"VIRTUAL_HOST environment variable is missing from container: {container.name}")
|
167
|
+
if not virtual_port_exists:
|
168
|
+
raise ScaffoldValidateException(f"VIRTUAL_POST environment variable is missing from container: {container.name}")
|
169
|
+
if not virtual_proto_exists:
|
170
|
+
raise ScaffoldValidateException(f"VIRTUAL_PROTO environment variable is missing from container: {container.name}")
|
171
|
+
|
172
|
+
|
173
|
+
def validate_proxy_container(self, service_proxy_container: Container):
|
174
|
+
print(f"Validating proxy container: {service_proxy_container.name}")
|
175
|
+
if not service_proxy_container.attrs:
|
176
|
+
raise ScaffoldValidateException(f"Container attributes are missing for: {container.name}")
|
177
|
+
|
178
|
+
if not self.service_config.detached:
|
179
|
+
self.validate_fixtures_folder(service_proxy_container)
|
180
|
+
|
181
|
+
self.proxy_environment_variables_exist(service_proxy_container)
|
182
|
+
|
183
|
+
def validate_service_container(self):
|
184
|
+
pass
|
185
|
+
|
186
|
+
def validate(self) -> bool:
|
187
|
+
print(f"Validating service: {self.service_name}")
|
188
|
+
|
189
|
+
url = f"{self.service_config.scheme}://{self.hostname}"
|
190
|
+
|
191
|
+
if self.service_config.hostname and self.workflow_name not in [WORKFLOW_TEST_TYPE]:
|
192
|
+
self.validate_hostname(url)
|
193
|
+
|
194
|
+
# Test workflow won't expose services that are detached and have a hostname to the host such as assets.
|
195
|
+
# Need to test connection from inside the Docker network
|
196
|
+
if self.service_config.hostname and self.workflow_name == WORKFLOW_TEST_TYPE and self.service_config.detached:
|
197
|
+
self.validate_internal_hostname(url)
|
198
|
+
|
199
|
+
self.validate_init_containers(self.service_docker_compose.init_container_name, self.service_docker_compose.configure_container_name)
|
200
|
+
|
201
|
+
# Service init containers have a mounted dist folder unlike the core init container
|
202
|
+
init_container = self.docker_client.containers.get(self.service_docker_compose.init_container_name)
|
203
|
+
self.validate_fixtures_folder(init_container)
|
204
|
+
|
205
|
+
if self.service_config.hostname:
|
206
|
+
service_proxy_container = self.docker_client.containers.get(self.service_docker_compose.proxy_container_name)
|
207
|
+
self.validate_proxy_container(service_proxy_container)
|
208
|
+
|
209
|
+
if self.is_local():
|
210
|
+
print(f"Validating local user defined service: {self.service_name}")
|
211
|
+
# Validate docker-compose path exists
|
212
|
+
docker_compose_path = f"{self.app_dir_path}/{DATA_DIR_NAME}/docker/{self.service_docker_compose.service_name}/{self.workflow_name}/docker-compose.yml"
|
213
|
+
destination_path = Path(docker_compose_path)
|
214
|
+
if not destination_path.is_file():
|
215
|
+
raise ScaffoldValidateException(f"Docker compose path is not a file: {destination_path}")
|
216
|
+
|
217
|
+
# Validate docker-compose.yml file has the service defined
|
218
|
+
with open(destination_path) as f:
|
219
|
+
if self.service_name not in f.read():
|
220
|
+
raise ScaffoldValidateException(f"Local service is not defined in Docker Compose file: {destination_path}")
|
221
|
+
|
222
|
+
service_container = self.docker_client.containers.get(self.service_docker_compose.container_name)
|
223
|
+
if service_container.status == 'exited':
|
224
|
+
return False
|
225
|
+
|
226
|
+
if self.service_config.detached:
|
227
|
+
service_container = self.docker_client.containers.get(self.service_docker_compose.container_name)
|
228
|
+
self.validate_detached(service_container)
|
229
|
+
|
230
|
+
print(f"Done validating service: {self.service_name}, success!")
|
231
|
+
print()
|
232
|
+
|
233
|
+
return True
|
234
|
+
|
{stoobly_agent-1.0.7 → stoobly_agent-1.0.8}/stoobly_agent/app/cli/scaffold/templates/constants.py
RENAMED
@@ -1,9 +1,9 @@
|
|
1
1
|
import os
|
2
2
|
|
3
3
|
CORE_BUILD_SERVICE_NAME = 'build'
|
4
|
-
CORE_MOCK_UI_SERVICE_NAME = 'stoobly-ui'
|
5
|
-
CORE_GATEWAY_SERVICE_NAME = 'gateway'
|
6
4
|
CORE_ENTRYPOINT_SERVICE_NAME = 'entrypoint'
|
5
|
+
CORE_GATEWAY_SERVICE_NAME = 'gateway'
|
6
|
+
CORE_MOCK_UI_SERVICE_NAME = 'stoobly-ui'
|
7
7
|
CORE_SERVICES = [
|
8
8
|
CORE_BUILD_SERVICE_NAME, CORE_ENTRYPOINT_SERVICE_NAME, CORE_MOCK_UI_SERVICE_NAME, CORE_GATEWAY_SERVICE_NAME
|
9
9
|
]
|
@@ -60,4 +60,4 @@ TEST_WORKFLOW_CUSTOM_FILES = [
|
|
60
60
|
CUSTOM_LIFECYCLE_HOOKS
|
61
61
|
]
|
62
62
|
|
63
|
-
SERVICE_HOSTNAME_BUILD_ARG = 'SERVICE_HOSTNAME'
|
63
|
+
SERVICE_HOSTNAME_BUILD_ARG = 'SERVICE_HOSTNAME'
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import pdb
|
2
|
+
from time import sleep
|
3
|
+
|
4
|
+
import docker
|
5
|
+
from docker import errors as docker_errors
|
6
|
+
from docker.models.containers import Container
|
7
|
+
|
8
|
+
from stoobly_agent.app.cli.scaffold.validate_exceptions import ScaffoldValidateException
|
9
|
+
from stoobly_agent.config.data_dir import DATA_DIR_NAME
|
10
|
+
|
11
|
+
|
12
|
+
class ValidateCommand():
|
13
|
+
def __init__(self):
|
14
|
+
self.docker_client = docker.from_env()
|
15
|
+
|
16
|
+
# Some containers like init and configure can take longer than expected to finish so retry
|
17
|
+
def __get_container(self, container_name: str) -> Container:
|
18
|
+
tries = 30
|
19
|
+
for _ in range(tries):
|
20
|
+
try:
|
21
|
+
container = self.docker_client.containers.get(container_name)
|
22
|
+
return container
|
23
|
+
except docker_errors.NotFound:
|
24
|
+
sleep(0.5)
|
25
|
+
|
26
|
+
raise ScaffoldValidateException(f"Container not found: {container_name}")
|
27
|
+
|
28
|
+
def validate_init_containers(self, init_container_name, configure_container_name) -> None:
|
29
|
+
print(f"Validating setup containers: {init_container_name}, {configure_container_name}")
|
30
|
+
|
31
|
+
|
32
|
+
init_container = self.__get_container(init_container_name)
|
33
|
+
logs = init_container.logs()
|
34
|
+
if logs:
|
35
|
+
raise ScaffoldValidateException(f"Error logs potentially detected in: {init_container_name}")
|
36
|
+
if init_container.status != 'exited' or init_container.attrs['State']['ExitCode'] != 0:
|
37
|
+
raise ScaffoldValidateException(f"init container has not exited like expected: {init_container_name}")
|
38
|
+
|
39
|
+
configure_container = self.__get_container(configure_container_name)
|
40
|
+
|
41
|
+
configure_container_ran = False
|
42
|
+
if configure_container.status == 'exited' and configure_container.attrs['State']['ExitCode'] == 0:
|
43
|
+
configure_container_ran = True
|
44
|
+
if not configure_container_ran:
|
45
|
+
raise ScaffoldValidateException(f"Configure container has not ran as expected: {configure_container_name}")
|
46
|
+
|
47
|
+
def validate_detached(self, container: Container) -> None:
|
48
|
+
print(f"Validating detached for: {container.name}")
|
49
|
+
|
50
|
+
if not container.attrs:
|
51
|
+
raise ScaffoldValidateException(f"Container is missing: {container.name}")
|
52
|
+
|
53
|
+
volume_mounts = container.attrs['Mounts']
|
54
|
+
for volume_mount in volume_mounts:
|
55
|
+
if DATA_DIR_NAME in volume_mount['Source']:
|
56
|
+
return
|
57
|
+
|
58
|
+
raise ScaffoldValidateException(f"Data directory is missing from container: {container.name}")
|
59
|
+
|
@@ -1,9 +1,10 @@
|
|
1
1
|
import os
|
2
|
-
|
2
|
+
import pdb
|
3
3
|
from typing import List
|
4
4
|
|
5
5
|
from .app import App
|
6
6
|
|
7
|
+
|
7
8
|
class Workflow():
|
8
9
|
|
9
10
|
def __init__(self, workflow_name: str, app: App):
|
@@ -34,6 +35,26 @@ class Workflow():
|
|
34
35
|
def service_paths(self):
|
35
36
|
return self.app.service_paths
|
36
37
|
|
38
|
+
# TODO: merge into 1 services property
|
39
|
+
|
40
|
+
# Returns services that run in this specific workflow
|
41
|
+
@property
|
42
|
+
def services_ran(self) -> List[str]:
|
43
|
+
services_dir = os.path.join(self.app.scaffold_dir_path, self.app.namespace)
|
44
|
+
|
45
|
+
services = []
|
46
|
+
for filename in os.listdir(services_dir):
|
47
|
+
path = os.path.join(services_dir, filename)
|
48
|
+
if not os.path.isdir(path):
|
49
|
+
continue
|
50
|
+
|
51
|
+
for sub_path in os.scandir(path):
|
52
|
+
if os.path.isdir(sub_path):
|
53
|
+
if sub_path.name == self.workflow_name:
|
54
|
+
services.append(filename)
|
55
|
+
|
56
|
+
return services
|
57
|
+
|
37
58
|
def service_paths_from_services(self, services: List[str]):
|
38
59
|
app_namespace_path = self.app.namespace_path
|
39
60
|
return list(map(lambda service: os.path.join(app_namespace_path, service), services))
|
@@ -0,0 +1,94 @@
|
|
1
|
+
import pdb
|
2
|
+
|
3
|
+
from docker import errors as docker_errors
|
4
|
+
|
5
|
+
from stoobly_agent.app.cli.scaffold.constants import WORKFLOW_TEST_TYPE
|
6
|
+
from stoobly_agent.app.cli.scaffold.managed_services_docker_compose import (
|
7
|
+
ManagedServicesDockerCompose,
|
8
|
+
)
|
9
|
+
from stoobly_agent.app.cli.scaffold.templates.constants import (
|
10
|
+
CORE_ENTRYPOINT_SERVICE_NAME,
|
11
|
+
CORE_GATEWAY_SERVICE_NAME,
|
12
|
+
CORE_MOCK_UI_SERVICE_NAME,
|
13
|
+
CORE_SERVICES,
|
14
|
+
)
|
15
|
+
from stoobly_agent.app.cli.scaffold.validate_command import ValidateCommand
|
16
|
+
from stoobly_agent.app.cli.scaffold.validate_exceptions import ScaffoldValidateException
|
17
|
+
from stoobly_agent.app.cli.scaffold.workflow_command import WorkflowCommand
|
18
|
+
|
19
|
+
from .app import App
|
20
|
+
|
21
|
+
|
22
|
+
class WorkflowValidateCommand(WorkflowCommand, ValidateCommand):
|
23
|
+
def __init__(self, app: App, **kwargs):
|
24
|
+
WorkflowCommand.__init__(self, app, **kwargs)
|
25
|
+
ValidateCommand.__init__(self)
|
26
|
+
self.managed_services_docker_compose = ManagedServicesDockerCompose(target_workflow_name=self.workflow_name)
|
27
|
+
|
28
|
+
def validate_core_components(self):
|
29
|
+
print(f"Validating core component: {CORE_GATEWAY_SERVICE_NAME}")
|
30
|
+
gateway_container_name = self.managed_services_docker_compose.gateway_container_name
|
31
|
+
gateway_container = self.docker_client.containers.get(gateway_container_name)
|
32
|
+
if not gateway_container or (gateway_container.status != 'running'):
|
33
|
+
raise ScaffoldValidateException(f"Container '{gateway_container_name}' not found for service '{CORE_GATEWAY_SERVICE_NAME}'")
|
34
|
+
|
35
|
+
print(f"Validating core component: {CORE_MOCK_UI_SERVICE_NAME}")
|
36
|
+
mock_ui_container_name = self.managed_services_docker_compose.mock_ui_container_name
|
37
|
+
mock_ui_container = self.docker_client.containers.get(mock_ui_container_name)
|
38
|
+
if not mock_ui_container or (mock_ui_container.status != 'running'):
|
39
|
+
raise ScaffoldValidateException(f"Container '{mock_ui_container_name}' not found for service '{CORE_MOCK_UI_SERVICE_NAME}'")
|
40
|
+
|
41
|
+
def validate_no_core_components(self):
|
42
|
+
try:
|
43
|
+
core_gateway_container = self.docker_client.containers.get(self.managed_services_docker_compose.gateway_container_name)
|
44
|
+
if core_gateway_container:
|
45
|
+
raise ScaffoldValidateException(f"Gateway container is running when it shouldn't: {core_gateway_container.name}")
|
46
|
+
except docker_errors.NotFound:
|
47
|
+
pass
|
48
|
+
|
49
|
+
try:
|
50
|
+
core_mock_ui_container_name = self.docker_client.containers.get(self.managed_services_docker_compose.mock_ui_container_name)
|
51
|
+
if core_mock_ui_container_name:
|
52
|
+
raise ScaffoldValidateException(f"Stoobly UI container is running when it shouldn't: {core_mock_ui_container_name.name}")
|
53
|
+
except docker_errors.NotFound:
|
54
|
+
pass
|
55
|
+
|
56
|
+
print(f"Skipping validating core component: {CORE_GATEWAY_SERVICE_NAME}")
|
57
|
+
print(f"Skipping validating core component: {CORE_MOCK_UI_SERVICE_NAME}")
|
58
|
+
|
59
|
+
|
60
|
+
def validate(self) -> bool:
|
61
|
+
print(f"Validating workflow: {self.workflow_name}")
|
62
|
+
print(f"Validating core components: {CORE_SERVICES}")
|
63
|
+
|
64
|
+
if self.workflow_name == WORKFLOW_TEST_TYPE:
|
65
|
+
# Don't validate the gateway and mock_ui core components in the "test" workflow
|
66
|
+
self.validate_no_core_components()
|
67
|
+
else:
|
68
|
+
self.validate_core_components()
|
69
|
+
|
70
|
+
self.validate_init_containers(self.managed_services_docker_compose.init_container_name, self.managed_services_docker_compose.configure_container_name)
|
71
|
+
|
72
|
+
print(f"Validating core component: {CORE_ENTRYPOINT_SERVICE_NAME}")
|
73
|
+
|
74
|
+
try:
|
75
|
+
core_entrypoint_init_container_name = self.managed_services_docker_compose.entrypoint_init_container_name
|
76
|
+
entrypoint_init_container = self.docker_client.containers.get(core_entrypoint_init_container_name)
|
77
|
+
except docker_errors.NotFound:
|
78
|
+
raise ScaffoldValidateException(f"Container not found: {core_entrypoint_init_container_name}")
|
79
|
+
|
80
|
+
try:
|
81
|
+
core_entrypoint_configure_container_name = self.managed_services_docker_compose.entrypoint_configure_container_name
|
82
|
+
entrypoint_configure_container = self.docker_client.containers.get(core_entrypoint_configure_container_name)
|
83
|
+
except docker_errors.NotFound:
|
84
|
+
raise ScaffoldValidateException(f"Container not found: {core_entrypoint_configure_container_name}")
|
85
|
+
|
86
|
+
# NOTE: we should check the correct workflow mode is enabled one day
|
87
|
+
# That's not currently queryable
|
88
|
+
|
89
|
+
print(f"Done validating workflow: {self.workflow_name}, success!")
|
90
|
+
print()
|
91
|
+
|
92
|
+
return True
|
93
|
+
|
94
|
+
|