codemie-test-harness 0.1.141__py3-none-any.whl → 0.1.143__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.
Potentially problematic release.
This version of codemie-test-harness might be problematic. Click here for more details.
- codemie_test_harness/tests/__init__.py +0 -3
- codemie_test_harness/tests/conftest.py +14 -24
- codemie_test_harness/tests/utils/provider_utils.py +4 -2
- codemie_test_harness/tests/utils/workflow_utils.py +4 -2
- {codemie_test_harness-0.1.141.dist-info → codemie_test_harness-0.1.143.dist-info}/METADATA +2 -2
- {codemie_test_harness-0.1.141.dist-info → codemie_test_harness-0.1.143.dist-info}/RECORD +8 -8
- {codemie_test_harness-0.1.141.dist-info → codemie_test_harness-0.1.143.dist-info}/WHEEL +0 -0
- {codemie_test_harness-0.1.141.dist-info → codemie_test_harness-0.1.143.dist-info}/entry_points.txt +0 -0
|
@@ -21,9 +21,6 @@ PROJECT = os.getenv("PROJECT_NAME", "codemie")
|
|
|
21
21
|
TEST_USER = os.getenv("TEST_USER_FULL_NAME", "Test User")
|
|
22
22
|
GITHUB_URL = os.getenv("GITHUB_URL", "https://github.com")
|
|
23
23
|
|
|
24
|
-
API_DOMAIN = os.getenv("CODEMIE_API_DOMAIN")
|
|
25
|
-
VERIFY_SSL = os.getenv("VERIFY_SSL", "").lower() == "true"
|
|
26
|
-
|
|
27
24
|
autotest_entity_prefix = (
|
|
28
25
|
f"{''.join(random.choice(string.ascii_lowercase) for _ in range(3))}_"
|
|
29
26
|
)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import subprocess
|
|
3
3
|
import uuid
|
|
4
|
-
import atexit
|
|
5
4
|
from time import sleep
|
|
6
5
|
from typing import List, Optional
|
|
7
6
|
from pathlib import Path
|
|
@@ -56,25 +55,6 @@ from codemie_test_harness.tests.utils.yaml_utils import (
|
|
|
56
55
|
logger = setup_logger(__name__)
|
|
57
56
|
|
|
58
57
|
|
|
59
|
-
def force_finish_rp_launch():
|
|
60
|
-
from reportportal_client._internal.local import current
|
|
61
|
-
|
|
62
|
-
client = current()
|
|
63
|
-
if client and hasattr(client, "finish_launch") and hasattr(client, "launch_uuid"):
|
|
64
|
-
if (
|
|
65
|
-
client.launch_uuid
|
|
66
|
-
and hasattr(client, "use_own_launch")
|
|
67
|
-
and client.use_own_launch
|
|
68
|
-
):
|
|
69
|
-
from datetime import datetime, timezone
|
|
70
|
-
|
|
71
|
-
end_time = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S.%fZ")
|
|
72
|
-
client.finish_launch(end_time)
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
atexit.register(force_finish_rp_launch)
|
|
76
|
-
|
|
77
|
-
|
|
78
58
|
def pytest_configure(config):
|
|
79
59
|
"""Pytest hook that runs before test collection starts.
|
|
80
60
|
|
|
@@ -112,10 +92,20 @@ def pytest_configure(config):
|
|
|
112
92
|
load_dotenv(env_file_path)
|
|
113
93
|
|
|
114
94
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
95
|
+
def pytest_unconfigure(config):
|
|
96
|
+
"""Called before test process is exited - cleanup ReportPortal and other resources."""
|
|
97
|
+
from reportportal_client._internal.local import current
|
|
98
|
+
from datetime import datetime, timezone
|
|
99
|
+
|
|
100
|
+
client = current()
|
|
101
|
+
if client and hasattr(client, "finish_launch") and hasattr(client, "launch_uuid"):
|
|
102
|
+
if (
|
|
103
|
+
client.launch_uuid
|
|
104
|
+
and hasattr(client, "use_own_launch")
|
|
105
|
+
and client.use_own_launch
|
|
106
|
+
):
|
|
107
|
+
end_time = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S.%fZ")
|
|
108
|
+
client.finish_launch(end_time)
|
|
119
109
|
|
|
120
110
|
|
|
121
111
|
@pytest.fixture(scope="session")
|
|
@@ -6,7 +6,7 @@ from typing import Optional, Dict, Any
|
|
|
6
6
|
import requests
|
|
7
7
|
from codemie_sdk import CodeMieClient
|
|
8
8
|
|
|
9
|
-
from codemie_test_harness.tests import autotest_entity_prefix
|
|
9
|
+
from codemie_test_harness.tests import autotest_entity_prefix
|
|
10
10
|
from codemie_test_harness.tests.utils.base_utils import (
|
|
11
11
|
BaseUtils,
|
|
12
12
|
get_random_name,
|
|
@@ -21,9 +21,11 @@ providers_endpoint = "/v1/providers"
|
|
|
21
21
|
class ProviderUtils(BaseUtils):
|
|
22
22
|
def __init__(self, client: CodeMieClient):
|
|
23
23
|
"""Initialize the provides service."""
|
|
24
|
+
api_domain = os.getenv("CODEMIE_API_DOMAIN")
|
|
25
|
+
verify_ssl = os.getenv("VERIFY_SSL", "").lower() == "true"
|
|
24
26
|
|
|
25
27
|
super().__init__(client)
|
|
26
|
-
self._api = RequestHandler(
|
|
28
|
+
self._api = RequestHandler(api_domain, self.client.token, verify_ssl)
|
|
27
29
|
|
|
28
30
|
@staticmethod
|
|
29
31
|
def provider_request_json():
|
|
@@ -5,7 +5,7 @@ from codemie_sdk.models.workflow import (
|
|
|
5
5
|
WorkflowUpdateRequest,
|
|
6
6
|
WorkflowMode,
|
|
7
7
|
)
|
|
8
|
-
from codemie_test_harness.tests import PROJECT
|
|
8
|
+
from codemie_test_harness.tests import PROJECT
|
|
9
9
|
from codemie_test_harness.tests.utils.base_utils import (
|
|
10
10
|
BaseUtils,
|
|
11
11
|
get_random_name,
|
|
@@ -38,8 +38,10 @@ class WorkflowUtils(BaseUtils):
|
|
|
38
38
|
Returns:
|
|
39
39
|
Raw response from '/v1/workflows' endpoint
|
|
40
40
|
"""
|
|
41
|
+
api_domain = os.getenv("CODEMIE_API_DOMAIN")
|
|
42
|
+
verify_ssl = os.getenv("VERIFY_SSL", "").lower() == "true"
|
|
41
43
|
|
|
42
|
-
request_handler = RequestHandler(
|
|
44
|
+
request_handler = RequestHandler(api_domain, self.client.token, verify_ssl)
|
|
43
45
|
|
|
44
46
|
return request_handler.post(
|
|
45
47
|
workflow_endpoint, dict, json_data=request.model_dump()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.143
|
|
4
4
|
Summary: Autotest for CodeMie backend and UI
|
|
5
5
|
Author: Anton Yeromin
|
|
6
6
|
Author-email: anton_yeromin@epam.com
|
|
@@ -13,7 +13,7 @@ Requires-Dist: aws-assume-role-lib (>=2.10.0,<3.0.0)
|
|
|
13
13
|
Requires-Dist: boto3 (>=1.39.8,<2.0.0)
|
|
14
14
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
15
15
|
Requires-Dist: codemie-plugins (>=0.1.123,<0.2.0)
|
|
16
|
-
Requires-Dist: codemie-sdk-python (==0.1.
|
|
16
|
+
Requires-Dist: codemie-sdk-python (==0.1.143)
|
|
17
17
|
Requires-Dist: pytest (>=8.4.1,<9.0.0)
|
|
18
18
|
Requires-Dist: pytest-playwright (>=0.7.0,<0.8.0)
|
|
19
19
|
Requires-Dist: pytest-reportportal (>=5.5.2,<6.0.0)
|
|
@@ -9,7 +9,7 @@ codemie_test_harness/cli/constants.py,sha256=956_apPJ4MjhnKo1ZtDooXCd2N89J3vyAB-
|
|
|
9
9
|
codemie_test_harness/cli/runner.py,sha256=5VAL4noqiKrGjo5oYVJKzt4QNmkZFTe1Mw6Mll9uGfc,2349
|
|
10
10
|
codemie_test_harness/cli/utils.py,sha256=NlRa8VFbXTbD74jfUaSqbccGNu2R1dUIg8d5SyDTmIM,1136
|
|
11
11
|
codemie_test_harness/pytest.ini,sha256=Sxr-zVHZ9hJt2Ks0x7xxjh_SA-KhD-vRrDWAfDd9QKs,192
|
|
12
|
-
codemie_test_harness/tests/__init__.py,sha256=
|
|
12
|
+
codemie_test_harness/tests/__init__.py,sha256=PHIfXfLd6aL9Xv8yhqMp2BBWg_gdoWlfX3EzCqqac44,675
|
|
13
13
|
codemie_test_harness/tests/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
codemie_test_harness/tests/assistant/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=NZmw3efv_FBkyi-1FnkQjNknlg34w4PEFv0rodUvCFw,2599
|
|
@@ -55,7 +55,7 @@ codemie_test_harness/tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj
|
|
|
55
55
|
codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=JV_n6COaCsd0_rxQBJvvLZfPdo8BsCbG8Ti-UpzFvfQ,644
|
|
56
56
|
codemie_test_harness/tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=5-QybLWmYSqHG4Sqr-IN-vNcStV4skSwCJQN44Nfats,922
|
|
58
|
-
codemie_test_harness/tests/conftest.py,sha256=
|
|
58
|
+
codemie_test_harness/tests/conftest.py,sha256=qzKtJdd7j0I6jBiIOCnz1uF0-Qm0wLWkSwXK_Rg3adI,27869
|
|
59
59
|
codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
codemie_test_harness/tests/e2e/test_e2e.py,sha256=RUvSu_uNInU1OFfkNft3-Cmd0KZV7JdHqCxSK2ZWXHw,6257
|
|
61
61
|
codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -222,12 +222,12 @@ codemie_test_harness/tests/utils/json_utils.py,sha256=PWO4Ixxgta_zkdq-8umcP9qwDS
|
|
|
222
222
|
codemie_test_harness/tests/utils/llm_utils.py,sha256=JPAlMYh-wQH4any5HWdpQOejCbhjqJCsztRU_fUq-SU,257
|
|
223
223
|
codemie_test_harness/tests/utils/logger_util.py,sha256=6Kca4pLxyTYnUgm2i3j19DdZSH6XUSGXPjHtExx33QU,828
|
|
224
224
|
codemie_test_harness/tests/utils/notification_utils.py,sha256=5SKE7Mpef8fG2Li5RRAIHUdR5yKs7A4CozIOFtJ_970,3507
|
|
225
|
-
codemie_test_harness/tests/utils/provider_utils.py,sha256=
|
|
225
|
+
codemie_test_harness/tests/utils/provider_utils.py,sha256=hBgJubdBlqFFMzn-Xlorm3UvjzQ92ELyTN5tLyaSFk0,5213
|
|
226
226
|
codemie_test_harness/tests/utils/pytest_utils.py,sha256=k-mEjX2qpnh37sqKpJqYhZT6BV9974y_KaAhv8Xj9GI,284
|
|
227
227
|
codemie_test_harness/tests/utils/search_utils.py,sha256=SrXiB2d9wiI5ka9bgg0CD73GOX_1mqi2Hz5FBm5DsEU,1435
|
|
228
228
|
codemie_test_harness/tests/utils/similarity_check.py,sha256=1U66NGh6esISKABodtVobE2WnuFt0f6vcK3qUri6ZqU,1485
|
|
229
229
|
codemie_test_harness/tests/utils/user_utils.py,sha256=zJNrmL3Fb7iGuaVRobUMwJ2Og6NqEPcM_9lw60m18T8,242
|
|
230
|
-
codemie_test_harness/tests/utils/workflow_utils.py,sha256=
|
|
230
|
+
codemie_test_harness/tests/utils/workflow_utils.py,sha256=qKvI2fFiSo_RirFiWLyGRCd5sbBp8x3Rv-u8ENqzSRU,6098
|
|
231
231
|
codemie_test_harness/tests/utils/yaml_utils.py,sha256=y9fUf4u4G4SoCktPOwaC5x71iaDKhktbz_XUfI9kNis,1661
|
|
232
232
|
codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
233
|
codemie_test_harness/tests/workflow/assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -323,7 +323,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
|
|
|
323
323
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=Cxe5Yuy9JE_IEsnQOThpVIZQqpfLuHfDkF6JwLngDc8,890
|
|
324
324
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
325
|
codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=tm0NvUf_UtzLPTYJWykYpsNoxoVs-Eh80guDmRwImwg,1106
|
|
326
|
-
codemie_test_harness-0.1.
|
|
327
|
-
codemie_test_harness-0.1.
|
|
328
|
-
codemie_test_harness-0.1.
|
|
329
|
-
codemie_test_harness-0.1.
|
|
326
|
+
codemie_test_harness-0.1.143.dist-info/METADATA,sha256=8LEi_jct5uyOaNDt2dp5rBkqCKYyr7FFg3Rr2clpUuo,8998
|
|
327
|
+
codemie_test_harness-0.1.143.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
328
|
+
codemie_test_harness-0.1.143.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
|
|
329
|
+
codemie_test_harness-0.1.143.dist-info/RECORD,,
|
|
File without changes
|
{codemie_test_harness-0.1.141.dist-info → codemie_test_harness-0.1.143.dist-info}/entry_points.txt
RENAMED
|
File without changes
|