codemie-test-harness 0.1.205__py3-none-any.whl → 0.1.207__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 (25) hide show
  1. codemie_test_harness/tests/assistant/datasource/test_code_datasource.py +2 -2
  2. codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py +14 -14
  3. codemie_test_harness/tests/conftest.py +34 -12
  4. codemie_test_harness/tests/e2e/test_e2e.py +2 -2
  5. codemie_test_harness/tests/ui/assistants/test_create_assistant.py +13 -13
  6. codemie_test_harness/tests/ui/assistants/test_edit_assistant.py +200 -0
  7. codemie_test_harness/tests/ui/datasource/test_create_datasource.py +2 -2
  8. codemie_test_harness/tests/ui/datasource/test_edit_datasource.py +2 -2
  9. codemie_test_harness/tests/ui/datasource/test_view_datasource.py +2 -2
  10. codemie_test_harness/tests/ui/pageobject/assistants/assistant_mcp_server.py +171 -0
  11. codemie_test_harness/tests/ui/pageobject/assistants/assistant_sidebar.py +140 -0
  12. codemie_test_harness/tests/ui/pageobject/assistants/assistant_view_page.py +256 -0
  13. codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py +63 -0
  14. codemie_test_harness/tests/ui/pageobject/assistants/{create_assistant_page.py → create_edit_assistant_page.py} +379 -95
  15. codemie_test_harness/tests/ui/test_data/assistant_test_data.py +347 -18
  16. codemie_test_harness/tests/utils/constants.py +1 -1
  17. codemie_test_harness/tests/utils/webhook_utils.py +10 -0
  18. codemie_test_harness/tests/webhook/__init__.py +0 -0
  19. codemie_test_harness/tests/webhook/test_webhook_service.py +225 -0
  20. codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +14 -14
  21. codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +14 -14
  22. {codemie_test_harness-0.1.205.dist-info → codemie_test_harness-0.1.207.dist-info}/METADATA +2 -2
  23. {codemie_test_harness-0.1.205.dist-info → codemie_test_harness-0.1.207.dist-info}/RECORD +25 -18
  24. {codemie_test_harness-0.1.205.dist-info → codemie_test_harness-0.1.207.dist-info}/WHEEL +0 -0
  25. {codemie_test_harness-0.1.205.dist-info → codemie_test_harness-0.1.207.dist-info}/entry_points.txt +0 -0
