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

@@ -37,6 +37,7 @@ class ModelTypes(str, Enum):
37
37
  CLAUDE_4_OPUS = "claude-4-opus"
38
38
  CLAUDE_4_1_OPUS = "claude-4-1-opus"
39
39
  CLAUDE_4_SONNET_1M = "claude-4-sonnet-1m"
40
+ CLAUDE_4_5_HAIKU = "claude-4-5-haiku"
40
41
 
41
42
  # Other
42
43
  RLAB_QWQ_32B = "rlab-qwq-32b"
@@ -56,6 +56,7 @@ MODEL_RESPONSES = [
56
56
  LlmResponseData(ModelTypes.CLAUDE_4_1_OPUS, AWS_ENVS),
57
57
  LlmResponseData(ModelTypes.CLAUDE_4_SONNET_1M, AWS_ENVS),
58
58
  LlmResponseData(ModelTypes.CLAUDE_4_5_SONNET, AWS_ENVS),
59
+ LlmResponseData(ModelTypes.CLAUDE_4_5_HAIKU, AWS_ENVS),
59
60
  # Other LLMs test data
60
61
  LlmResponseData(ModelTypes.RLAB_QWQ_32B, OTHER_ENVS),
61
62
  LlmResponseData(ModelTypes.DEEPSEEK_R1, OTHER_ENVS),
@@ -27,6 +27,89 @@ vendor_workflow_test_data = [
27
27
  marks=[pytest.mark.aws, pytest.mark.bedrock],
28
28
  id="AWS_Bedrock_Object_Input",
29
29
  ),
30
+ pytest.param(
31
+ VendorType.AWS,
32
+ CredentialTypes.AWS,
33
+ CredentialsManager.aws_credentials(),
34
+ "codemie-autotests-flow-string-input",
35
+ "pop",
36
+ """
37
+ # Pop Playlist (3 Songs)
38
+
39
+ 1. "Blinding Lights" - The Weeknd
40
+ *Upbeat synth-pop track with irresistible 80s vibes and a catchy chorus*
41
+
42
+ 2. "As It Was" - Harry Styles
43
+ *Melodic pop anthem with nostalgic undertones and danceable rhythm*
44
+
45
+ 3. "Levitating" - Dua Lipa
46
+ *Disco-infused pop banger with infectious grooves and stellar vocals*
47
+
48
+ Enjoy these modern pop hits! Would you like any specific recommendations or adjustments to the playlist?
49
+ """,
50
+ marks=[pytest.mark.aws, pytest.mark.bedrock],
51
+ id="AWS_Bedrock_String_Input",
52
+ ),
53
+ pytest.param(
54
+ VendorType.AWS,
55
+ CredentialTypes.AWS,
56
+ CredentialsManager.aws_credentials(),
57
+ "codemie-autotests-flow-number-input",
58
+ json.dumps(3),
59
+ """
60
+ # Pop Playlist (3 Songs)
61
+
62
+ 1. "Shape of You" - Ed Sheeran
63
+ 2. "Blinding Lights" - The Weeknd
64
+ 3. "Dance Monkey" - Tones and I
65
+
66
+ Each of these songs has been a massive pop hit with catchy hooks and radio-friendly production. Enjoy your playlist!
67
+ """,
68
+ marks=[pytest.mark.aws, pytest.mark.bedrock],
69
+ id="AWS_Bedrock_Number_Input",
70
+ ),
71
+ pytest.param(
72
+ VendorType.AWS,
73
+ CredentialTypes.AWS,
74
+ CredentialsManager.aws_credentials(),
75
+ "codemie-autotests-flow-boolean-input",
76
+ json.dumps(True),
77
+ """
78
+ # Pop Playlist (3 Songs)
79
+
80
+ 1. "Bad Guy" by Billie Eilish
81
+ 2. "Blinding Lights" by The Weeknd
82
+ 3. "As It Was" by Harry Styles
83
+
84
+ These are three popular pop songs from recent years that feature catchy melodies, modern production, and have achieved significant commercial success.
85
+ """,
86
+ marks=[pytest.mark.aws, pytest.mark.bedrock],
87
+ id="AWS_Bedrock_Boolean_Input",
88
+ ),
89
+ pytest.param(
90
+ VendorType.AWS,
91
+ CredentialTypes.AWS,
92
+ CredentialsManager.aws_credentials(),
93
+ "codemie-autotests-flow-array-input",
94
+ json.dumps(["pop", "rock"]),
95
+ """
96
+ # Playlist Creation
97
+
98
+ Here are two playlists with 2 songs each:
99
+
100
+ ## Pop Playlist (2 songs)
101
+ 1. "Shape of You" by Ed Sheeran
102
+ 2. "Bad Guy" by Billie Eilish
103
+
104
+ ## Rock Playlist (2 songs)
105
+ 1. "Bohemian Rhapsody" by Queen
106
+ 2. "Sweet Child O' Mine" by Guns N' Roses
107
+
108
+ Would you like me to expand either playlist with more song suggestions or provide information about any of these tracks?
109
+ """,
110
+ marks=[pytest.mark.aws, pytest.mark.bedrock],
111
+ id="AWS_Bedrock_Array_Input",
112
+ ),
30
113
  # pytest.param(
31
114
  # VendorType.AZURE,
32
115
  # CredentialTypes.AZURE,
@@ -54,7 +54,7 @@ def test_vendor_workflow_installation_and_execution(
54
54
  user_input=user_input,
55
55
  )
56
56
 
57
- similarity_check.check_similarity(response, expected_response)
57
+ similarity_check.check_similarity(response, expected_response, similarity_rank=50)
58
58
 
59
59
  uninstall_response = vendor_workflow_utils.uninstall_workflow(
60
60
  vendor=vendor_type,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: codemie-test-harness
3
- Version: 0.1.223
3
+ Version: 0.1.225
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.223)
16
+ Requires-Dist: codemie-sdk-python (==0.1.225)
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)
@@ -73,7 +73,7 @@ codemie_test_harness/tests/e2e/test_e2e.py,sha256=BjBzyCeZCSGE1iGhjdYKBo6pMwimZ2
73
73
  codemie_test_harness/tests/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
