qase-python-commons 4.1.0__py3-none-any.whl → 4.1.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.
Potentially problematic release.
This version of qase-python-commons might be problematic. Click here for more details.
- qase/commons/client/api_v1_client.py +32 -1
- qase/commons/client/base_api_client.py +11 -0
- qase/commons/config.py +8 -0
- qase/commons/models/config/testops.py +5 -0
- qase/commons/reporters/testops.py +12 -0
- {qase_python_commons-4.1.0.dist-info → qase_python_commons-4.1.1.dist-info}/METADATA +1 -1
- {qase_python_commons-4.1.0.dist-info → qase_python_commons-4.1.1.dist-info}/RECORD +9 -9
- {qase_python_commons-4.1.0.dist-info → qase_python_commons-4.1.1.dist-info}/WHEEL +0 -0
- {qase_python_commons-4.1.0.dist-info → qase_python_commons-4.1.1.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ from typing import Union
|
|
|
3
3
|
|
|
4
4
|
import certifi
|
|
5
5
|
from qase.api_client_v1 import ApiClient, ProjectsApi, Project, EnvironmentsApi, RunsApi, AttachmentsApi, \
|
|
6
|
-
AttachmentGet, RunCreate, ConfigurationsApi, ConfigurationCreate, ConfigurationGroupCreate
|
|
6
|
+
AttachmentGet, RunCreate, ConfigurationsApi, ConfigurationCreate, ConfigurationGroupCreate, RunPublic
|
|
7
7
|
from qase.api_client_v1.configuration import Configuration
|
|
8
8
|
from .. import Logger
|
|
9
9
|
from .base_api_client import BaseApiClient
|
|
@@ -210,6 +210,37 @@ class ApiV1Client(BaseApiClient):
|
|
|
210
210
|
return True
|
|
211
211
|
return False
|
|
212
212
|
|
|
213
|
+
def enable_public_report(self, project_code: str, run_id: int) -> str:
|
|
214
|
+
"""
|
|
215
|
+
Enable public report for a test run and return the public link
|
|
216
|
+
|
|
217
|
+
:param project_code: project code
|
|
218
|
+
:param run_id: test run id
|
|
219
|
+
:return: public report link or None if failed
|
|
220
|
+
"""
|
|
221
|
+
try:
|
|
222
|
+
self.logger.log_debug(f"Enabling public report for run {run_id}")
|
|
223
|
+
api_runs = RunsApi(self.client)
|
|
224
|
+
|
|
225
|
+
# Create RunPublic object with status=True
|
|
226
|
+
run_public = RunPublic(status=True)
|
|
227
|
+
|
|
228
|
+
# Call the API to enable public report
|
|
229
|
+
response = api_runs.update_run_publicity(project_code, run_id, run_public)
|
|
230
|
+
|
|
231
|
+
# Extract the public URL from response
|
|
232
|
+
if response.result and response.result.url:
|
|
233
|
+
public_url = response.result.url
|
|
234
|
+
self.logger.log_debug(f"Public report enabled for run {run_id}: {public_url}")
|
|
235
|
+
return public_url
|
|
236
|
+
else:
|
|
237
|
+
self.logger.log_debug(f"Public report enabled for run {run_id} but no URL returned")
|
|
238
|
+
return None
|
|
239
|
+
|
|
240
|
+
except Exception as e:
|
|
241
|
+
self.logger.log(f"Error at enabling public report for run {run_id}: {e}", "error")
|
|
242
|
+
return None
|
|
243
|
+
|
|
213
244
|
def update_external_link(self, project_code: str, run_id: int):
|
|
214
245
|
"""Update external link for a test run"""
|
|
215
246
|
try:
|
|
@@ -86,3 +86,14 @@ class BaseApiClient(abc.ABC):
|
|
|
86
86
|
:return: None
|
|
87
87
|
"""
|
|
88
88
|
pass
|
|
89
|
+
|
|
90
|
+
@abc.abstractmethod
|
|
91
|
+
def enable_public_report(self, project_code: str, run_id: int) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Enable public report for a test run and return the public link
|
|
94
|
+
|
|
95
|
+
:param project_code: project code
|
|
96
|
+
:param run_id: test run id
|
|
97
|
+
:return: public report link or None if failed
|
|
98
|
+
"""
|
|
99
|
+
pass
|
qase/commons/config.py
CHANGED
|
@@ -169,6 +169,11 @@ class ConfigManager:
|
|
|
169
169
|
# Parse comma-separated string
|
|
170
170
|
self.config.testops.set_status_filter([s.strip() for s in status_filter.split(',')])
|
|
171
171
|
|
|
172
|
+
if testops.get("showPublicReportLink") is not None:
|
|
173
|
+
self.config.testops.set_show_public_report_link(
|
|
174
|
+
testops.get("showPublicReportLink")
|
|
175
|
+
)
|
|
176
|
+
|
|
172
177
|
if config.get("report"):
|
|
173
178
|
report = config.get("report")
|
|
174
179
|
|
|
@@ -321,6 +326,9 @@ class ConfigManager:
|
|
|
321
326
|
# Parse comma-separated string
|
|
322
327
|
self.config.testops.set_status_filter([s.strip() for s in value.split(',')])
|
|
323
328
|
|
|
329
|
+
if key == 'QASE_TESTOPS_SHOW_PUBLIC_REPORT_LINK':
|
|
330
|
+
self.config.testops.set_show_public_report_link(value)
|
|
331
|
+
|
|
324
332
|
if key == 'QASE_REPORT_DRIVER':
|
|
325
333
|
self.config.report.set_driver(value)
|
|
326
334
|
|
|
@@ -49,6 +49,7 @@ class TestopsConfig(BaseModel):
|
|
|
49
49
|
batch: BatchConfig = None
|
|
50
50
|
configurations: ConfigurationsConfig = None
|
|
51
51
|
status_filter: List[str] = None
|
|
52
|
+
show_public_report_link: bool = None
|
|
52
53
|
|
|
53
54
|
def __init__(self):
|
|
54
55
|
self.api = ApiConfig()
|
|
@@ -58,6 +59,7 @@ class TestopsConfig(BaseModel):
|
|
|
58
59
|
self.configurations = ConfigurationsConfig()
|
|
59
60
|
self.defect = False
|
|
60
61
|
self.status_filter = []
|
|
62
|
+
self.show_public_report_link = False
|
|
61
63
|
|
|
62
64
|
def set_project(self, project: str):
|
|
63
65
|
self.project = project
|
|
@@ -67,3 +69,6 @@ class TestopsConfig(BaseModel):
|
|
|
67
69
|
|
|
68
70
|
def set_status_filter(self, status_filter: List[str]):
|
|
69
71
|
self.status_filter = status_filter
|
|
72
|
+
|
|
73
|
+
def set_show_public_report_link(self, show_public_report_link):
|
|
74
|
+
self.show_public_report_link = QaseUtils.parse_bool(show_public_report_link)
|
|
@@ -144,6 +144,18 @@ class QaseTestOps:
|
|
|
144
144
|
self.logger.log_debug("Completing run")
|
|
145
145
|
self.client.complete_run(self.project_code, self.run_id)
|
|
146
146
|
self.logger.log_debug("Run completed")
|
|
147
|
+
|
|
148
|
+
# Enable public report if configured
|
|
149
|
+
if self.config.testops.show_public_report_link:
|
|
150
|
+
try:
|
|
151
|
+
self.logger.log_debug("Enabling public report")
|
|
152
|
+
public_url = self.client.enable_public_report(self.project_code, self.run_id)
|
|
153
|
+
if public_url:
|
|
154
|
+
self.logger.log(f"Public report link: {public_url}", "info")
|
|
155
|
+
else:
|
|
156
|
+
self.logger.log("Failed to generate public report link", "warning")
|
|
157
|
+
except Exception as e:
|
|
158
|
+
self.logger.log(f"Failed to generate public report link: {e}", "warning")
|
|
147
159
|
|
|
148
160
|
def complete_worker(self) -> None:
|
|
149
161
|
if len(self.results) > 0:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qase-python-commons
|
|
3
|
-
Version: 4.1.
|
|
3
|
+
Version: 4.1.1
|
|
4
4
|
Summary: A library for Qase TestOps and Qase Report
|
|
5
5
|
Author-email: Qase Team <support@qase.io>
|
|
6
6
|
Project-URL: Homepage, https://github.com/qase-tms/qase-python/tree/main/qase-python-commons
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
qase/__init__.py,sha256=FLefSJnT6MTsTfZSDjMbMImI6674fAoJ5ZT3PNWGcRo,37
|
|
2
2
|
qase/commons/__init__.py,sha256=3HI65PJES4Q6YvtkSuRPh6tZboTETJo8wbdHlNYaePU,323
|
|
3
|
-
qase/commons/config.py,sha256=
|
|
3
|
+
qase/commons/config.py,sha256=SyG1-2RfKQAhQLUbq7szbUUp9ABYvbSiaT8WdQEjMcA,15556
|
|
4
4
|
qase/commons/loader.py,sha256=-MMY4HgSI6q1xq3NaJoq_w4liM73qdFKjYLVCT1E7Pc,1064
|
|
5
5
|
qase/commons/logger.py,sha256=V_QTSDWNnUgd0j58rydYYN1AYOu3wa9T2fWjpOyxyuA,3430
|
|
6
6
|
qase/commons/utils.py,sha256=utPRoYyThLs2tgD1lmjkwJ9KZuE7ZjliUiZkJJWFca0,3330
|
|
7
|
-
qase/commons/client/api_v1_client.py,sha256=
|
|
7
|
+
qase/commons/client/api_v1_client.py,sha256=BaE9Ix-k5Xc7Wiz8ILKKsWb5G5J3hqgjwaIcrocvCdY,12879
|
|
8
8
|
qase/commons/client/api_v2_client.py,sha256=GsIrXJcBw6GtzvJjbjMYa0tvUIxEEe4pALRN2LBMKPM,9043
|
|
9
|
-
qase/commons/client/base_api_client.py,sha256=
|
|
9
|
+
qase/commons/client/base_api_client.py,sha256=4NtXhUxrxEPOBIzEAE-b50KHMwlhxwnSLGcYx8NMjbY,2961
|
|
10
10
|
qase/commons/exceptions/reporter.py,sha256=dP-Mwcq8HKBOjgu3YqhyULDmDGU09BmT6Fh9HjICaUc,45
|
|
11
11
|
qase/commons/models/__init__.py,sha256=FTt5dYASBX4r6-tQi-_JAUVx4uvJs9GTxROdAZEV6Jo,272
|
|
12
12
|
qase/commons/models/attachment.py,sha256=cGfB0BaTDVfA7euJubKvi2cXXNvlSm_dy5x-ak3H3ec,1625
|
|
@@ -25,7 +25,7 @@ qase/commons/models/config/plan.py,sha256=JbAY7qfGXYreXOLa32OLxw6z0paeCCf87-2b1m
|
|
|
25
25
|
qase/commons/models/config/qaseconfig.py,sha256=oWc03PKV8-jb3JNgs_tqQP-22wsKZW25eSaAacYl4no,2838
|
|
26
26
|
qase/commons/models/config/report.py,sha256=g3Z2B3Tewaasjc1TMj2mkXxz0Zc1C39sHeTXH0MRM2Y,497
|
|
27
27
|
qase/commons/models/config/run.py,sha256=UGE5PA_EyiFpfIev-TOob1BocxT1vdUdWW3ELMD58zQ,1239
|
|
28
|
-
qase/commons/models/config/testops.py,sha256=
|
|
28
|
+
qase/commons/models/config/testops.py,sha256=LdylcNG1ctxjNHXwrwcerAKY3h0WByKWYIrKOzEV2K8,2133
|
|
29
29
|
qase/commons/profilers/__init__.py,sha256=GhKT5hRbHbhAC4GhdyChA8XoAsGQOnIb8S2Z4-fdS7Q,222
|
|
30
30
|
qase/commons/profilers/db.py,sha256=Am1tvvLgJq4_A8JsuSeBGf47BD2lnSX-5KiMjSgr-Ko,391
|
|
31
31
|
qase/commons/profilers/network.py,sha256=zKNBnTQG4BMg8dn8O--tQzQLpu-qs5ADhHEnqIas0gM,4950
|
|
@@ -33,13 +33,13 @@ qase/commons/profilers/sleep.py,sha256=HT6h0R-2XHZAoBYRxS2T_KC8RrnEoVjP7MXusaE4N
|
|
|
33
33
|
qase/commons/reporters/__init__.py,sha256=J0aNLzb_MPPT_zF8BtX_w9nj_U7Ad06RGpyWK5Pxq1o,169
|
|
34
34
|
qase/commons/reporters/core.py,sha256=FJx1kxXkUz9vwkSAXapkNS3vF97Igvlq7Yyjp-4BpeI,9539
|
|
35
35
|
qase/commons/reporters/report.py,sha256=ZLwtVn5gjwgJFtfbpLUO-vW3M3skEq3AhKJwtmM0nUw,4810
|
|
36
|
-
qase/commons/reporters/testops.py,sha256=
|
|
36
|
+
qase/commons/reporters/testops.py,sha256=k3c91l_xuLq6NRLkzfwRqRTLfnpSxEQe38HNH8XMOTk,8161
|
|
37
37
|
qase/commons/status_mapping/__init__.py,sha256=NPsWKDC7rGSCYfVunnGnHxL0_HmKWH7RBaMjWTH_Mtk,322
|
|
38
38
|
qase/commons/status_mapping/status_mapping.py,sha256=kohSLNK6_qbMSP-M8gxHTTmOECgzDE3XvLqOzidPlYI,7213
|
|
39
39
|
qase/commons/util/__init__.py,sha256=0sRRfrMOIPCHpk9tXM94Pj10qrk18B61qEcbLpRjw_I,74
|
|
40
40
|
qase/commons/util/host_data.py,sha256=n8o5PDs8kELCZZ5GR7Jug6LsgZHWJudU7iRmZHRdrlw,5264
|
|
41
41
|
qase/commons/validators/base.py,sha256=wwSn-4YiuXtfGMGnSKgo9Vm5hAKevVmmfd2Ro6Q7MYQ,173
|
|
42
|
-
qase_python_commons-4.1.
|
|
43
|
-
qase_python_commons-4.1.
|
|
44
|
-
qase_python_commons-4.1.
|
|
45
|
-
qase_python_commons-4.1.
|
|
42
|
+
qase_python_commons-4.1.1.dist-info/METADATA,sha256=4YhfVavjg9v0ZDrWFNhqF5h4n2WHbsYygN1LcQvyrNE,1982
|
|
43
|
+
qase_python_commons-4.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
44
|
+
qase_python_commons-4.1.1.dist-info/top_level.txt,sha256=Mn5aFk7H7Uia4s1NRDsvebu8vCrFy9nOuRIBfkIY5kQ,5
|
|
45
|
+
qase_python_commons-4.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|