@@ -30,7 +30,7 @@ def test_workflow_with_list_branch_set_active_branch_tools(
30
30
  workflow_utils,
31
31
  code_datasource,
32
32
  code_context,
33
- git_integration,
33
+ gitlab_integration,
34
34
  similarity_check,
35
35
  workflow_with_assistant,
36
36
  toolkit,
@@ -42,7 +42,7 @@ def test_workflow_with_list_branch_set_active_branch_tools(
42
42
  toolkit,
43
43
  tool_name,
44
44
  context=code_context(code_datasource),
45
- settings=git_integration,
45
+ settings=gitlab_integration,
46
46
  )
47
47
  workflow_with_assistant = workflow_with_assistant(assistant, prompt)
48
48
  response = workflow_utils.execute_workflow(
@@ -74,7 +74,7 @@ def test_workflow_with_create_branch_tool(
74
74
  similarity_check,
75
75
  workflow_with_assistant,
76
76
  git_utils,
77
- git_integration,
77
+ gitlab_integration,
78
78
  toolkit,
79
79
  tool_name,
80
80
  prompt_template,
@@ -89,7 +89,7 @@ def test_workflow_with_create_branch_tool(
89
89
  toolkit,
90
90
  tool_name,
91
91
  context=code_context(code_datasource),
92
- settings=git_integration,
92
+ settings=gitlab_integration,
93
93
  )
94
94
  workflow_with_assistant = workflow_with_assistant(assistant, prompt)
95
95
  response = workflow_utils.execute_workflow(
@@ -130,7 +130,7 @@ def test_workflow_with_create_file_tool(
130
130
  similarity_check,
131
131
  workflow_with_assistant,
132
132
  git_utils,
133
- git_integration,
133
+ gitlab_integration,
134
134
  toolkit,
135
135
  tool_name,
136
136
  prompt_template,
@@ -149,7 +149,7 @@ def test_workflow_with_create_file_tool(
149
149
  toolkit,
150
150
  tool_name,
151
151
  context=code_context(code_datasource),
152
- settings=git_integration,
152
+ settings=gitlab_integration,
153
153
  )
154
154
  workflow_with_assistant = workflow_with_assistant(assistant, prompt)
155
155
  response = workflow_utils.execute_workflow(
@@ -188,7 +188,7 @@ def test_workflow_with_create_merge_request_tool(
188
188
  similarity_check,
189
189
  workflow_with_assistant,
190
190
  git_utils,
191
- git_integration,
191
+ gitlab_integration,
192
192
  toolkit,
193
193
  tool_name,
194
194
  prompt_template,
@@ -205,7 +205,7 @@ def test_workflow_with_create_merge_request_tool(
205
205
  toolkit,
206
206
  tool_name,
207
207
  context=code_context(code_datasource),
208
- settings=git_integration,
208
+ settings=gitlab_integration,
209
209
  )
210
210
  workflow_with_assistant = workflow_with_assistant(assistant, prompt)
211
211
  response = workflow_utils.execute_workflow(
@@ -244,7 +244,7 @@ def test_workflow_with_delete_file_tool(
244
244
  similarity_check,
245
245
  workflow_with_assistant,
246
246
  git_utils,
247
- git_integration,
247
+ gitlab_integration,
248
248
  toolkit,
249
249
  tool_name,
250
250
  prompt_template,
@@ -275,7 +275,7 @@ def test_workflow_with_delete_file_tool(
275
275
  toolkit,
276
276
  tool_name,
277
277
  context=code_context(code_datasource),
278
- settings=git_integration,
278
+ settings=gitlab_integration,
279
279
  )
280
280
  workflow_with_assistant = workflow_with_assistant(assistant, prompt)
281
281
  response = workflow_utils.execute_workflow(
@@ -314,7 +314,7 @@ def test_workflow_with_get_merge_request_changes_tool(
314
314
  workflow_utils,
315
315
  datasource_utils,
316
316
  git_utils,
317
- git_integration,
317
+ gitlab_integration,
318
318
  code_datasource,
319
319
  code_context,
320
320
  similarity_check,
@@ -335,7 +335,7 @@ def test_workflow_with_get_merge_request_changes_tool(
335
335
  toolkit,
336
336
  tool_name,
337
337
  context=code_context(code_datasource),
338
- settings=git_integration,
338
+ settings=gitlab_integration,
339
339
  )
340
340
 
341
341
  create_mr_prompt = create_mr_prompt_template(source_branch, class_name, mr_name)
@@ -401,7 +401,7 @@ def test_workflow_with_update_file_tools(
401
401
  workflow_utils,
402
402
  datasource_utils,
403
403
  git_utils,
404
- git_integration,
404
+ gitlab_integration,
405
405
  code_datasource,
406
406
  code_context,
407
407
  similarity_check,
@@ -423,7 +423,7 @@ def test_workflow_with_update_file_tools(
423
423
  toolkit,
424
424
  tool_name,
425
425
  context=code_context(code_datasource),
426
- settings=git_integration,
426
+ settings=gitlab_integration,
427
427
  )
428
428
 
429
429
  create_prompt = create_prompt_template(class_name)
@@ -28,7 +28,7 @@ from codemie_test_harness.tests.utils.base_utils import (
28
28
  )
29
29
  def test_workflow_with_list_branch_set_active_branch_tools(
30
30
  workflow_with_virtual_assistant,
31
- git_integration,
31
+ gitlab_integration,
32
32
  workflow_utils,
33
33
  similarity_check,
34
34
  code_datasource,
@@ -42,7 +42,7 @@ def test_workflow_with_list_branch_set_active_branch_tools(
42
42
  test_workflow = workflow_with_virtual_assistant(
43
43
  assistant_and_state_name,
44
44
  tool_name,
45
- integration=git_integration,
45
+ integration=gitlab_integration,
46
46
  task=prompt,
47
47
  datasource_ids=[code_datasource.id],
48
48
  )
@@ -67,7 +67,7 @@ def test_workflow_with_list_branch_set_active_branch_tools(
67
67
  )
68
68
  def test_workflow_with_create_branch_tool(
69
69
  workflow_with_virtual_assistant,
70
- git_integration,
70
+ gitlab_integration,
71
71
  workflow_utils,
72
72
  similarity_check,
73
73
  git_utils,
@@ -86,7 +86,7 @@ def test_workflow_with_create_branch_tool(
86
86
  test_workflow = workflow_with_virtual_assistant(
87
87
  assistant_and_state_name,
88
88
  tool_name,
89
- integration=git_integration,
89
+ integration=gitlab_integration,
90
90
  task=prompt,
91
91
  datasource_ids=[code_datasource.id],
92
92
  )
@@ -121,7 +121,7 @@ def test_workflow_with_create_branch_tool(
121
121
  )
122
122
  def test_workflow_with_create_file_tool(
123
123
  workflow_with_virtual_assistant,
124
- git_integration,
124
+ gitlab_integration,
125
125
  workflow_utils,
126
126
  similarity_check,
127
127
  git_utils,
@@ -144,7 +144,7 @@ def test_workflow_with_create_file_tool(
144
144
  test_workflow = workflow_with_virtual_assistant(
145
145
  assistant_and_state_name,
146
146
  tool_name,
147
- integration=git_integration,
147
+ integration=gitlab_integration,
148
148
  task=prompt,
149
149
  datasource_ids=[code_datasource.id],
150
150
  )
@@ -177,7 +177,7 @@ def test_workflow_with_create_file_tool(
177
177
  )
178
178
  def test_workflow_with_create_merge_request_tool(
179
179
  workflow_with_virtual_assistant,
180
- git_integration,
180
+ gitlab_integration,
181
181
  workflow_utils,
182
182
  similarity_check,
183
183
  git_utils,
@@ -198,7 +198,7 @@ def test_workflow_with_create_merge_request_tool(
198
198
  test_workflow = workflow_with_virtual_assistant(
199
199
  assistant_and_state_name,
200
200
  tool_name,
201
- integration=git_integration,
201
+ integration=gitlab_integration,
202
202
  task=prompt,
203
203
  datasource_ids=[code_datasource.id],
204
204
  )
@@ -229,7 +229,7 @@ def test_workflow_with_create_merge_request_tool(
229
229
  )
230
230
  def test_workflow_with_delete_file_tool(
231
231
  workflow_with_virtual_assistant,
232
- git_integration,
232
+ gitlab_integration,
233
233
  workflow_utils,
234
234
  datasource_utils,
235
235
  code_datasource,
@@ -265,7 +265,7 @@ def test_workflow_with_delete_file_tool(
265
265
  test_workflow = workflow_with_virtual_assistant(
266
266
  assistant_and_state_name,
267
267
  tool_name,
268
- integration=git_integration,
268
+ integration=gitlab_integration,
269
269
  task=prompt,
270
270
  datasource_ids=[code_datasource.id],
271
271
  )
@@ -302,7 +302,7 @@ def test_workflow_with_get_merge_request_changes_tool(
302
302
  assistant,
303
303
  assistant_utils,
304
304
  workflow_with_virtual_assistant,
305
- git_integration,
305
+ gitlab_integration,
306
306
  workflow_utils,
307
307
  datasource_utils,
308
308
  git_utils,
@@ -348,7 +348,7 @@ def test_workflow_with_get_merge_request_changes_tool(
348
348
  test_workflow = workflow_with_virtual_assistant(
349
349
  assistant_and_state_name,
350
350
  tool_name,
351
- integration=git_integration,
351
+ integration=gitlab_integration,
352
352
  task=get_changes_prompt,
353
353
  datasource_ids=[code_datasource.id],
354
354
  )
@@ -379,7 +379,7 @@ def test_workflow_with_update_file_tools(
379
379
  assistant,
380
380
  assistant_utils,
381
381
  workflow_with_virtual_assistant,
382
- git_integration,
382
+ gitlab_integration,
383
383
  workflow_utils,
384
384
  datasource_utils,
385
385
  git_utils,
@@ -428,7 +428,7 @@ def test_workflow_with_update_file_tools(
428
428
  test_workflow = workflow_with_virtual_assistant(
429
429
  assistant_and_state_name,
430
430
  tool_name,
431
- integration=git_integration,
431
+ integration=gitlab_integration,
432
432
  task=update_prompt,
433
433
  datasource_ids=[code_datasource.id],
434
434
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: codemie-test-harness
3
- Version: 0.1.205
3
+ Version: 0.1.207
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.205)
16
+ Requires-Dist: codemie-sdk-python (==0.1.207)
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-repeat (>=0.9.3,<0.10.0)
@@ -16,7 +16,7 @@ codemie_test_harness/pytest.ini,sha256=U5XqIpaeJ7OQE7yYBVqoM63bA2F8N1Hr-hIe5lARw
16
16
  codemie_test_harness/tests/__init__.py,sha256=CX5mbH_1RzwetK14moYQ0KCoUBPQMGkI14Fg8tAUJ0A,782
17
17
  codemie_test_harness/tests/assistant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  codemie_test_harness/tests/assistant/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=bXqupQgbSZkB__jUbcYVNaQGSv7nm1AuDMrNUW-lti8,3134
19
+ codemie_test_harness/tests/assistant/datasource/test_code_datasource.py,sha256=NoEduPw86Y2TocvU-6_hHNDDQZUDWP-aT_6i89rKFEE,3140
20
20
  codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py,sha256=QHDnt3ktbEha_-jl79T15Qam9iTd8V1cW8yMkQwA2qA,3943
21
21
  codemie_test_harness/tests/assistant/datasource/test_file_indexing.py,sha256=LPXefMjBi-CFHPtHis4MKQ98a8eleFu4sRw7-7_iKBQ,6038
22
22
  codemie_test_harness/tests/assistant/datasource/test_google_datasource.py,sha256=zdhHUxM94Et48RPG9Bminn8HX3YY_VoNWJjMljd_xz0,2738
@@ -42,7 +42,7 @@ codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_da
42
42
  codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py,sha256=TIITX4AJ2SbyJ3qzK5I3deRrczF5-_vA7hs6d6BGLrg,4809
44
44
  codemie_test_harness/tests/assistant/tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=Kaq6QkIHIMo0kUV6HZUArcSsa5Wp06aiECUUvDTqsAs,12196
45
+ codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py,sha256=hzRVWfWfso61wHFuGDrxgNhlPxozzDlLrneq3DMSkxc,12238
46
46
  codemie_test_harness/tests/assistant/tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py,sha256=SCEf5koVICJYRv5Du3TT0viAPmWojgHO8PX5ZVGPCrE,2761
48
48
  codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py,sha256=omH5BVtyOZqlqX9NOfWelJ93geLSTVQXropCMAhAkiA,1568
@@ -64,11 +64,11 @@ codemie_test_harness/tests/assistant/tools/servicenow/__init__.py,sha256=47DEQpj
64
64
  codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py,sha256=aUjfZ4773WoQJjcHx3JqH5e8ckaKB-aIMO-OZWTm0Ek,888
65
65
  codemie_test_harness/tests/assistant/tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
66
  codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py,sha256=c9cZXxMo0YFVJLWdYt23Awy2PqTnNxp0uLLCgk8k2iQ,1143
67
- codemie_test_harness/tests/conftest.py,sha256=xbfp7xgmw2jBTrql5N_RNsyZvmwos_ksvTbo0Fw-7ng,31150
67
+ codemie_test_harness/tests/conftest.py,sha256=0VlSE9bKnArjEQ0_OEB2NFxDOWsnWHy-MK5ftHuAaSo,31936
68
68
  codemie_test_harness/tests/conversations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
69
  codemie_test_harness/tests/conversations/test_conversations_endpoints.py,sha256=HQ2nu9lXfRNkyJhA0rzar7Rmv6pMe-te0rFYAy-X5UA,4128
70
70
  codemie_test_harness/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- codemie_test_harness/tests/e2e/test_e2e.py,sha256=hnNNq4HOED4lX3ZdwQcLQTPWtsXf8LlQ8vYphx6tNIk,6604
71
+ codemie_test_harness/tests/e2e/test_e2e.py,sha256=BjBzyCeZCSGE1iGhjdYKBo6pMwimZ26tfURA1AinzGg,6598
72
72
  codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  codemie_test_harness/tests/enums/environment.py,sha256=p1qAX5kGZ83eZVZf1xE2OMaJ6Br8AWcudKrPQCY1Zms,3099
74
74
  codemie_test_harness/tests/enums/integrations.py,sha256=L4sItzBjFBR65gMCebSYchADjwxmTtpEWQZvxd9aSnU,188
@@ -198,22 +198,26 @@ codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_to
198
198
  codemie_test_harness/tests/test_data/workflow_validation_messages.py,sha256=zg5BhMJ_tbzEeLSYJEnspHTuWar1qgoxqTfIXltlSPg,3282
199
199
  codemie_test_harness/tests/ui/__init__.py,sha256=Xqfl0zEG1wUyz8Qm4ZsFqmkp7KtZv91xtxkm-ue4SQ4,22
200
200
  codemie_test_harness/tests/ui/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
- codemie_test_harness/tests/ui/assistants/test_create_assistant.py,sha256=kbb9DXKFK3eTx00uMiyTTEprQ-Z3HBiOd0H7DDut7x0,14297
201
+ codemie_test_harness/tests/ui/assistants/test_create_assistant.py,sha256=3ilai5C9IspcVrVLLEXY1a0-r9guzwS41zKRBJtLam0,14354
202
+ codemie_test_harness/tests/ui/assistants/test_edit_assistant.py,sha256=nX2vx3nds0qy7eaBdNIVWpbH5RLldrZsl7K32Bc2BVs,6936
202
203
  codemie_test_harness/tests/ui/chats/conftest.py,sha256=0we4CT71wycq2B1aPi0DrLo5IAtHFV-HSzhGd0GoQaE,389
203
204
  codemie_test_harness/tests/ui/chats/test_chat_configuration.py,sha256=9nmHA_fzxvL5ALEUkhRie9hNUPmrDNhnmfFxxyZCFG0,7152
204
205
  codemie_test_harness/tests/ui/chats/test_chat_functionality.py,sha256=DLql4eYXOW_mbmvHtcWqbgdhc3agCglDi7jjxF8fjGg,7675
205
206
  codemie_test_harness/tests/ui/conftest.py,sha256=6IQqjL7pbnqXn9-Dr_mY4lD36VtOHw4LILjYD3LX6_s,5128
206
207
  codemie_test_harness/tests/ui/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
- codemie_test_harness/tests/ui/datasource/test_create_datasource.py,sha256=2WLY52i02Yw2sKYGL4aJt7ozUzZCF_y_aLu2rp53uMo,6424
208
+ codemie_test_harness/tests/ui/datasource/test_create_datasource.py,sha256=of6SoKuZPyC_RCMxcln9uVrBXF7sk1pn0rihZioQTes,6430
208
209
  codemie_test_harness/tests/ui/datasource/test_datasource_page.py,sha256=X1f5XuGc30Xxlq4LnVAFDgdG8n8FUQoFShU6JOE2WVY,2325
209
- codemie_test_harness/tests/ui/datasource/test_edit_datasource.py,sha256=-1UAZ113WEMDMt9PO2e4mA_B8DpBUMVXSruQfeyeJ6Q,6424
210
- codemie_test_harness/tests/ui/datasource/test_view_datasource.py,sha256=MfO3U_QN8btoG6ILZbtv5Hqf55hmRmog9PzK4avQd_o,7769
210
+ codemie_test_harness/tests/ui/datasource/test_edit_datasource.py,sha256=ipYVkvQlwx3rFsK5_U2qIfmM-0-2RpI4lNSahOqVHLE,6430
211
+ codemie_test_harness/tests/ui/datasource/test_view_datasource.py,sha256=0yprvPfL5FMcvGbserKVApGMzynoObbnCg9dMdwBqr4,7775
211
212
  codemie_test_harness/tests/ui/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
213
  codemie_test_harness/tests/ui/integrations/test_create_integration.py,sha256=esndMHGdpJbKEjHNd8fvhhzWD0W5-wEhmlF0hiRwXnw,11934
213
214
  codemie_test_harness/tests/ui/pageobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
215
  codemie_test_harness/tests/ui/pageobject/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
- codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py,sha256=E3aEXpmMhjcmJsO_nE52WdbHXOoK-Hp9vqIw4rEPzrU,6043
216
- codemie_test_harness/tests/ui/pageobject/assistants/create_assistant_page.py,sha256=xGl5nZAwJJtZ_ej2ycYgywK9EBGj_-AXCW4Z_eEWgYA,21791
216
+ codemie_test_harness/tests/ui/pageobject/assistants/assistant_mcp_server.py,sha256=hU7vA9HI-Y-VJn55wXmlb1nZCq_FOWn0OmGE8xZeZns,5267
217
+ codemie_test_harness/tests/ui/pageobject/assistants/assistant_sidebar.py,sha256=xlPgQUfCmOl4GzKOaqzlnm5F7f0DGOi94Wl3XOZT3JY,4871
218
+ codemie_test_harness/tests/ui/pageobject/assistants/assistant_view_page.py,sha256=XhLNg30iYzeFwCCWhyg8B-_7x7dODT5Us6eMsJ4E90Y,8879
219
+ codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py,sha256=V53oJfxcg2g_X5oajOCWbk6NNvAzVugE7FtX-2ImCAg,8093
220
+ codemie_test_harness/tests/ui/pageobject/assistants/create_edit_assistant_page.py,sha256=1K4WsDIldagwrMJ7FFN7K3PHIv0LJn5fmzhytr9CAnM,32321
217
221
  codemie_test_harness/tests/ui/pageobject/assistants/generate_with_ai_modal.py,sha256=rsavzWxmawKzI4wHxixp49IN6m_ZUZNFTJTSnE8jBr8,13732
218
222
  codemie_test_harness/tests/ui/pageobject/base_page.py,sha256=z8jqR_qqcwI0kMkcigG68KK3zWjMUbx0DWSFu2d7WsQ,9073
219
223
  codemie_test_harness/tests/ui/pageobject/chats/chat_page.py,sha256=MoviVb9JAeXWX15GtqLxrH4KOR8DmWhrCztpWWtum4M,21307
@@ -249,7 +253,7 @@ codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py,
249
253
  codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py,sha256=J5jxdZ2aQ9k15ghyRKYACxX2F9NiR6dXYBw0EaYlaN0,2645
250
254
  codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py,sha256=yqdaSTA4aUeD-8A9Or0OgJZhMr2tDvDWWP_f4uPL5dw,11186
251
255
  codemie_test_harness/tests/ui/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
- codemie_test_harness/tests/ui/test_data/assistant_test_data.py,sha256=-tpuOrLe-fD3FbVQkIMbGtfSOJSwcNIJoPmZb20Dfyw,6894
256
+ codemie_test_harness/tests/ui/test_data/assistant_test_data.py,sha256=GcXsxdRR9h-L5FqBNa8mu3sRh29qcRVNZh6htn69OJU,17304
253
257
  codemie_test_harness/tests/ui/test_data/chat_test_data.py,sha256=QEic3RgHxKy2dZhbLL9412r0uvYb1kQ0KPm2yzEZ-oU,2966
254
258
  codemie_test_harness/tests/ui/test_data/datasource_test_data.py,sha256=Ubx8o1NPxiJ2adaz6IDpwXDKB9_yE40v5_0az__CX0I,3489
255
259
  codemie_test_harness/tests/ui/test_data/integration_test_data.py,sha256=6YnDIWhOSTSmzIziBCfpqYikVT0kXw_vMrMJBmhnSnQ,4212
@@ -265,7 +269,7 @@ codemie_test_harness/tests/utils/assistant_utils.py,sha256=2s1MikCfIcM3Ulkcuwaed
265
269
  codemie_test_harness/tests/utils/aws_parameters_store.py,sha256=YAVpvwElkKZJZvzSVxtOue1Gjs-kvSBS2y5QvIlz484,3267
266
270
  codemie_test_harness/tests/utils/base_utils.py,sha256=SJV-m8KuC6MAU4W5a1sWLz6Nw-1-buc0f-W1hbA1OIY,8270
267
271
  codemie_test_harness/tests/utils/client_factory.py,sha256=xGta0ZaVYzWfwJ4cu3f89KkGc_R5Bq-9lqnhr57x_2w,972
268
- codemie_test_harness/tests/utils/constants.py,sha256=ZNyM5wERHFN-c8TCvBcxCdFf0As9TOpr22YvLCMHArE,1116
272
+ codemie_test_harness/tests/utils/constants.py,sha256=JsyAX7PCtDCQaj_hij_dBO0Dt6bALF_DyujzKXfW2uQ,1113
269
273
  codemie_test_harness/tests/utils/conversation_utils.py,sha256=SWj6TBWOQoX5Yh6Wk63yHQFveRXgK1mpLb3PUKAa57A,648
270
274
  codemie_test_harness/tests/utils/credentials_manager.py,sha256=xF7fjQbT4b1rPrOOQfo3ie5c06FLjUzppvTaJDVOg2s,55252
271
275
  codemie_test_harness/tests/utils/datasource_utils.py,sha256=7I37BBD-ySvH9u-y9wjposohqXZG8ksx2CGvbsHK3WY,12707
@@ -284,8 +288,11 @@ codemie_test_harness/tests/utils/pytest_utils.py,sha256=k-mEjX2qpnh37sqKpJqYhZT6
284
288
  codemie_test_harness/tests/utils/search_utils.py,sha256=SrXiB2d9wiI5ka9bgg0CD73GOX_1mqi2Hz5FBm5DsEU,1435
285
289
  codemie_test_harness/tests/utils/similarity_check.py,sha256=1U66NGh6esISKABodtVobE2WnuFt0f6vcK3qUri6ZqU,1485
286
290
  codemie_test_harness/tests/utils/user_utils.py,sha256=zJNrmL3Fb7iGuaVRobUMwJ2Og6NqEPcM_9lw60m18T8,242
291
+ codemie_test_harness/tests/utils/webhook_utils.py,sha256=YjyLwAqQjR12vYFOUmYhJCJIyZvKm4SvU-1oIjIYNqg,340
287
292
  codemie_test_harness/tests/utils/workflow_utils.py,sha256=Kz4F4Xzdx42PNmye--ENpjSakdB1Y-QL_nwSfKhMAXE,9359
288
293
  codemie_test_harness/tests/utils/yaml_utils.py,sha256=y9fUf4u4G4SoCktPOwaC5x71iaDKhktbz_XUfI9kNis,1661
294
+ codemie_test_harness/tests/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ codemie_test_harness/tests/webhook/test_webhook_service.py,sha256=POmxQG0tpcNW9-yKQ62CcnQpUEFYlTOs0_4H9MijIHY,8127
289
296
  codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
297
  codemie_test_harness/tests/workflow/assistant_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
291
298
  codemie_test_harness/tests/workflow/assistant_tools/access_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -307,7 +314,7 @@ codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_de
307
314
  codemie_test_harness/tests/workflow/assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
308
315
  codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py,sha256=sfw-85g7UNiNiKJIjUb9VAP5Ea_zQa1OlAtggeMhI4Q,7991
309
316
  codemie_test_harness/tests/workflow/assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
- codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=vTOW7eSrLWFNliwLznlf1ZcjxrdQApKjIb2_V2vdYrU,14988
317
+ codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py,sha256=H2fE9F3zKuiNo04Zx6IaWbUd-mtmi7rX9KN1PHw0bgQ,15030
311
318
  codemie_test_harness/tests/workflow/assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
319
  codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py,sha256=_tj5IP5Qy0tNI69hdDd5Cuecwu4Xz5dyrMCdvfnRQDs,3330
313
320
  codemie_test_harness/tests/workflow/assistant_tools/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -371,7 +378,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations
371
378
  codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/__init__.py,sha256=gdro-sbQYZMXgou3dzJw2sqqdS8o7_N41ej5qCA-3v0,53
372
379
  codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py,sha256=odaLg7Jdo04jTyq6mduN0PHmDNARXl1gyKxyGN-px1I,8625
373
380
  codemie_test_harness/tests/workflow/virtual_assistant_tools/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
- codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=-v_3Q4FN_KTaGcOs5j8sIgiVt5ZbXjFQ8yT4M2eGQdY,14235
381
+ codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py,sha256=AC4xZvkZPAHBi5uraub4EXHof15juaEJN6dbT1Eezpg,14277
375
382
  codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
376
383
  codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py,sha256=qIIrKKIa0copWSUOcP87_YEFV1QpKs7OqsAAcVXF2uM,3560
377
384
  codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/__init__.py,sha256=hUDnGT_v3FoV6qsGpdACg_DfBFlfuubj8FjZLiuMrt0,50
@@ -391,7 +398,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
391
398
  codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=D835gaRbCnB4va5mi9TdA_u9StSpGXQ_fgzwW0S2pwo,1173
392
399
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
400
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=Se9imIiBYuJU78m1pLu0g4ZmHygKZjr6JjIWkGXTy1Q,1364
394
- codemie_test_harness-0.1.205.dist-info/METADATA,sha256=cLTNu8Zy7xsDIAyuhJxBQoQVoHYGjScU7dA63aORmpc,27184
395
- codemie_test_harness-0.1.205.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
396
- codemie_test_harness-0.1.205.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
397
- codemie_test_harness-0.1.205.dist-info/RECORD,,
401
+ codemie_test_harness-0.1.207.dist-info/METADATA,sha256=_zPCH7dwuPW3KhlvyKaRR7j0Sq-a7z1et1OKjB2Kbsw,27184
402
+ codemie_test_harness-0.1.207.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
403
+ codemie_test_harness-0.1.207.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
404
+ codemie_test_harness-0.1.207.dist-info/RECORD,,