74
  codemie_test_harness/tests/enums/environment.py,sha256=p1qAX5kGZ83eZVZf1xE2OMaJ6Br8AWcudKrPQCY1Zms,3099
75
75
  codemie_test_harness/tests/enums/integrations.py,sha256=L4sItzBjFBR65gMCebSYchADjwxmTtpEWQZvxd9aSnU,188
76
- codemie_test_harness/tests/enums/model_types.py,sha256=aAT7v0B3i4ryXbh1__xaUAsYHE54Kdn488Pklz6YqaE,1316
76
+ codemie_test_harness/tests/enums/model_types.py,sha256=Kc1uxjivCaHMdHex4SYde5wopD6GjDsr44db_K0KIPs,1358
77
77
  codemie_test_harness/tests/enums/tools.py,sha256=y-FMN0K4jtG9vlZMnwqLqtuJyfIzFm3D548SGF-cUqw,6587
78
78
  codemie_test_harness/tests/integrations/__init__.py,sha256=5vnZbxvYQ1Y91O8DJG3QfBHWcdYsMii59cMBzsvHBCg,237
79
79
  codemie_test_harness/tests/integrations/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -157,7 +157,7 @@ codemie_test_harness/tests/test_data/google_datasource_test_data.py,sha256=9hO8K
157
157
  codemie_test_harness/tests/test_data/index_test_data.py,sha256=VZJC_Fmko32EHaybUwCy0mWMiwAeUAAmhRa0Xt4oTHQ,1115
158
158
  codemie_test_harness/tests/test_data/integrations_test_data.py,sha256=qfsJG2wmYPcZPZ5JpIJPqhnyTqLQlFEd4uOEzK4264A,38795
159
159
  codemie_test_harness/tests/test_data/keycloak_tool_test_data.py,sha256=uF8YqHGgLpQVxKdpKXLe-7F-ipEGQiHHh28nZvvVGM8,1244
160
- codemie_test_harness/tests/test_data/llm_test_data.py,sha256=srhtBg8vU4IgN2hpmtk2m8Uxu9KaVQNFGfQM9XcuJx8,2535
160
+ codemie_test_harness/tests/test_data/llm_test_data.py,sha256=NJvBLl-PlWFn_HzQ3yYckJ7FG5o2epGVzZ6jcgpuHcY,2595
161
161
  codemie_test_harness/tests/test_data/mcp_server_test_data.py,sha256=m6PImS_J2gPNY5ijf9MG_eOX_LxJjTZ23AXQDgaK_Oc,7151
162
162
  codemie_test_harness/tests/test_data/notification_tools_test_data.py,sha256=D7KLP-cyQljU2Io21CukphnzMadJ7VJ0FhXFdU3GfGk,794
