stoobly-agent 1.4.2__py3-none-any.whl → 1.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. stoobly_agent/__init__.py +1 -1
  2. stoobly_agent/app/cli/helpers/handle_config_update_service.py +2 -2
  3. stoobly_agent/app/cli/helpers/handle_mock_service.py +6 -2
  4. stoobly_agent/app/cli/helpers/request_facade.py +5 -1
  5. stoobly_agent/app/cli/scaffold/constants.py +1 -1
  6. stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py +1 -0
  7. stoobly_agent/app/cli/scaffold/service_workflow_validate_command.py +19 -19
  8. stoobly_agent/app/cli/scaffold/templates/app/.Dockerfile.context +1 -1
  9. stoobly_agent/app/cli/scaffold/templates/constants.py +3 -3
  10. stoobly_agent/app/cli/scaffold/templates/factory.py +5 -5
  11. stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +1 -8
  12. stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures.yml +1 -1
  13. stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +1 -8
  14. stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures.yml +1 -1
  15. stoobly_agent/app/cli/scaffold/workflow_command.py +3 -3
  16. stoobly_agent/app/cli/scaffold/workflow_create_command.py +2 -2
  17. stoobly_agent/app/cli/scaffold_cli.py +5 -5
  18. stoobly_agent/app/models/factories/resource/local_db/helpers/tiebreak_scenario_request.py +1 -1
  19. stoobly_agent/app/models/factories/resource/local_db/request_adapter.py +17 -11
  20. stoobly_agent/app/models/types/request.py +1 -2
  21. stoobly_agent/app/proxy/context.py +4 -0
  22. stoobly_agent/app/proxy/handle_mock_service.py +93 -46
  23. stoobly_agent/app/proxy/handle_record_service.py +15 -3
  24. stoobly_agent/app/proxy/handle_replay_service.py +44 -18
  25. stoobly_agent/app/proxy/handle_test_service.py +92 -24
  26. stoobly_agent/app/proxy/intercept_handler.py +11 -16
  27. stoobly_agent/app/proxy/intercept_settings.py +17 -4
  28. stoobly_agent/app/proxy/mitmproxy/request_facade.py +5 -2
  29. stoobly_agent/app/proxy/mitmproxy/response_facade.py +5 -4
  30. stoobly_agent/app/proxy/mock/custom_not_found_response_builder.py +5 -0
  31. stoobly_agent/app/proxy/mock/eval_fixtures_service.py +79 -14
  32. stoobly_agent/app/proxy/mock/eval_request_service.py +18 -13
  33. stoobly_agent/app/proxy/record/join_request_service.py +7 -8
  34. stoobly_agent/app/proxy/record/upload_request_service.py +2 -2
  35. stoobly_agent/app/proxy/replay/replay_request_service.py +4 -4
  36. stoobly_agent/app/proxy/test/helpers/upload_test_service.py +2 -2
  37. stoobly_agent/app/proxy/utils/allowed_request_service.py +3 -3
  38. stoobly_agent/app/proxy/utils/response_handler.py +10 -1
  39. stoobly_agent/app/proxy/utils/rewrite.py +72 -0
  40. stoobly_agent/app/settings/constants/request_component.py +4 -1
  41. stoobly_agent/cli.py +35 -28
  42. stoobly_agent/config/constants/custom_headers.py +1 -0
  43. stoobly_agent/config/constants/intercept_policy.py +2 -0
  44. stoobly_agent/config/constants/mock_policy.py +4 -2
  45. stoobly_agent/config/constants/query_params.py +2 -0
  46. stoobly_agent/config/constants/record_policy.py +4 -2
  47. stoobly_agent/config/constants/replay_policy.py +4 -2
  48. stoobly_agent/public/{18-es2015.583f191cc7ad512ee262.js → 18-es2015.503207073756a9c8211a.js} +1 -1
  49. stoobly_agent/public/{18-es5.583f191cc7ad512ee262.js → 18-es5.503207073756a9c8211a.js} +1 -1
  50. stoobly_agent/public/index.html +1 -1
  51. stoobly_agent/public/{main-es2015.2cc16523aa3fcaba51e5.js → main-es2015.d682619f3d6d53d64c6a.js} +1 -1
  52. stoobly_agent/public/{main-es5.2cc16523aa3fcaba51e5.js → main-es5.d682619f3d6d53d64c6a.js} +1 -1
  53. stoobly_agent/public/{runtime-es2015.b914470164e4d6e75d96.js → runtime-es2015.8c1efed946fc02c923fc.js} +1 -1
  54. stoobly_agent/public/{runtime-es5.b914470164e4d6e75d96.js → runtime-es5.8c1efed946fc02c923fc.js} +1 -1
  55. stoobly_agent/test/app/cli/helpers/openapi_endpoint_adapter_test.py +2 -1
  56. stoobly_agent/test/app/cli/scaffold/e2e_test.py +2 -2
  57. stoobly_agent/test/app/models/factories/resource/local_db/helpers/tiebreak_scenario_request_test.py +4 -4
  58. stoobly_agent/test/app/models/schemas/.stoobly/db/VERSION +1 -1
  59. stoobly_agent/test/app/proxy/mock/eval_fixtures_service_test.py +140 -71
  60. stoobly_agent/test/cli/lifecycle_hooks_test.py +66 -0
  61. stoobly_agent/test/cli/mock_scenario_lifecycle_hooks.py +5 -0
  62. stoobly_agent/test/cli/mock_scenario_test.py +62 -0
  63. stoobly_agent/test/cli/mock_test.py +54 -38
  64. stoobly_agent/test/cli/record_test.py +67 -0
  65. stoobly_agent/test/mock_data/lifecycle_hooks.py +35 -0
  66. {stoobly_agent-1.4.2.dist-info → stoobly_agent-1.5.1.dist-info}/LICENSE +1 -1
  67. {stoobly_agent-1.4.2.dist-info → stoobly_agent-1.5.1.dist-info}/METADATA +7 -12
  68. {stoobly_agent-1.4.2.dist-info → stoobly_agent-1.5.1.dist-info}/RECORD +72 -65
  69. /stoobly_agent/app/cli/scaffold/templates/workflow/mock/{fixtures/.keep → public/.gitignore} +0 -0
  70. /stoobly_agent/app/cli/scaffold/templates/workflow/test/{fixtures/.keep → public/.gitignore} +0 -0
  71. {stoobly_agent-1.4.2.dist-info → stoobly_agent-1.5.1.dist-info}/WHEEL +0 -0
  72. {stoobly_agent-1.4.2.dist-info → stoobly_agent-1.5.1.dist-info}/entry_points.txt +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.