sefrone-api-e2e 1.1.2__tar.gz → 1.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/PKG-INFO +13 -5
  2. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/__init__.py +2 -0
  3. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/api_e2e_manager.py +720 -680
  4. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/0_check_features.yaml +19 -0
  5. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/1_normal_auth_flow.yaml +377 -0
  6. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/2_account_endpoints.yaml +172 -0
  7. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/3_admin_account_endpoints.yaml +310 -0
  8. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/4_workspace_endpoints.yaml +291 -0
  9. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/5_apikey_endpoints.yaml +368 -0
  10. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/6_project_endpoints.yaml +286 -0
  11. sefrone_api_e2e-1.1.4/sefrone_api_e2e/e2e/Scenarios/Auth/7_email_2fa_flow.yaml +80 -0
  12. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/runner_email_mock.py +0 -2
  13. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/runner_rest_api.py +2 -1
  14. sefrone_api_e2e-1.1.4/sefrone_api_e2e/runner_webhook_mock.py +546 -0
  15. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e.egg-info/PKG-INFO +14 -6
  16. sefrone_api_e2e-1.1.4/sefrone_api_e2e.egg-info/SOURCES.txt +23 -0
  17. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/setup.py +1 -1
  18. sefrone_api_e2e-1.1.2/sefrone_api_e2e.egg-info/SOURCES.txt +0 -14
  19. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/README.md +0 -0
  20. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/e2e_scenarios_manager.py +0 -0
  21. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/json_mock_server.py +0 -0
  22. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e/step_runner.py +0 -0
  23. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e.egg-info/dependency_links.txt +0 -0
  24. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e.egg-info/requires.txt +0 -0
  25. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/sefrone_api_e2e.egg-info/top_level.txt +0 -0
  26. {sefrone_api_e2e-1.1.2 → sefrone_api_e2e-1.1.4}/setup.cfg +0 -0
@@ -1,19 +1,27 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: sefrone_api_e2e
3
- Version: 1.1.2
3
+ Version: 1.1.4
4
4
  Summary: A Python package to provide e2e testing helpers for sefrone API projects
5
5
  Home-page: https://bitbucket.org/sefrone/sefrone_pypi
6
6
  Author: Sefrone
7
7
  Author-email: contact@sefrone.com
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
8
  Classifier: Programming Language :: Python :: 3
11
9
  Classifier: License :: Other/Proprietary License
12
10
  Classifier: Operating System :: OS Independent
13
11
  Requires-Python: >=3.7
14
12
  Description-Content-Type: text/markdown
13
+ Requires-Dist: PyYAML>=6.0.1
14
+ Requires-Dist: requests
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: classifier
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
15
24
 
16
25
  This is not a usable Python package, but the name is reserved by SARL Sefrone.
17
26
 
18
27
  You can find other packages published by Sefrone at pypi.org/user/gnasreddine
19
-
@@ -2,6 +2,7 @@ from .api_e2e_manager import ApiE2ETestsManager, ScenarioSkippedException
2
2
  from .step_runner import StepRunner, RunContext, StepResult
3
3
  from .runner_rest_api import RestApiRunner
4
4
  from .runner_email_mock import EmailMockRunner
5
+ from .runner_webhook_mock import WebhookMockRunner
5
6
  from .json_mock_server import JsonMockServer
6
7
  from .e2e_scenarios_manager import E2EScenariosManager
7
8
 
@@ -13,6 +14,7 @@ __all__ = [
13
14
  "StepResult",
14
15
  "RestApiRunner",
15
16
  "EmailMockRunner",
17
+ "WebhookMockRunner",
16
18
  "JsonMockServer",
17
19
  "E2EScenariosManager",
18
20
  ]