163
163
  codemie_test_harness/tests/test_data/open_api_tools_test_data.py,sha256=mvf0legyzLy1Ng-gqtQntR9HskFwVCDaLqPzDRXV8rM,3093
@@ -172,7 +172,7 @@ codemie_test_harness/tests/test_data/servicenow_tools_test_data.py,sha256=PKw9zE
172
172
  codemie_test_harness/tests/test_data/vcs_tools_test_data.py,sha256=ZJdday96uOKOy_kPRBPp0w9JZbf0il7Y_hPfwRmUkuM,4518
173
173
  codemie_test_harness/tests/test_data/vendor_endpoint_test_data.py,sha256=Fti3ZbpS3m06Heyh5AAcoAKZuimX709iZQFPhzKvrC4,1075
174
174
  codemie_test_harness/tests/test_data/vendor_test_data.py,sha256=FFS35ikzMzSHShnfmdIme-WjueSjj0qBwa0OU6ooKfc,1409
175
- codemie_test_harness/tests/test_data/vendor_workflow_test_data.py,sha256=hZX_GpIz0RIjSuqvgCh_Sv5zwk4-iatP1J-SIKCL8cg,1588
175
+ codemie_test_harness/tests/test_data/vendor_workflow_test_data.py,sha256=xcemVCa2i5SR1qJMNGQ2iND1e0kizdtG4Qh1M_xy9bA,4649
176
176
  codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml,sha256=_cioQNq3icemob9u0i-hXkTy2nflzyP0Ce8FWiPG14M,265
177
177
  codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml,sha256=t_W95zD5bfdGf3F6p64-2qBHz7SkL_7mFT675uieWZg,209
178
178
  codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml,sha256=Vwx3HyrQkL8sWNtfwL6d0qiJhru6X3ojKBASAzJeY9w,252
@@ -309,7 +309,7 @@ codemie_test_harness/tests/vendor/assistants/test_vendor_assistants.py,sha256=8u
309
309
  codemie_test_harness/tests/vendor/assistants/test_vendor_assistants_endpoints.py,sha256=XA9idTm6ZycoKCTGq31QpL_BeybgQa7dFC3RSqAPtec,13271
310
310
  codemie_test_harness/tests/vendor/workflows/__init__.py,sha256=qcP6VHdlR6qbNhjrqRGHE5JReIj4CH0WGlMvpKgm1aM,38
311
311
  codemie_test_harness/tests/vendor/workflows/test_vendor_workflow_endpoints.py,sha256=dkCmFPKj-sIVgbuaqQ2Ef7JBKUWGTftW9xZB3D1KCrU,11236
312
- codemie_test_harness/tests/vendor/workflows/test_vendor_workflows.py,sha256=BVHWU9RN5Wn6XzXbRxo5Lod28GV7mPkbQSkErC-OUY4,1813
312
+ codemie_test_harness/tests/vendor/workflows/test_vendor_workflows.py,sha256=sHMbfc6-uG0nYFtp0CBIyyGFs8DbRdux-WfD4lWsKB8,1833
313
313
  codemie_test_harness/tests/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
314
  codemie_test_harness/tests/webhook/test_webhook_service.py,sha256=POmxQG0tpcNW9-yKQ62CcnQpUEFYlTOs0_4H9MijIHY,8127
315
315
  codemie_test_harness/tests/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -417,7 +417,7 @@ codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.
417
417
  codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py,sha256=D835gaRbCnB4va5mi9TdA_u9StSpGXQ_fgzwW0S2pwo,1173
418
418
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
419
  codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py,sha256=Se9imIiBYuJU78m1pLu0g4ZmHygKZjr6JjIWkGXTy1Q,1364
420
- codemie_test_harness-0.1.223.dist-info/METADATA,sha256=Gj4xWyOTQ8ZIJzhSOK2Ku_rtgHlZgM8bgp6zIZze1Oc,27184
421
- codemie_test_harness-0.1.223.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
422
- codemie_test_harness-0.1.223.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
423
- codemie_test_harness-0.1.223.dist-info/RECORD,,
420
+ codemie_test_harness-0.1.225.dist-info/METADATA,sha256=lq5XwAC5TPCoJzyws_eg29NgefHBrD0tCTSws_zwaSs,27184
421
+ codemie_test_harness-0.1.225.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
422
+ codemie_test_harness-0.1.225.dist-info/entry_points.txt,sha256=n98t-EOM5M1mnMl_j2X4siyeO9zr0WD9a5LF7JyElIM,73
423
+ codemie_test_harness-0.1.225.dist-info/RECORD,,