codemie-test-harness 0.1.158__py3-none-any.whl → 0.1.160__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.

Files changed (69) hide show
  1. codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py +2 -1
  2. codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +2 -1
  3. codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +0 -7
  4. codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +0 -1
  5. codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +4 -5
  6. codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +2 -9
  7. codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +5 -7
  8. codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +5 -7
  9. codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +3 -3
  10. codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +3 -2
  11. codemie_test_harness/tests/assistant/tools/report_portal/__init__.py +0 -0
  12. codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py +32 -0
  13. codemie_test_harness/tests/conftest.py +17 -2
  14. codemie_test_harness/tests/enums/environment.py +102 -0
  15. codemie_test_harness/tests/enums/model_types.py +1 -0
  16. codemie_test_harness/tests/enums/tools.py +14 -0
  17. codemie_test_harness/tests/integrations/project/test_default_integrations.py +47 -12
  18. codemie_test_harness/tests/integrations/project/test_project_integrations.py +0 -125
  19. codemie_test_harness/tests/integrations/user/test_default_integrations.py +47 -11
  20. codemie_test_harness/tests/integrations/user/test_user_integrations.py +0 -125
  21. codemie_test_harness/tests/llm/assistants/test_llm.py +3 -3
  22. codemie_test_harness/tests/service/test_assistant_service.py +2 -2
  23. codemie_test_harness/tests/test_data/cloud_tools_test_data.py +32 -11
  24. codemie_test_harness/tests/test_data/codebase_tools_test_data.py +2 -0
  25. codemie_test_harness/tests/test_data/data_management_tools_test_data.py +3 -3
  26. codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +7 -4
  27. codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +2 -0
  28. codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +4 -5
  29. codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py +2 -2
  30. codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py +5 -2
  31. codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py +2 -0
  32. codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py +1235 -0
  33. codemie_test_harness/tests/test_data/direct_tools/research_tools_test_data.py +1 -0
  34. codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py +3 -0
  35. codemie_test_harness/tests/test_data/file_management_tools_test_data.py +9 -5
  36. codemie_test_harness/tests/test_data/index_test_data.py +9 -11
  37. codemie_test_harness/tests/test_data/integrations_test_data.py +71 -9
  38. codemie_test_harness/tests/test_data/llm_test_data.py +8 -6
  39. codemie_test_harness/tests/test_data/project_management_test_data.py +4 -0
  40. codemie_test_harness/tests/test_data/report_portal_tools_test_data.py +520 -0
  41. codemie_test_harness/tests/test_data/vcs_tools_test_data.py +11 -2
  42. codemie_test_harness/tests/utils/aws_parameters_store.py +33 -2
  43. codemie_test_harness/tests/utils/constants.py +1 -1
  44. codemie_test_harness/tests/utils/env_resolver.py +119 -0
  45. codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +0 -7
  46. codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +0 -1
  47. codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +3 -5
  48. codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +2 -9
  49. codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +5 -10
  50. codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +3 -2
  51. codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +3 -2
  52. codemie_test_harness/tests/workflow/assistant_tools/report_portal/__init__.py +0 -0
  53. codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +38 -0
  54. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py +3 -2
  55. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +3 -2
  56. codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py +115 -0
  57. codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +0 -7
  58. codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +0 -1
  59. codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +3 -5
  60. codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +2 -9
  61. codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +5 -11
  62. codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +3 -3
  63. codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +3 -3
  64. codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/__init__.py +0 -0
  65. codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +39 -0
  66. {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/METADATA +2 -2
  67. {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/RECORD +69 -58
  68. {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/WHEEL +0 -0
  69. {codemie_test_harness-0.1.158.dist-info → codemie_test_harness-0.1.160.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1235 @@
1
+ from codemie_test_harness.tests.enums.tools import Toolkit, ReportPortalTool
2
+
3
+ report_portal_tools_test_data = [
4
+ (
5
+ Toolkit.REPORT_PORTAL,
6
+ ReportPortalTool.GET_LAUNCH_DETAILS,
7
+ {"launch_id": "23"},
8
+ """
9
+ {
10
+ "owner": "anton_yeromin",
11
+ "description": "stopped",
12
+ "id": 23,
13
+ "uuid": "05e770ed-4b9d-43c3-acf2-43a50e7875dc",
14
+ "name": "Pytest Regression",
15
+ "number": 2,
16
+ "startTime": "2025-09-08T08:46:01.157Z",
17
+ "endTime": "2025-09-08T09:11:14.987Z",
18
+ "lastModified": "2025-09-08T09:11:15.196270Z",
19
+ "status": "STOPPED",
20
+ "statistics": {
21
+ "executions": {
22
+ "total": 888,
23
+ "failed": 4,
24
+ "passed": 743,
25
+ "skipped": 141
26
+ },
27
+ "defects": {
28
+ "to_investigate": {
29
+ "total": 145,
30
+ "ti001": 145
31
+ }
32
+ }
33
+ },
34
+ "attributes": [
35
+ {
36
+ "key": "status",
37
+ "value": "stopped"
38
+ },
39
+ {
40
+ "key": "env",
41
+ "value": "azure"
42
+ }
43
+ ],
44
+ "mode": "DEFAULT",
45
+ "analysing": [],
46
+ "approximateDuration": 0.0,
47
+ "hasRetries": false,
48
+ "rerun": false,
49
+ "metadata": {
50
+ "rp.cluster.lastRun": "1757322678794"
51
+ },
52
+ "retentionPolicy": "REGULAR"
53
+ },
54
+ """,
55
+ ),
56
+ (
57
+ Toolkit.REPORT_PORTAL,
58
+ ReportPortalTool.GET_ALL_LAUNCHES,
59
+ {"page_number": 1},
60
+ """
61
+ {
62
+ "content": [
63
+ {
64
+ "owner": "anton_yeromin",
65
+ "description": "stopped",
66
+ "id": 22,
67
+ "uuid": "038c493c-b9bf-405f-b1b1-7842ffe5de9a",
68
+ "name": "Pytest Regression",
69
+ "number": 1,
70
+ "startTime": "2025-09-08T08:17:26.906Z",
71
+ "endTime": "2025-09-08T08:46:23.541Z",
72
+ "lastModified": "2025-09-08T08:46:23.826436Z",
73
+ "status": "STOPPED",
74
+ "statistics": {
75
+ "executions": {
76
+ "total": 888,
77
+ "failed": 19,
78
+ "passed": 728,
79
+ "skipped": 141
80
+ },
81
+ "defects": {
82
+ "to_investigate": {
83
+ "total": 160,
84
+ "ti001": 160
85
+ }
86
+ }
87
+ },
88
+ "attributes": [
89
+ {
90
+ "key": "status",
91
+ "value": "stopped"
92
+ },
93
+ {
94
+ "key": "env",
95
+ "value": "azure"
96
+ }
97
+ ],
98
+ "mode": "DEFAULT",
99
+ "analysing": [],
100
+ "approximateDuration": 0.0,
101
+ "hasRetries": false,
102
+ "rerun": false,
103
+ "metadata": {
104
+ "rp.cluster.lastRun": "1757321194743"
105
+ },
106
+ "retentionPolicy": "REGULAR"
107
+ },
108
+ {
109
+ "owner": "anton_yeromin",
110
+ "description": "stopped",
111
+ "id": 23,
112
+ "uuid": "05e770ed-4b9d-43c3-acf2-43a50e7875dc",
113
+ "name": "Pytest Regression",
114
+ "number": 2,
115
+ "startTime": "2025-09-08T08:46:01.157Z",
116
+ "endTime": "2025-09-08T09:11:14.987Z",
117
+ "lastModified": "2025-09-08T09:11:15.196270Z",
118
+ "status": "STOPPED",
119
+ "statistics": {
120
+ "executions": {
121
+ "total": 888,
122
+ "failed": 4,
123
+ "passed": 743,
124
+ "skipped": 141
125
+ },
126
+ "defects": {
127
+ "to_investigate": {
128
+ "total": 145,
129
+ "ti001": 145
130
+ }
131
+ }
132
+ },
133
+ "attributes": [
134
+ {
135
+ "key": "status",
136
+ "value": "stopped"
137
+ },
138
+ {
139
+ "key": "env",
140
+ "value": "azure"
141
+ }
142
+ ],
143
+ "mode": "DEFAULT",
144
+ "analysing": [],
145
+ "approximateDuration": 0.0,
146
+ "hasRetries": false,
147
+ "rerun": false,
148
+ "metadata": {
149
+ "rp.cluster.lastRun": "1757322678794"
150
+ },
151
+ "retentionPolicy": "REGULAR"
152
+ },
153
+ {
154
+ "owner": "anton_yeromin",
155
+ "id": 25,
156
+ "uuid": "b1580190-ddd7-4496-9904-61f140665a65",
157
+ "name": "Pytest Regression",
158
+ "number": 4,
159
+ "startTime": "2025-09-08T11:49:50.308Z",
160
+ "endTime": "2025-09-08T12:06:25.438Z",
161
+ "lastModified": "2025-09-08T12:06:25.540618Z",
162
+ "status": "FAILED",
163
+ "statistics": {
164
+ "executions": {
165
+ "total": 888,
166
+ "passed": 846,
167
+ "skipped": 42
168
+ },
169
+ "defects": {
170
+ "to_investigate": {
171
+ "total": 42,
172
+ "ti001": 42
173
+ }
174
+ }
175
+ },
176
+ "attributes": [
177
+ {
178
+ "key": "env",
179
+ "value": "preview"
180
+ }
181
+ ],
182
+ "mode": "DEFAULT",
183
+ "analysing": [],
184
+ "approximateDuration": 3202.146,
185
+ "hasRetries": false,
186
+ "rerun": false,
187
+ "metadata": {
188
+ "rp.cluster.lastRun": "1757333186074"
189
+ },
190
+ "retentionPolicy": "REGULAR"
191
+ },
192
+ {
193
+ "owner": "anton_yeromin",
194
+ "description": "stopped",
195
+ "id": 26,
196
+ "uuid": "4b9b9d74-dd07-4ddf-a6cb-f1450bfacd9e",
197
+ "name": "Pytest Regression",
198
+ "number": 5,
199
+ "startTime": "2025-09-08T12:43:08.988Z",
200
+ "endTime": "2025-09-08T13:16:11.869Z",
201
+ "lastModified": "2025-09-08T13:16:12.022623Z",
202
+ "status": "STOPPED",
203
+ "statistics": {
204
+ "executions": {
205
+ "total": 888,
206
+ "failed": 3,
207
+ "passed": 744,
208
+ "skipped": 141
209
+ },
210
+ "defects": {
211
+ "to_investigate": {
212
+ "total": 144,
213
+ "ti001": 144
214
+ }
215
+ }
216
+ },
217
+ "attributes": [
218
+ {
219
+ "key": "status",
220
+ "value": "stopped"
221
+ },
222
+ {
223
+ "key": "env",
224
+ "value": "azure"
225
+ }
226
+ ],
227
+ "mode": "DEFAULT",
228
+ "analysing": [],
229
+ "approximateDuration": 995.13,
230
+ "hasRetries": false,
231
+ "rerun": false,
232
+ "metadata": {
233
+ "rp.cluster.lastRun": "1757337373405"
234
+ },
235
+ "retentionPolicy": "REGULAR"
236
+ },
237
+ {
238
+ "owner": "anton_yeromin",
239
+ "description": "stopped",
240
+ "id": 27,
241
+ "uuid": "22d20d4a-004f-4286-a630-5baa59a4aeff",
242
+ "name": "Pytest Regression",
243
+ "number": 6,
244
+ "startTime": "2025-09-08T13:50:57.368Z",
245
+ "endTime": "2025-09-08T13:52:37.258Z",
246
+ "lastModified": "2025-09-08T13:52:39.860832Z",
247
+ "status": "STOPPED",
248
+ "statistics": {
249
+ "executions": {
250
+ "total": 15,
251
+ "passed": 1,
252
+ "failed": 14
253
+ },
254
+ "defects": {}
255
+ },
256
+ "attributes": [
257
+ {
258
+ "key": "status",
259
+ "value": "stopped"
260
+ },
261
+ {
262
+ "key": "env",
263
+ "value": "preview"
264
+ }
265
+ ],
266
+ "mode": "DEFAULT",
267
+ "analysing": [],
268
+ "approximateDuration": 995.13,
269
+ "hasRetries": false,
270
+ "rerun": false,
271
+ "metadata": {
272
+ "rp.cluster.lastRun": "1757339559884"
273
+ },
274
+ "retentionPolicy": "REGULAR"
275
+ },
276
+ {
277
+ "owner": "anton_yeromin",
278
+ "id": 28,
279
+ "uuid": "95ec670d-2252-42a3-8250-a028dcce8176",
280
+ "name": "Pytest Regression",
281
+ "number": 7,
282
+ "startTime": "2025-09-08T13:58:52.195Z",
283
+ "endTime": "2025-09-08T14:16:33.106Z",
284
+ "lastModified": "2025-09-08T14:16:33.172673Z",
285
+ "status": "FAILED",
286
+ "statistics": {
287
+ "executions": {
288
+ "total": 888,
289
+ "failed": 3,
290
+ "passed": 843,
291
+ "skipped": 42
292
+ },
293
+ "defects": {
294
+ "to_investigate": {
295
+ "total": 45,
296
+ "ti001": 45
297
+ }
298
+ }
299
+ },
300
+ "attributes": [
301
+ {
302
+ "key": "env",
303
+ "value": "preview"
304
+ }
305
+ ],
306
+ "mode": "DEFAULT",
307
+ "analysing": [],
308
+ "approximateDuration": 995.13,
309
+ "hasRetries": false,
310
+ "rerun": false,
311
+ "metadata": {
312
+ "rp.cluster.lastRun": "1757340994692"
313
+ },
314
+ "retentionPolicy": "REGULAR"
315
+ },
316
+ {
317
+ "owner": "anton_yeromin",
318
+ "id": 30,
319
+ "uuid": "f8cc3f1a-7582-46c2-b12e-0c20a3dbb9c5",
320
+ "name": "Pytest Regression",
321
+ "number": 8,
322
+ "startTime": "2025-09-08T15:00:41.161Z",
323
+ "endTime": "2025-09-08T15:17:26.672Z",
324
+ "lastModified": "2025-09-08T15:17:26.725642Z",
325
+ "status": "FAILED",
326
+ "statistics": {
327
+ "executions": {
328
+ "total": 888,
329
+ "failed": 1,
330
+ "passed": 845,
331
+ "skipped": 42
332
+ },
333
+ "defects": {
334
+ "to_investigate": {
335
+ "total": 43,
336
+ "ti001": 43
337
+ }
338
+ }
339
+ },
340
+ "attributes": [
341
+ {
342
+ "key": "env",
343
+ "value": "preview"
344
+ }
345
+ ],
346
+ "mode": "DEFAULT",
347
+ "analysing": [],
348
+ "approximateDuration": 1028.0205,
349
+ "hasRetries": false,
350
+ "rerun": false,
351
+ "metadata": {
352
+ "rp.cluster.lastRun": "1757344647421"
353
+ },
354
+ "retentionPolicy": "REGULAR"
355
+ },
356
+ {
357
+ "owner": "anton_yeromin",
358
+ "id": 31,
359
+ "uuid": "e441203d-40a6-4718-b365-67fbd6bf8b7c",
360
+ "name": "Pytest Regression",
361
+ "number": 9,
362
+ "startTime": "2025-09-09T06:36:31.663Z",
363
+ "endTime": "2025-09-09T09:55:07.390391Z",
364
+ "lastModified": "2025-09-09T09:55:07.396057Z",
365
+ "status": "INTERRUPTED",
366
+ "statistics": {
367
+ "executions": {
368
+ "total": 888,
369
+ "passed": 770,
370
+ "failed": 8,
371
+ "skipped": 110
372
+ },
373
+ "defects": {
374
+ "to_investigate": {
375
+ "total": 118,
376
+ "ti001": 118
377
+ }
378
+ }
379
+ },
380
+ "attributes": [
381
+ {
382
+ "key": "env",
383
+ "value": "aws"
384
+ }
385
+ ],
386
+ "mode": "DEFAULT",
387
+ "analysing": [],
388
+ "approximateDuration": 1020.517333,
389
+ "hasRetries": false,
390
+ "rerun": false,
391
+ "metadata": {
392
+ "rp.cluster.lastRun": "1757411732542"
393
+ },
394
+ "retentionPolicy": "REGULAR"
395
+ },
396
+ {
397
+ "owner": "anton_yeromin",
398
+ "id": 32,
399
+ "uuid": "dc344b53-b929-4b75-ab82-6cb61f04040d",
400
+ "name": "Pytest Regression",
401
+ "number": 10,
402
+ "startTime": "2025-09-09T06:38:19.683Z",
403
+ "endTime": "2025-09-09T09:55:07.395393Z",
404
+ "lastModified": "2025-09-09T09:55:07.396166Z",
405
+ "status": "INTERRUPTED",
406
+ "statistics": {
407
+ "executions": {
408
+ "total": 888,
409
+ "passed": 300,
410
+ "failed": 447,
411
+ "skipped": 141
412
+ },
413
+ "defects": {
414
+ "to_investigate": {
415
+ "total": 588,
416
+ "ti001": 588
417
+ }
418
+ }
419
+ },
420
+ "attributes": [
421
+ {
422
+ "key": "env",
423
+ "value": "azure"
424
+ }
425
+ ],
426
+ "mode": "DEFAULT",
427
+ "analysing": [],
428
+ "approximateDuration": 1020.517333,
429
+ "hasRetries": false,
430
+ "rerun": false,
431
+ "metadata": {
432
+ "rp.cluster.lastRun": "1757411824642"
433
+ },
434
+ "retentionPolicy": "REGULAR"
435
+ },
436
+ {
437
+ "owner": "anton_yeromin",
438
+ "id": 33,
439
+ "uuid": "a4052bd7-42f9-4486-86a6-fa662a8618b1",
440
+ "name": "Pytest Regression",
441
+ "number": 11,
442
+ "startTime": "2025-09-09T07:00:31.710Z",
443
+ "endTime": "2025-09-09T10:55:07.405340Z",
444
+ "lastModified": "2025-09-09T10:55:07.409351Z",
445
+ "status": "INTERRUPTED",
446
+ "statistics": {
447
+ "executions": {
448
+ "total": 79,
449
+ "passed": 5,
450
+ "failed": 55,
451
+ "skipped": 19
452
+ },
453
+ "defects": {
454
+ "to_investigate": {
455
+ "total": 66,
456
+ "ti001": 66
457
+ }
458
+ }
459
+ },
460
+ "attributes": [
461
+ {
462
+ "key": "env",
463
+ "value": "azure"
464
+ }
465
+ ],
466
+ "mode": "DEFAULT",
467
+ "analysing": [],
468
+ "approximateDuration": 1020.517333,
469
+ "hasRetries": false,
470
+ "rerun": false,
471
+ "metadata": {
472
+ "rp.cluster.lastRun": "1757415316362"
473
+ },
474
+ "retentionPolicy": "REGULAR"
475
+ },
476
+ {
477
+ "owner": "anton_yeromin",
478
+ "id": 34,
479
+ "uuid": "4c967328-1dd3-4405-a117-dd5c66ad53a5",
480
+ "name": "Pytest Regression",
481
+ "number": 12,
482
+ "startTime": "2025-09-09T07:21:28.293Z",
483
+ "endTime": "2025-09-09T10:55:07.408322Z",
484
+ "lastModified": "2025-09-09T10:55:07.409535Z",
485
+ "status": "INTERRUPTED",
486
+ "statistics": {
487
+ "executions": {
488
+ "total": 888,
489
+ "passed": 732,
490
+ "failed": 9,
491
+ "skipped": 147
492
+ },
493
+ "defects": {
494
+ "to_investigate": {
495
+ "total": 156,
496
+ "ti001": 156
497
+ }
498
+ }
499
+ },
500
+ "attributes": [
501
+ {
502
+ "key": "env",
503
+ "value": "gcp"
504
+ }
505
+ ],
506
+ "mode": "DEFAULT",
507
+ "analysing": [],
508
+ "approximateDuration": 1020.517333,
509
+ "hasRetries": false,
510
+ "rerun": false,
511
+ "metadata": {
512
+ "rp.cluster.lastRun": "1757415319529"
513
+ },
514
+ "retentionPolicy": "REGULAR"
515
+ },
516
+ {
517
+ "owner": "anton_yeromin",
518
+ "id": 35,
519
+ "uuid": "56dd60de-0271-43b2-81be-5c0cfe3d847f",
520
+ "name": "Pytest Regression",
521
+ "number": 13,
522
+ "startTime": "2025-09-09T10:00:22.942Z",
523
+ "endTime": "2025-09-09T13:55:07.376388Z",
524
+ "lastModified": "2025-09-09T13:55:07.377003Z",
525
+ "status": "INTERRUPTED",
526
+ "statistics": {
527
+ "executions": {
528
+ "total": 888,
529
+ "passed": 309,
530
+ "failed": 438,
531
+ "skipped": 141
532
+ },
533
+ "defects": {
534
+ "to_investigate": {
535
+ "total": 579,
536
+ "ti001": 579
537
+ }
538
+ }
539
+ },
540
+ "attributes": [
541
+ {
542
+ "key": "env",
543
+ "value": "azure"
544
+ }
545
+ ],
546
+ "mode": "DEFAULT",
547
+ "analysing": [],
548
+ "approximateDuration": 1020.517333,
549
+ "hasRetries": false,
550
+ "rerun": false,
551
+ "metadata": {
552
+ "rp.cluster.lastRun": "1757426192463"
553
+ },
554
+ "retentionPolicy": "REGULAR"
555
+ },
556
+ {
557
+ "owner": "anton_yeromin",
558
+ "id": 36,
559
+ "uuid": "41420ab8-6039-452a-b408-c5f9299a43f1",
560
+ "name": "Pytest Regression",
561
+ "number": 14,
562
+ "startTime": "2025-09-09T10:01:06.439Z",
563
+ "endTime": "2025-09-09T10:40:03.279Z",
564
+ "lastModified": "2025-09-09T10:40:03.436937Z",
565
+ "status": "FAILED",
566
+ "statistics": {
567
+ "executions": {
568
+ "total": 888,
569
+ "passed": 811,
570
+ "failed": 35,
571
+ "skipped": 42
572
+ },
573
+ "defects": {
574
+ "to_investigate": {
575
+ "total": 77,
576
+ "ti001": 77
577
+ }
578
+ }
579
+ },
580
+ "attributes": [
581
+ {
582
+ "key": "env",
583
+ "value": "preview"
584
+ }
585
+ ],
586
+ "mode": "DEFAULT",
587
+ "analysing": [],
588
+ "approximateDuration": 1020.517333,
589
+ "hasRetries": false,
590
+ "rerun": false,
591
+ "metadata": {
592
+ "rp.cluster.lastRun": "1757414409362"
593
+ },
594
+ "retentionPolicy": "REGULAR"
595
+ },
596
+ {
597
+ "owner": "anton_yeromin",
598
+ "id": 38,
599
+ "uuid": "5c046800-d746-4b08-a8da-7e24f40d0048",
600
+ "name": "Pytest Regression",
601
+ "number": 15,
602
+ "startTime": "2025-09-09T15:00:20.775Z",
603
+ "endTime": "2025-09-09T18:55:07.379965Z",
604
+ "lastModified": "2025-09-09T18:55:07.380779Z",
605
+ "status": "INTERRUPTED",
606
+ "statistics": {
607
+ "executions": {
608
+ "total": 888,
609
+ "passed": 730,
610
+ "failed": 17,
611
+ "skipped": 141
612
+ },
613
+ "defects": {
614
+ "to_investigate": {
615
+ "total": 158,
616
+ "ti001": 158
617
+ }
618
+ }
619
+ },
620
+ "attributes": [
621
+ {
622
+ "key": "env",
623
+ "value": "azure"
624
+ }
625
+ ],
626
+ "mode": "DEFAULT",
627
+ "analysing": [],
628
+ "approximateDuration": 1349.598,
629
+ "hasRetries": false,
630
+ "rerun": false,
631
+ "metadata": {
632
+ "rp.cluster.lastRun": "1757444112042"
633
+ },
634
+ "retentionPolicy": "REGULAR"
635
+ },
636
+ {
637
+ "owner": "anton_yeromin",
638
+ "id": 39,
639
+ "uuid": "08368b09-5bf1-4c0f-bffa-189e316fca63",
640
+ "name": "Pytest Regression",
641
+ "number": 16,
642
+ "startTime": "2025-09-09T15:00:49.573Z",
643
+ "endTime": "2025-09-09T17:32:16.900Z",
644
+ "lastModified": "2025-09-09T17:32:17.018510Z",
645
+ "status": "FAILED",
646
+ "statistics": {
647
+ "executions": {
648
+ "total": 888,
649
+ "passed": 828,
650
+ "failed": 18,
651
+ "skipped": 42
652
+ },
653
+ "defects": {
654
+ "to_investigate": {
655
+ "total": 60,
656
+ "ti001": 60
657
+ }
658
+ }
659
+ },
660
+ "attributes": [
661
+ {
662
+ "key": "env",
663
+ "value": "preview"
664
+ }
665
+ ],
666
+ "mode": "DEFAULT",
667
+ "analysing": [],
668
+ "approximateDuration": 1349.598,
669
+ "hasRetries": false,
670
+ "rerun": false,
671
+ "metadata": {
672
+ "rp.cluster.lastRun": "1757439142457"
673
+ },
674
+ "retentionPolicy": "REGULAR"
675
+ }
676
+ ],
677
+ "page": {
678
+ "number": 1,
679
+ "size": 20,
680
+ "totalElements": 15,
681
+ "totalPages": 1
682
+ }
683
+ },
684
+ """,
685
+ ),
686
+ (
687
+ Toolkit.REPORT_PORTAL,
688
+ ReportPortalTool.FIND_TEST_ITEM_BY_ID,
689
+ {"item_id": "2884"},
690
+ """
691
+ {
692
+ "id": 2884,
693
+ "uuid": "16617c14-babf-4c30-be17-30510d8d5073",
694
+ "name": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py::test_workflow_with_assistant_with_ado_test_plan_tools",
695
+ "codeRef": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py:test_workflow_with_assistant_with_ado_test_plan_tools",
696
+ "parameters": [],
697
+ "attributes": [
698
+ {
699
+ "key": null,
700
+ "value": "regression"
701
+ }
702
+ ],
703
+ "type": "STEP",
704
+ "startTime": "2025-09-08T08:51:45.158Z",
705
+ "endTime": "2025-09-08T08:52:54.202Z",
706
+ "status": "FAILED",
707
+ "statistics": {
708
+ "executions": {
709
+ "total": 1,
710
+ "failed": 1
711
+ },
712
+ "defects": {
713
+ "to_investigate": {
714
+ "total": 1,
715
+ "ti001": 1
716
+ }
717
+ }
718
+ },
719
+ "pathNames": {
720
+ "launchPathName": {
721
+ "name": "Pytest Regression",
722
+ "number": 2
723
+ }
724
+ },
725
+ "issue": {
726
+ "issueType": "ti001",
727
+ "autoAnalyzed": false,
728
+ "ignoreAnalyzer": false,
729
+ "externalSystemIssues": []
730
+ },
731
+ "hasChildren": false,
732
+ "hasStats": true,
733
+ "launchId": 23,
734
+ "uniqueId": "auto:87331521821410ba6c28c2a3a9643eb7",
735
+ "testCaseId": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py:test_workflow_with_assistant_with_ado_test_plan_tools",
736
+ "testCaseHash": -800162226,
737
+ "patternTemplates": [],
738
+ "path": "2884"
739
+ },
740
+ """,
741
+ ),
742
+ (
743
+ Toolkit.REPORT_PORTAL,
744
+ ReportPortalTool.GET_TEST_ITEMS_FOR_LAUNCH,
745
+ {"launch_id": "23", "page_number": 1, "status": "FAILED"},
746
+ """
747
+ {
748
+ "content": [
749
+ {
750
+ "id": 2884,
751
+ "uuid": "16617c14-babf-4c30-be17-30510d8d5073",
752
+ "name": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py::test_workflow_with_assistant_with_ado_test_plan_tools",
753
+ "codeRef": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py:test_workflow_with_assistant_with_ado_test_plan_tools",
754
+ "parameters": [],
755
+ "attributes": [
756
+ {
757
+ "key": "",
758
+ "value": "regression"
759
+ }
760
+ ],
761
+ "type": "STEP",
762
+ "startTime": "2025-09-08T08:51:45.158Z",
763
+ "endTime": "2025-09-08T08:52:54.202Z",
764
+ "status": "FAILED",
765
+ "statistics": {
766
+ "executions": {
767
+ "total": 1,
768
+ "failed": 1
769
+ },
770
+ "defects": {
771
+ "to_investigate": {
772
+ "total": 1,
773
+ "ti001": 1
774
+ }
775
+ }
776
+ },
777
+ "pathNames": {
778
+ "launchPathName": {
779
+ "name": "Pytest Regression",
780
+ "number": 2
781
+ }
782
+ },
783
+ "issue": {
784
+ "issueType": "ti001",
785
+ "autoAnalyzed": false,
786
+ "ignoreAnalyzer": false,
787
+ "externalSystemIssues": []
788
+ },
789
+ "hasChildren": false,
790
+ "hasStats": true,
791
+ "launchId": 23,
792
+ "uniqueId": "auto:87331521821410ba6c28c2a3a9643eb7",
793
+ "testCaseId": "codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py:test_workflow_with_assistant_with_ado_test_plan_tools",
794
+ "testCaseHash": -800162226,
795
+ "patternTemplates": [],
796
+ "path": "2884"
797
+ },
798
+ {
799
+ "id": 3105,
800
+ "uuid": "df7e2a49-ed1c-458e-aac0-5dfaab1e2943",
801
+ "name": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py::test_workflow_with_sql_tools_with_hardcoded_args[DataBaseDialect.MS_SQL]",
802
+ "codeRef": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_with_hardcoded_args",
803
+ "parameters": [
804
+ {
805
+ "key": "prompt",
806
+ "value": "{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}"
807
+ },
808
+ {
809
+ "key": "toolkit",
810
+ "value": "Data Management"
811
+ },
812
+ {
813
+ "key": "db_dialect",
814
+ "value": "mssql"
815
+ },
816
+ {
817
+ "key": "expected_response",
818
+ "value": "[{'table_name': 'Users'}, {'table_name': 'Products'}]"
819
+ },
820
+ {
821
+ "key": "tool_name",
822
+ "value": "sql"
823
+ }
824
+ ],
825
+ "attributes": [
826
+ {
827
+ "key": "skipif",
828
+ "value": "False"
829
+ },
830
+ {
831
+ "key": "",
832
+ "value": "regression"
833
+ }
834
+ ],
835
+ "type": "STEP",
836
+ "startTime": "2025-09-08T08:57:10.737Z",
837
+ "endTime": "2025-09-08T08:57:32.809Z",
838
+ "status": "FAILED",
839
+ "statistics": {
840
+ "executions": {
841
+ "total": 1,
842
+ "failed": 1
843
+ },
844
+ "defects": {
845
+ "to_investigate": {
846
+ "total": 1,
847
+ "ti001": 1
848
+ }
849
+ }
850
+ },
851
+ "pathNames": {
852
+ "launchPathName": {
853
+ "name": "Pytest Regression",
854
+ "number": 2
855
+ }
856
+ },
857
+ "issue": {
858
+ "issueType": "ti001",
859
+ "autoAnalyzed": false,
860
+ "ignoreAnalyzer": false,
861
+ "externalSystemIssues": []
862
+ },
863
+ "hasChildren": false,
864
+ "hasStats": true,
865
+ "launchId": 23,
866
+ "uniqueId": "auto:7d6e822c868f455cc026c303af84a8ce",
867
+ "testCaseId": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_with_hardcoded_args[Data Management,[{'table_name': 'Users'}, {'table_name': 'Products'}],mssql,sql,{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}]",
868
+ "testCaseHash": 847364112,
869
+ "patternTemplates": [],
870
+ "path": "3105"
871
+ },
872
+ {
873
+ "id": 3133,
874
+ "uuid": "54788617-b214-4057-9a20-3c4d34ee9432",
875
+ "name": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py::test_workflow_with_sql_tools_with_overriding_args[DataBaseDialect.MS_SQL]",
876
+ "codeRef": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_with_overriding_args",
877
+ "parameters": [
878
+ {
879
+ "key": "prompt",
880
+ "value": "{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}"
881
+ },
882
+ {
883
+ "key": "toolkit",
884
+ "value": "Data Management"
885
+ },
886
+ {
887
+ "key": "db_dialect",
888
+ "value": "mssql"
889
+ },
890
+ {
891
+ "key": "expected_response",
892
+ "value": "[{'table_name': 'Users'}, {'table_name': 'Products'}]"
893
+ },
894
+ {
895
+ "key": "tool_name",
896
+ "value": "sql"
897
+ }
898
+ ],
899
+ "attributes": [
900
+ {
901
+ "key": "skipif",
902
+ "value": "False"
903
+ },
904
+ {
905
+ "key": "",
906
+ "value": "regression"
907
+ }
908
+ ],
909
+ "type": "STEP",
910
+ "startTime": "2025-09-08T08:57:42.220Z",
911
+ "endTime": "2025-09-08T08:58:04.877Z",
912
+ "status": "FAILED",
913
+ "statistics": {
914
+ "executions": {
915
+ "total": 1,
916
+ "failed": 1
917
+ },
918
+ "defects": {
919
+ "to_investigate": {
920
+ "total": 1,
921
+ "ti001": 1
922
+ }
923
+ }
924
+ },
925
+ "pathNames": {
926
+ "launchPathName": {
927
+ "name": "Pytest Regression",
928
+ "number": 2
929
+ }
930
+ },
931
+ "issue": {
932
+ "issueType": "ti001",
933
+ "autoAnalyzed": false,
934
+ "ignoreAnalyzer": false,
935
+ "externalSystemIssues": []
936
+ },
937
+ "hasChildren": false,
938
+ "hasStats": true,
939
+ "launchId": 23,
940
+ "uniqueId": "auto:4ccd523db59b8f0aae122708ec054430",
941
+ "testCaseId": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_with_overriding_args[Data Management,[{'table_name': 'Users'}, {'table_name': 'Products'}],mssql,sql,{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}]",
942
+ "testCaseHash": -266643613,
943
+ "patternTemplates": [],
944
+ "path": "3133"
945
+ },
946
+ {
947
+ "id": 3154,
948
+ "uuid": "0a2d317f-5e4f-4ac3-a5d0-c0c8368357d0",
949
+ "name": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py::test_workflow_with_sql_tools_direct[DataBaseDialect.MS_SQL]",
950
+ "codeRef": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_direct",
951
+ "parameters": [
952
+ {
953
+ "key": "prompt",
954
+ "value": "{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}"
955
+ },
956
+ {
957
+ "key": "toolkit",
958
+ "value": "Data Management"
959
+ },
960
+ {
961
+ "key": "db_dialect",
962
+ "value": "mssql"
963
+ },
964
+ {
965
+ "key": "expected_response",
966
+ "value": "[{'table_name': 'Users'}, {'table_name': 'Products'}]"
967
+ },
968
+ {
969
+ "key": "tool_name",
970
+ "value": "sql"
971
+ }
972
+ ],
973
+ "attributes": [
974
+ {
975
+ "key": "skipif",
976
+ "value": "False"
977
+ },
978
+ {
979
+ "key": "",
980
+ "value": "regression"
981
+ }
982
+ ],
983
+ "type": "STEP",
984
+ "startTime": "2025-09-08T08:58:09.114Z",
985
+ "endTime": "2025-09-08T08:58:29.596Z",
986
+ "status": "FAILED",
987
+ "statistics": {
988
+ "executions": {
989
+ "total": 1,
990
+ "failed": 1
991
+ },
992
+ "defects": {
993
+ "to_investigate": {
994
+ "total": 1,
995
+ "ti001": 1
996
+ }
997
+ }
998
+ },
999
+ "pathNames": {
1000
+ "launchPathName": {
1001
+ "name": "Pytest Regression",
1002
+ "number": 2
1003
+ }
1004
+ },
1005
+ "issue": {
1006
+ "issueType": "ti001",
1007
+ "autoAnalyzed": false,
1008
+ "ignoreAnalyzer": false,
1009
+ "externalSystemIssues": []
1010
+ },
1011
+ "hasChildren": false,
1012
+ "hasStats": true,
1013
+ "launchId": 23,
1014
+ "uniqueId": "auto:d28f8ed5670ce281b4e111a58251504d",
1015
+ "testCaseId": "codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools.py:test_workflow_with_sql_tools_direct[Data Management,[{'table_name': 'Users'}, {'table_name': 'Products'}],mssql,sql,{'sql_query': \"SELECT table_name\\n FROM\\n information_schema.tables\\n WHERE\\n table_type = 'BASE TABLE'\\n AND\\n table_catalog = 'autotests'\\n AND\\n table_schema = 'dbo';\\n \"}]",
1016
+ "testCaseHash": 1554145012,
1017
+ "patternTemplates": [],
1018
+ "path": "3154"
1019
+ }
1020
+ ],
1021
+ "page": {
1022
+ "number": 1,
1023
+ "size": 20,
1024
+ "totalElements": 4,
1025
+ "totalPages": 1
1026
+ }
1027
+ },
1028
+ """,
1029
+ ),
1030
+ (
1031
+ Toolkit.REPORT_PORTAL,
1032
+ ReportPortalTool.GET_LOGS_FOR_TEST_ITEM,
1033
+ {"item_id": "2884", "page_number": 1},
1034
+ """
1035
+ {
1036
+ "content": [
1037
+ {
1038
+ "id": 105239,
1039
+ "time": "2025-09-08T08:51:45.164Z",
1040
+ "message": "Making /v1/assistants request to https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com/code-assistant-api<class 'dict'>",
1041
+ "level": "DEBUG",
1042
+ "itemId": 2884
1043
+ },
1044
+ {
1045
+ "id": 105240,
1046
+ "time": "2025-09-08T08:51:45.164Z",
1047
+ "message": "Request body: {'name': 'sdp_xjwyipzcypfocwq', 'description': 'Integration test assistant', 'system_prompt': 'You are a helpful integration test assistant', 'project': 'codemie', 'context': [], 'llm_model_type': 'gpt-4o-2024-08-06', 'toolkits': [{'toolkit': 'Azure DevOps Test Plan', 'tools': [{'name': 'create_test_plan', 'settings_config': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}, {'name': 'create_test_suite', 'settings_config': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}, {'name': 'add_test_case', 'settings_config': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}, {'name': 'delete_test_suite', 'settings_config': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}, {'name': 'delete_test_plan', 'settings_config': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}], 'label': '', 'settings_config': False, 'is_external': False, 'settings': {'id': 'cfe4c992-6338-42ed-ab44-807bdaa1cefa', 'date': '2025-09-08T08:51:03.438066', 'update_date': '2025-09-08T08:51:03.438066', 'user_id': '4c80b5ea-fae8-4c72-b09e-339909b84537', 'project_name': 'codemie', 'alias': 'sdp_ifyrslqqplcxyhx', 'default': False, 'is_global': False, 'credential_type': <CredentialTypes.AZURE_DEVOPS: 'AzureDevOps'>, 'credential_values': [{'key': 'url', 'value': 'https://dev.azure.com'}, {'key': 'token', 'value': '**********'}, {'key': 'project', 'value': 'CodemieAnton'}, {'key': 'organization', 'value': 'AntonYeromin'}], 'setting_type': <IntegrationType.PROJECT: 'project'>}}], 'user_prompts': [], 'shared': False, 'is_react': False, 'is_global': False, 'slug': 'sdp_xjwyipzcypfocwq', 'mcp_servers': [], 'assistant_ids': []}",
1048
+ "level": "DEBUG",
1049
+ "itemId": 2884
1050
+ },
1051
+ {
1052
+ "id": 105241,
1053
+ "time": "2025-09-08T08:51:45.165Z",
1054
+ "message": "Starting new HTTPS connection (1): codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443",
1055
+ "level": "DEBUG",
1056
+ "itemId": 2884
1057
+ },
1058
+ {
1059
+ "id": 105242,
1060
+ "time": "2025-09-08T08:51:45.226Z",
1061
+ "message": "https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443 \"POST /code-assistant-api/v1/assistants HTTP/1.1\" 200 39",
1062
+ "level": "DEBUG",
1063
+ "itemId": 2884
1064
+ },
1065
+ {
1066
+ "id": 105243,
1067
+ "time": "2025-09-08T08:51:45.226Z",
1068
+ "message": "Received response with status 200",
1069
+ "level": "DEBUG",
1070
+ "itemId": 2884
1071
+ },
1072
+ {
1073
+ "id": 105244,
1074
+ "time": "2025-09-08T08:51:45.226Z",
1075
+ "message": "Response datasource_type: <class 'dict'>",
1076
+ "level": "DEBUG",
1077
+ "itemId": 2884
1078
+ },
1079
+ {
1080
+ "id": 105245,
1081
+ "time": "2025-09-08T08:51:45.228Z",
1082
+ "message": "Successfully processed /v1/assistants request to <class 'dict'>",
1083
+ "level": "INFO",
1084
+ "itemId": 2884
1085
+ },
1086
+ {
1087
+ "id": 105246,
1088
+ "time": "2025-09-08T08:51:45.228Z",
1089
+ "message": "Making /v1/assistants request to https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com/code-assistant-apityping.List[codemie_sdk.models.assistant.AssistantBase]",
1090
+ "level": "DEBUG",
1091
+ "itemId": 2884
1092
+ },
1093
+ {
1094
+ "id": 105247,
1095
+ "time": "2025-09-08T08:51:45.228Z",
1096
+ "message": "Request params: {'page': 0, 'per_page': 200, 'scope': 'visible_to_user', 'minimal_response': True}",
1097
+ "level": "DEBUG",
1098
+ "itemId": 2884
1099
+ },
1100
+ {
1101
+ "id": 105248,
1102
+ "time": "2025-09-08T08:51:45.229Z",
1103
+ "message": "Starting new HTTPS connection (1): codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443",
1104
+ "level": "DEBUG",
1105
+ "itemId": 2884
1106
+ },
1107
+ {
1108
+ "id": 105249,
1109
+ "time": "2025-09-08T08:51:45.299Z",
1110
+ "message": "https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443 \"GET /code-assistant-api/v1/assistants?page=0&per_page=200&scope=visible_to_user&minimal_response=True HTTP/1.1\" 200 69989",
1111
+ "level": "DEBUG",
1112
+ "itemId": 2884
1113
+ },
1114
+ {
1115
+ "id": 105290,
1116
+ "time": "2025-09-08T08:51:45.310Z",
1117
+ "message": "Received response with status 200",
1118
+ "level": "DEBUG",
1119
+ "itemId": 2884
1120
+ },
1121
+ {
1122
+ "id": 105291,
1123
+ "time": "2025-09-08T08:51:45.311Z",
1124
+ "message": "Response datasource_type: <class 'dict'>",
1125
+ "level": "DEBUG",
1126
+ "itemId": 2884
1127
+ },
1128
+ {
1129
+ "id": 105292,
1130
+ "time": "2025-09-08T08:51:45.312Z",
1131
+ "message": "Successfully processed /v1/assistants request to typing.List[codemie_sdk.models.assistant.AssistantBase]",
1132
+ "level": "INFO",
1133
+ "itemId": 2884
1134
+ },
1135
+ {
1136
+ "id": 105293,
1137
+ "time": "2025-09-08T08:51:45.314Z",
1138
+ "message": "Making /v1/workflows request to https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com/code-assistant-api<class 'dict'>",
1139
+ "level": "DEBUG",
1140
+ "itemId": 2884
1141
+ },
1142
+ {
1143
+ "id": 105294,
1144
+ "time": "2025-09-08T08:51:45.314Z",
1145
+ "message": "Request body: {'project': 'codemie', 'name': 'sdp_xpgivblpavtdeza', 'description': 'Test Workflow', 'yaml_config': 'enable_summarization_node: false\\ntools: []\\nassistants:\\n- id: sdp_xjwyipzcypfocwq\\n model: gpt-4o-2024-08-06\\n assistant_id: 6ef6a01d-70ef-4211-a385-8c99b87eee72\\nstates:\\n- id: sdp_xjwyipzcypfocwq\\n assistant_id: sdp_xjwyipzcypfocwq\\n task: Run\\n next:\\n state_id: end\\n', 'mode': <WorkflowMode.SEQUENTIAL: 'Sequential'>, 'shared': True, 'icon_url': None}",
1146
+ "level": "DEBUG",
1147
+ "itemId": 2884
1148
+ },
1149
+ {
1150
+ "id": 105295,
1151
+ "time": "2025-09-08T08:51:45.315Z",
1152
+ "message": "Starting new HTTPS connection (1): codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443",
1153
+ "level": "DEBUG",
1154
+ "itemId": 2884
1155
+ },
1156
+ {
1157
+ "id": 105296,
1158
+ "time": "2025-09-08T08:51:45.394Z",
1159
+ "message": "https://codemie-azure.eks-sandbox.aws.main.edp.projects.epam.com:443 \"POST /code-assistant-api/v1/workflows HTTP/1.1\" 200 2119",
1160
+ "level": "DEBUG",
1161
+ "itemId": 2884
1162
+ },
1163
+ {
1164
+ "id": 105297,
1165
+ "time": "2025-09-08T08:51:45.394Z",
1166
+ "message": "Received response with status 200",
1167
+ "level": "DEBUG",
1168
+ "itemId": 2884
1169
+ },
1170
+ {
1171
+ "id": 105298,
1172
+ "time": "2025-09-08T08:51:45.394Z",
1173
+ "message": "Response datasource_type: <class 'dict'>",
1174
+ "level": "DEBUG",
1175
+ "itemId": 2884
1176
+ }
1177
+ ],
1178
+ "page": {
1179
+ "number": 1,
1180
+ "size": 20,
1181
+ "totalElements": 903,
1182
+ "totalPages": 46
1183
+ }
1184
+ },
1185
+ """,
1186
+ ),
1187
+ (
1188
+ Toolkit.REPORT_PORTAL,
1189
+ ReportPortalTool.GET_USER_INFORMATION,
1190
+ {"username": "anton_yeromin"},
1191
+ """
1192
+ {
1193
+ "uuid": "de49a61f-1100-4de6-be8e-4ed7d62f5f27",
1194
+ "active": true,
1195
+ "id": 4,
1196
+ "userId": "anton_yeromin",
1197
+ "email": "anton_yeromin@epam.com",
1198
+ "fullName": "Anton Yeromin",
1199
+ "accountType": "SAML",
1200
+ "userRole": "USER",
1201
+ "photoLoaded": true,
1202
+ "metadata": {
1203
+ "last_login": 1757403246837,
1204
+ "synchronizationDate": 1757314564405
1205
+ },
1206
+ "assignedProjects": {
1207
+ "epm-cdme": {
1208
+ "projectId": 4,
1209
+ "projectRole": "PROJECT_MANAGER",
1210
+ "entryType": "INTERNAL"
1211
+ },
1212
+ "anton_yeromin_personal": {
1213
+ "projectId": 6,
1214
+ "projectRole": "PROJECT_MANAGER",
1215
+ "entryType": "PERSONAL"
1216
+ }
1217
+ }
1218
+ },
1219
+ """,
1220
+ ),
1221
+ (
1222
+ Toolkit.REPORT_PORTAL,
1223
+ ReportPortalTool.GET_DASHBOARD_DATA,
1224
+ {"dashboard_id": "2"},
1225
+ """
1226
+ {
1227
+ "description": "dashboard for testing purposes",
1228
+ "owner": "dmytro_adamtsev",
1229
+ "id": 2,
1230
+ "name": "test-dashboard",
1231
+ "widgets": []
1232
+ },
1233
+ """,
1234
+ ),
1235
+ ]