codemie-test-harness 0.1.183__tar.gz → 0.1.197__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of codemie-test-harness might be problematic. Click here for more details.
- codemie_test_harness-0.1.183/README.md → codemie_test_harness-0.1.197/PKG-INFO +64 -1
- codemie_test_harness-0.1.183/PKG-INFO → codemie_test_harness-0.1.197/README.md +35 -29
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/cli.py +21 -6
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/run_cmd.py +15 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/constants.py +1 -21
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/runner.py +13 -3
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/utils.py +12 -2
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/test_assistants.py +17 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +1 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +47 -6
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +0 -4
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +0 -4
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/conftest.py +2 -2
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/enums/environment.py +3 -3
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/enums/integrations.py +1 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/enums/model_types.py +1 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/project/test_default_integrations.py +41 -15
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/project/test_project_integrations.py +42 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/user/test_default_integrations.py +0 -7
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/llm/assistants/test_llm.py +56 -2
- codemie_test_harness-0.1.197/codemie_test_harness/tests/test_data/assistant_test_data.py +839 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/codebase_tools_test_data.py +2 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/data_management_tools_test_data.py +18 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +18 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py +189 -197
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/integrations_test_data.py +163 -2
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/llm_test_data.py +1 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/open_api_tools_test_data.py +22 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/report_portal_tools_test_data.py +89 -112
- codemie_test_harness-0.1.197/codemie_test_harness/tests/test_data/research_tools_test_data.py +126 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/assistant_utils.py +22 -12
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/credentials_manager.py +66 -8
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/workflow_utils.py +91 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py +7 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +50 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +39 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +34 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +6 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +11 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +72 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +31 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +31 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +26 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +63 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +82 -7
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +23 -4
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +12 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +6 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +29 -2
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +14 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +7 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +7 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +14 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +6 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +6 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +12 -9
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py +8 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +28 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +24 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +20 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +13 -4
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +16 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +73 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +34 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +34 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +34 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +101 -49
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +42 -3
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +27 -5
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +13 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +10 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +20 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +14 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +10 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +10 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +9 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +10 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +9 -1
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/pyproject.toml +3 -2
- codemie_test_harness-0.1.183/codemie_test_harness/tests/test_data/assistant_test_data.py +0 -839
- codemie_test_harness-0.1.183/codemie_test_harness/tests/test_data/research_tools_test_data.py +0 -104
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/.env +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/assistant_cmd.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/config_cmd.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/marks_cmd.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/commands/workflow_cmd.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/marks_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/pytest.ini +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/test_code_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/test_file_indexing.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/test_google_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/default_integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/access_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/ado/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/cloud/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/codebase/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/datamanagement/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/git/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/mcp/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/notification/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/openapi/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/plugin/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/plugin/test_single_assistant_dual_time_plugins.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/project_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/report_portal/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/research/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/servicenow/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/vcs/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/conversations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/conversations/test_conversations_endpoints.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/e2e/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/e2e/test_e2e.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/enums/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/enums/tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/project/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/user/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/integrations/user/test_user_integrations.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/llm/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/llm/assistants/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/llm/assistants/test_lite_llm.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/providers/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/providers/test_providers_endpoints.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/search/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/search/test_search_assistant.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/search/test_search_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/search/test_search_integration.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/search/test_search_workflow.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_assistant_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_datasource_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_integration_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_llm_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_task_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_user_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_workflow_execution_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/service/test_workflow_service.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/ado_test_plan_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/cloud_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/ado_wiki_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/ado_work_item_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/direct_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/keycloak_tool_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/open_api_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/research_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/servicenow_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/file_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/file_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/large-files/large_file.txt +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/provider_payload.json +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.csv +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.docx +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.gif +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.ini +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.jpeg +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.jpg +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.json +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.pdf +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.png +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.pptx +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.txt +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.vtt +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.xlsx +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.xml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test_extended.docx +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/files/test_extended.xlsx +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/git_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/google_datasource_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/index_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/keycloak_tool_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/mcp_server_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/notification_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/openapi.json +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/output_schema_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/plugin_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/pm_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/project_management_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/servicenow_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/vcs_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_state.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_tool.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_yaml.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_yaml_format.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_assistant_id.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_assistant_tools_name.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_backoff_factor.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_initial_interval.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_max_attempts.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_max_interval.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_id.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_expression.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_otherwise.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_then.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_condition.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_state_id.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_default.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_backoff_factor.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_initial_interval.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_max_attempts.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_max_interval.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_system_prompt.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_tools_id.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_tools_name.yaml +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/test_data/workflow_validation_messages.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/assistants/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/assistants/test_create_assistant.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/chats/conftest.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/chats/test_chat_configuration.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/chats/test_chat_functionality.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/conftest.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/datasource/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/datasource/test_create_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/datasource/test_datasource_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/datasource/test_edit_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/datasource/test_view_datasource.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/integrations/test_create_integration.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/assistants/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/assistants/create_assistant_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/assistants/generate_with_ai_modal.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/base_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/chats/chat_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/chats/chats_sidebar.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/chats/configuration_panel.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/chats/configure_and_test_panel.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/execution_history_row.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/integration_row.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/menu.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/pop_up.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/project_selector.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/workflow_card.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/workflow_execution_history_item.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/workflow_execution_state.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/workflow_sidebar.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/components/workflow_state_card.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/datasources/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/datasources/create_edit_datasource_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/datasources/datasource_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/datasources/datasource_sidebar.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/datasources/view_datasource_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/integrations/create_integration_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/integrations/integrations_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/login_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/base_workflow_form_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/create_workflow_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/edit_workflow_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_details_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_executions_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/test_data/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/test_data/assistant_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/test_data/chat_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/test_data/datasource_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/test_data/integration_test_data.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_create_workflow.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_edit_workflow.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_workflow_details.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_workflow_executions_page.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_workflow_templates.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/ui/workflows/test_workflows.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/aws_parameters_store.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/base_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/client_factory.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/constants.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/conversation_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/datasource_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/env_resolver.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/env_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/file_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/gitbud_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/http_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/integration_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/json_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/llm_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/logger_util.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/notification_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/provider_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/pytest_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/search_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/similarity_check.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/user_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/utils/yaml_utils.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/access_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/ado/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/cloud/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/codebase/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/data_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/file_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/git/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/mcp/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/notification/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/open_api/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/plugin/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/project_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/report_portal/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/research/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/servicenow/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/assistant_tools/vcs/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/config_validation/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/config_validation/test_config_validation.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_elastic.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/test_workflows.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/git/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/research/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.py +0 -0
- {codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py +0 -0
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: codemie-test-harness
|
|
3
|
+
Version: 0.1.197
|
|
4
|
+
Summary: Autotest for CodeMie backend and UI
|
|
5
|
+
Author: Anton Yeromin
|
|
6
|
+
Author-email: anton_yeromin@epam.com
|
|
7
|
+
Requires-Python: >=3.12,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Requires-Dist: PyHamcrest (>=2.1.0,<3.0.0)
|
|
12
|
+
Requires-Dist: aws-assume-role-lib (>=2.10.0,<3.0.0)
|
|
13
|
+
Requires-Dist: boto3 (>=1.39.8,<2.0.0)
|
|
14
|
+
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
15
|
+
Requires-Dist: codemie-plugins (>=0.1.123,<0.2.0)
|
|
16
|
+
Requires-Dist: codemie-sdk-python (==0.1.197)
|
|
17
|
+
Requires-Dist: pytest (>=8.4.1,<9.0.0)
|
|
18
|
+
Requires-Dist: pytest-playwright (>=0.7.0,<0.8.0)
|
|
19
|
+
Requires-Dist: pytest-repeat (>=0.9.3,<0.10.0)
|
|
20
|
+
Requires-Dist: pytest-reportportal (>=5.5.2,<6.0.0)
|
|
21
|
+
Requires-Dist: pytest-rerunfailures (>=15.1,<16.0)
|
|
22
|
+
Requires-Dist: pytest-xdist (>=3.6.1,<4.0.0)
|
|
23
|
+
Requires-Dist: python-dotenv (>=1.1.0,<2.0.0)
|
|
24
|
+
Requires-Dist: python-gitlab (>=5.6.0,<6.0.0)
|
|
25
|
+
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
26
|
+
Requires-Dist: tzlocal (>=5.3.1,<6.0.0)
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
1
29
|
# CodeMie Test Harness
|
|
2
30
|
|
|
3
31
|
End-to-end, integration, and UI test suite for CodeMie services. This repository exercises CodeMie APIs (LLM, assistants, workflows, tools) and common integrations.
|
|
@@ -69,6 +97,7 @@ Optional defaults for pytest:
|
|
|
69
97
|
codemie-test-harness config set PYTEST_MARKS "smoke"
|
|
70
98
|
codemie-test-harness config set PYTEST_N 8
|
|
71
99
|
codemie-test-harness config set PYTEST_RERUNS 2
|
|
100
|
+
codemie-test-harness config set PYTEST_COUNT 10 # For performance testing (optional)
|
|
72
101
|
```
|
|
73
102
|
|
|
74
103
|
#### Integration Categories & Management
|
|
@@ -266,6 +295,30 @@ codemie-test-harness --git-env github run --marks git
|
|
|
266
295
|
codemie-test-harness run --marks ui --headless
|
|
267
296
|
```
|
|
268
297
|
|
|
298
|
+
#### Performance and Load Testing
|
|
299
|
+
|
|
300
|
+
Run tests multiple times in parallel to simulate load and measure performance:
|
|
301
|
+
|
|
302
|
+
```shell
|
|
303
|
+
# Performance test: Run test 50 times with 10 parallel workers
|
|
304
|
+
codemie-test-harness run --marks excel_generation --count 50 -n 10
|
|
305
|
+
|
|
306
|
+
# Heavy load test: 100 iterations with 20 workers
|
|
307
|
+
codemie-test-harness run --marks excel_generation --count 100 -n 20 -v
|
|
308
|
+
|
|
309
|
+
# Light load test with retries for stability
|
|
310
|
+
codemie-test-harness run --marks smoke --count 25 -n 5 --reruns 2
|
|
311
|
+
|
|
312
|
+
# Set default count in config for repeated use
|
|
313
|
+
codemie-test-harness config set PYTEST_COUNT 30
|
|
314
|
+
codemie-test-harness run --marks excel_generation -n 10 # Uses count=30 from config
|
|
315
|
+
|
|
316
|
+
# Override config default for a specific run
|
|
317
|
+
codemie-test-harness run --marks excel_generation --count 100 -n 20 # Overrides config
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
**Note:** The `--count` parameter requires the `pytest-repeat` plugin, which is included in the dependencies.
|
|
321
|
+
|
|
269
322
|
#### Assistant Chat Interface
|
|
270
323
|
|
|
271
324
|
Interact directly with CodeMie assistants through the CLI:
|
|
@@ -341,6 +394,9 @@ codemie-test-harness config vars data-management
|
|
|
341
394
|
|
|
342
395
|
# Test execution with multiple overrides
|
|
343
396
|
codemie-test-harness run --marks "smoke and not ui" -n 10 --reruns 3 --headless
|
|
397
|
+
|
|
398
|
+
# Performance testing with count parameter
|
|
399
|
+
codemie-test-harness run --marks excel_generation --count 50 -n 10
|
|
344
400
|
```
|
|
345
401
|
|
|
346
402
|
#### Common Test Markers
|
|
@@ -481,9 +537,15 @@ pytest -m not_for_parallel_run --reruns 2
|
|
|
481
537
|
# API tests
|
|
482
538
|
pytest -n 10 -m "api and not not_for_parallel_run" --reruns 2
|
|
483
539
|
pytest -m not_for_parallel_run --reruns 3
|
|
540
|
+
|
|
541
|
+
# Performance/Load testing: Run test multiple times in parallel
|
|
542
|
+
pytest -n 10 --count 50 -m excel_generation # Run 50 times with 10 workers
|
|
543
|
+
pytest -n 20 --count 100 -m smoke --reruns 2 # Heavy load with retries
|
|
484
544
|
```
|
|
485
545
|
|
|
486
|
-
|
|
546
|
+
**Notes:**
|
|
547
|
+
- `--reruns 2` uses pytest-rerunfailures to improve resiliency in flaky environments
|
|
548
|
+
- `--count N` uses pytest-repeat to run each test N times (useful for performance/load testing)
|
|
487
549
|
|
|
488
550
|
### UI tests (Playwright)
|
|
489
551
|
|
|
@@ -537,3 +599,4 @@ make ruff
|
|
|
537
599
|
- Env values keep reverting: Ensure AWS_ACCESS_KEY and AWS_SECRET_KEY are removed after manual edits to .env.
|
|
538
600
|
- Authentication failures: Verify AUTH_* variables and CODEMIE_API_DOMAIN are correct for the target environment.
|
|
539
601
|
- Slow or flaky runs: Reduce -n, increase timeouts, and/or use --reruns.
|
|
602
|
+
|
|
@@ -1,30 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.183
|
|
4
|
-
Summary: Autotest for CodeMie backend and UI
|
|
5
|
-
Author: Anton Yeromin
|
|
6
|
-
Author-email: anton_yeromin@epam.com
|
|
7
|
-
Requires-Python: >=3.12,<4.0
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
-
Requires-Dist: PyHamcrest (>=2.1.0,<3.0.0)
|
|
12
|
-
Requires-Dist: aws-assume-role-lib (>=2.10.0,<3.0.0)
|
|
13
|
-
Requires-Dist: boto3 (>=1.39.8,<2.0.0)
|
|
14
|
-
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
15
|
-
Requires-Dist: codemie-plugins (>=0.1.123,<0.2.0)
|
|
16
|
-
Requires-Dist: codemie-sdk-python (==0.1.183)
|
|
17
|
-
Requires-Dist: pytest (>=8.4.1,<9.0.0)
|
|
18
|
-
Requires-Dist: pytest-playwright (>=0.7.0,<0.8.0)
|
|
19
|
-
Requires-Dist: pytest-reportportal (>=5.5.2,<6.0.0)
|
|
20
|
-
Requires-Dist: pytest-rerunfailures (>=15.1,<16.0)
|
|
21
|
-
Requires-Dist: pytest-xdist (>=3.6.1,<4.0.0)
|
|
22
|
-
Requires-Dist: python-dotenv (>=1.1.0,<2.0.0)
|
|
23
|
-
Requires-Dist: python-gitlab (>=5.6.0,<6.0.0)
|
|
24
|
-
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
25
|
-
Requires-Dist: tzlocal (>=5.3.1,<6.0.0)
|
|
26
|
-
Description-Content-Type: text/markdown
|
|
27
|
-
|
|
28
1
|
# CodeMie Test Harness
|
|
29
2
|
|
|
30
3
|
End-to-end, integration, and UI test suite for CodeMie services. This repository exercises CodeMie APIs (LLM, assistants, workflows, tools) and common integrations.
|
|
@@ -96,6 +69,7 @@ Optional defaults for pytest:
|
|
|
96
69
|
codemie-test-harness config set PYTEST_MARKS "smoke"
|
|
97
70
|
codemie-test-harness config set PYTEST_N 8
|
|
98
71
|
codemie-test-harness config set PYTEST_RERUNS 2
|
|
72
|
+
codemie-test-harness config set PYTEST_COUNT 10 # For performance testing (optional)
|
|
99
73
|
```
|
|
100
74
|
|
|
101
75
|
#### Integration Categories & Management
|
|
@@ -293,6 +267,30 @@ codemie-test-harness --git-env github run --marks git
|
|
|
293
267
|
codemie-test-harness run --marks ui --headless
|
|
294
268
|
```
|
|
295
269
|
|
|
270
|
+
#### Performance and Load Testing
|
|
271
|
+
|
|
272
|
+
Run tests multiple times in parallel to simulate load and measure performance:
|
|
273
|
+
|
|
274
|
+
```shell
|
|
275
|
+
# Performance test: Run test 50 times with 10 parallel workers
|
|
276
|
+
codemie-test-harness run --marks excel_generation --count 50 -n 10
|
|
277
|
+
|
|
278
|
+
# Heavy load test: 100 iterations with 20 workers
|
|
279
|
+
codemie-test-harness run --marks excel_generation --count 100 -n 20 -v
|
|
280
|
+
|
|
281
|
+
# Light load test with retries for stability
|
|
282
|
+
codemie-test-harness run --marks smoke --count 25 -n 5 --reruns 2
|
|
283
|
+
|
|
284
|
+
# Set default count in config for repeated use
|
|
285
|
+
codemie-test-harness config set PYTEST_COUNT 30
|
|
286
|
+
codemie-test-harness run --marks excel_generation -n 10 # Uses count=30 from config
|
|
287
|
+
|
|
288
|
+
# Override config default for a specific run
|
|
289
|
+
codemie-test-harness run --marks excel_generation --count 100 -n 20 # Overrides config
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
**Note:** The `--count` parameter requires the `pytest-repeat` plugin, which is included in the dependencies.
|
|
293
|
+
|
|
296
294
|
#### Assistant Chat Interface
|
|
297
295
|
|
|
298
296
|
Interact directly with CodeMie assistants through the CLI:
|
|
@@ -368,6 +366,9 @@ codemie-test-harness config vars data-management
|
|
|
368
366
|
|
|
369
367
|
# Test execution with multiple overrides
|
|
370
368
|
codemie-test-harness run --marks "smoke and not ui" -n 10 --reruns 3 --headless
|
|
369
|
+
|
|
370
|
+
# Performance testing with count parameter
|
|
371
|
+
codemie-test-harness run --marks excel_generation --count 50 -n 10
|
|
371
372
|
```
|
|
372
373
|
|
|
373
374
|
#### Common Test Markers
|
|
@@ -508,9 +509,15 @@ pytest -m not_for_parallel_run --reruns 2
|
|
|
508
509
|
# API tests
|
|
509
510
|
pytest -n 10 -m "api and not not_for_parallel_run" --reruns 2
|
|
510
511
|
pytest -m not_for_parallel_run --reruns 3
|
|
512
|
+
|
|
513
|
+
# Performance/Load testing: Run test multiple times in parallel
|
|
514
|
+
pytest -n 10 --count 50 -m excel_generation # Run 50 times with 10 workers
|
|
515
|
+
pytest -n 20 --count 100 -m smoke --reruns 2 # Heavy load with retries
|
|
511
516
|
```
|
|
512
517
|
|
|
513
|
-
|
|
518
|
+
**Notes:**
|
|
519
|
+
- `--reruns 2` uses pytest-rerunfailures to improve resiliency in flaky environments
|
|
520
|
+
- `--count N` uses pytest-repeat to run each test N times (useful for performance/load testing)
|
|
514
521
|
|
|
515
522
|
### UI tests (Playwright)
|
|
516
523
|
|
|
@@ -564,4 +571,3 @@ make ruff
|
|
|
564
571
|
- Env values keep reverting: Ensure AWS_ACCESS_KEY and AWS_SECRET_KEY are removed after manual edits to .env.
|
|
565
572
|
- Authentication failures: Verify AUTH_* variables and CODEMIE_API_DOMAIN are correct for the target environment.
|
|
566
573
|
- Slow or flaky runs: Reduce -n, increase timeouts, and/or use --reruns.
|
|
567
|
-
|
{codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/cli.py
RENAMED
|
@@ -15,6 +15,7 @@ from .constants import (
|
|
|
15
15
|
KEY_MARKS,
|
|
16
16
|
KEY_XDIST_N,
|
|
17
17
|
KEY_RERUNS,
|
|
18
|
+
KEY_COUNT,
|
|
18
19
|
KEY_AUTH_SERVER_URL,
|
|
19
20
|
KEY_AUTH_CLIENT_ID,
|
|
20
21
|
KEY_AUTH_CLIENT_SECRET,
|
|
@@ -22,12 +23,9 @@ from .constants import (
|
|
|
22
23
|
KEY_CODEMIE_API_DOMAIN,
|
|
23
24
|
KEY_AUTH_USERNAME,
|
|
24
25
|
KEY_AUTH_PASSWORD,
|
|
25
|
-
# integrations
|
|
26
26
|
DEFAULT_MARKS,
|
|
27
27
|
DEFAULT_XDIST_N,
|
|
28
28
|
DEFAULT_RERUNS,
|
|
29
|
-
AUTH_KEYS,
|
|
30
|
-
INTEGRATION_KEYS,
|
|
31
29
|
)
|
|
32
30
|
from .utils import get_config_value, ensure_env_from_config
|
|
33
31
|
from .runner import run_pytest
|
|
@@ -50,6 +48,12 @@ from .commands.marks_cmd import marks_cmd
|
|
|
50
48
|
@click.option(
|
|
51
49
|
"--reruns", envvar=KEY_RERUNS, type=int, help="Number of reruns for flaky tests"
|
|
52
50
|
)
|
|
51
|
+
@click.option(
|
|
52
|
+
"--count",
|
|
53
|
+
envvar=KEY_COUNT,
|
|
54
|
+
type=int,
|
|
55
|
+
help="Number of times to repeat each test (requires pytest-repeat)",
|
|
56
|
+
)
|
|
53
57
|
@click.option("--auth-server-url", envvar=KEY_AUTH_SERVER_URL, help="Auth server url")
|
|
54
58
|
@click.option("--auth-client-id", envvar=KEY_AUTH_CLIENT_ID, help="Auth client id")
|
|
55
59
|
@click.option(
|
|
@@ -68,6 +72,7 @@ def cli(
|
|
|
68
72
|
marks: Optional[str],
|
|
69
73
|
workers: Optional[int],
|
|
70
74
|
reruns: Optional[int],
|
|
75
|
+
count: Optional[int],
|
|
71
76
|
auth_server_url: Optional[str],
|
|
72
77
|
auth_client_id: Optional[str],
|
|
73
78
|
auth_client_secret: Optional[str],
|
|
@@ -99,6 +104,11 @@ def cli(
|
|
|
99
104
|
if reruns is not None
|
|
100
105
|
else int(get_config_value(KEY_RERUNS, str(DEFAULT_RERUNS)))
|
|
101
106
|
)
|
|
107
|
+
resolved_count = (
|
|
108
|
+
count
|
|
109
|
+
if count is not None
|
|
110
|
+
else (int(get_config_value(KEY_COUNT)) if get_config_value(KEY_COUNT) else None)
|
|
111
|
+
)
|
|
102
112
|
|
|
103
113
|
# Ensure env vars. CLI args override env/config.
|
|
104
114
|
provided = {
|
|
@@ -115,15 +125,20 @@ def cli(
|
|
|
115
125
|
if v is not None and v != "":
|
|
116
126
|
os.environ[k] = str(v)
|
|
117
127
|
# populate any missing values from saved config
|
|
118
|
-
ensure_env_from_config(
|
|
128
|
+
ensure_env_from_config()
|
|
119
129
|
|
|
120
130
|
ctx.obj.update(
|
|
121
|
-
dict(
|
|
131
|
+
dict(
|
|
132
|
+
marks=resolved_marks,
|
|
133
|
+
workers=resolved_workers,
|
|
134
|
+
reruns=resolved_reruns,
|
|
135
|
+
count=resolved_count,
|
|
136
|
+
)
|
|
122
137
|
)
|
|
123
138
|
|
|
124
139
|
# default behavior
|
|
125
140
|
if ctx.invoked_subcommand is None and not ctx.resilient_parsing:
|
|
126
|
-
run_pytest(resolved_workers, resolved_marks, resolved_reruns)
|
|
141
|
+
run_pytest(resolved_workers, resolved_marks, resolved_reruns, resolved_count)
|
|
127
142
|
|
|
128
143
|
|
|
129
144
|
# Register subcommands
|
|
@@ -10,6 +10,11 @@ from ..runner import run_pytest
|
|
|
10
10
|
"-n", "workers", type=int, help="Override number of xdist workers for this run"
|
|
11
11
|
)
|
|
12
12
|
@click.option("--reruns", type=int, help="Override number of reruns for this run")
|
|
13
|
+
@click.option(
|
|
14
|
+
"--count",
|
|
15
|
+
type=int,
|
|
16
|
+
help="Number of times to repeat each test (requires pytest-repeat)",
|
|
17
|
+
)
|
|
13
18
|
@click.argument("extra", nargs=-1)
|
|
14
19
|
@click.pass_context
|
|
15
20
|
def run_cmd(
|
|
@@ -17,14 +22,23 @@ def run_cmd(
|
|
|
17
22
|
marks: Optional[str],
|
|
18
23
|
workers: Optional[int],
|
|
19
24
|
reruns: Optional[int],
|
|
25
|
+
count: Optional[int],
|
|
20
26
|
extra: Tuple[str, ...],
|
|
21
27
|
):
|
|
22
28
|
"""Run pytest with configured options.
|
|
23
29
|
|
|
24
30
|
Example: codemie-test-harness run --marks "smoke and not ui" -n 8 --reruns 2 -k keyword
|
|
31
|
+
Example with repeat: codemie-test-harness run --marks excel_generation --count 50 -n 10
|
|
25
32
|
"""
|
|
26
33
|
resolved_marks = marks or ctx.obj.get("marks")
|
|
27
34
|
resolved_workers = workers if workers is not None else ctx.obj.get("workers")
|
|
28
35
|
resolved_reruns = reruns if reruns is not None else ctx.obj.get("reruns")
|
|
36
|
+
resolved_count = count if count is not None else ctx.obj.get("count")
|
|
29
37
|
|
|
30
|
-
run_pytest(
|
|
38
|
+
run_pytest(
|
|
39
|
+
int(resolved_workers),
|
|
40
|
+
str(resolved_marks),
|
|
41
|
+
int(resolved_reruns),
|
|
42
|
+
resolved_count,
|
|
43
|
+
extra,
|
|
44
|
+
)
|
{codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/constants.py
RENAMED
|
@@ -19,6 +19,7 @@ KEY_CODEMIE_API_DOMAIN = "CODEMIE_API_DOMAIN"
|
|
|
19
19
|
KEY_MARKS = "PYTEST_MARKS"
|
|
20
20
|
KEY_XDIST_N = "PYTEST_N"
|
|
21
21
|
KEY_RERUNS = "PYTEST_RERUNS"
|
|
22
|
+
KEY_COUNT = "PYTEST_COUNT"
|
|
22
23
|
|
|
23
24
|
# === COMPLETE INTEGRATION CREDENTIALS KEYS ===
|
|
24
25
|
# Version Control Systems (GitLab, GitHub)
|
|
@@ -146,16 +147,6 @@ DEFAULT_MARKS = "smoke"
|
|
|
146
147
|
DEFAULT_XDIST_N = 8
|
|
147
148
|
DEFAULT_RERUNS = 2
|
|
148
149
|
|
|
149
|
-
AUTH_KEYS = [
|
|
150
|
-
KEY_AUTH_SERVER_URL,
|
|
151
|
-
KEY_AUTH_CLIENT_ID,
|
|
152
|
-
KEY_AUTH_CLIENT_SECRET,
|
|
153
|
-
KEY_AUTH_USERNAME,
|
|
154
|
-
KEY_AUTH_PASSWORD,
|
|
155
|
-
KEY_AUTH_REALM_NAME,
|
|
156
|
-
KEY_CODEMIE_API_DOMAIN,
|
|
157
|
-
]
|
|
158
|
-
|
|
159
150
|
# === CREDENTIAL CATEGORIES ===
|
|
160
151
|
VERSION_CONTROL_KEYS = [
|
|
161
152
|
KEY_GIT_ENV,
|
|
@@ -283,17 +274,6 @@ DATA_MANAGEMENT_KEYS = [
|
|
|
283
274
|
KEY_MSSQL_PASSWORD,
|
|
284
275
|
]
|
|
285
276
|
|
|
286
|
-
# Combined lists for backwards compatibility
|
|
287
|
-
INTEGRATION_KEYS = (
|
|
288
|
-
VERSION_CONTROL_KEYS
|
|
289
|
-
+ PROJECT_MANAGEMENT_KEYS
|
|
290
|
-
+ CLOUD_PROVIDERS_KEYS
|
|
291
|
-
+ DEVELOPMENT_TOOLS_KEYS
|
|
292
|
-
+ NOTIFICATIONS_KEYS
|
|
293
|
-
+ RESEARCH_TOOLS_KEYS
|
|
294
|
-
+ DATA_MANAGEMENT_KEYS
|
|
295
|
-
)
|
|
296
|
-
|
|
297
277
|
# Category mapping for CLI
|
|
298
278
|
CREDENTIAL_CATEGORIES = {
|
|
299
279
|
"version-control": {
|
{codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/runner.py
RENAMED
|
@@ -49,7 +49,11 @@ def resolve_tests_path_and_root() -> tuple[str, str]:
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
def build_pytest_cmd(
|
|
52
|
-
workers: int,
|
|
52
|
+
workers: int,
|
|
53
|
+
marks: str,
|
|
54
|
+
reruns: int,
|
|
55
|
+
count: int | None = None,
|
|
56
|
+
extra: Iterable[str] | None = None,
|
|
53
57
|
) -> tuple[List[str], str]:
|
|
54
58
|
tests_path, root_dir = resolve_tests_path_and_root()
|
|
55
59
|
cmd = [sys.executable, "-m", "pytest", tests_path]
|
|
@@ -59,6 +63,8 @@ def build_pytest_cmd(
|
|
|
59
63
|
cmd += ["-m", str(marks)]
|
|
60
64
|
if reruns and int(reruns) > 0:
|
|
61
65
|
cmd += ["--reruns", str(reruns)]
|
|
66
|
+
if count and int(count) > 0:
|
|
67
|
+
cmd += ["--count", str(count)]
|
|
62
68
|
if extra:
|
|
63
69
|
cmd += list(extra)
|
|
64
70
|
return cmd, root_dir
|
|
@@ -97,11 +103,15 @@ def validate_marks_expression(marks: str) -> None:
|
|
|
97
103
|
|
|
98
104
|
|
|
99
105
|
def run_pytest(
|
|
100
|
-
workers: int,
|
|
106
|
+
workers: int,
|
|
107
|
+
marks: str,
|
|
108
|
+
reruns: int,
|
|
109
|
+
count: int | None = None,
|
|
110
|
+
extra: Iterable[str] | None = None,
|
|
101
111
|
) -> None:
|
|
102
112
|
# Validate marks before running pytest
|
|
103
113
|
validate_marks_expression(marks)
|
|
104
114
|
|
|
105
|
-
cmd, root_dir = build_pytest_cmd(workers, marks, reruns, extra)
|
|
115
|
+
cmd, root_dir = build_pytest_cmd(workers, marks, reruns, count, extra)
|
|
106
116
|
CONSOLE.print(f"[cyan]Running:[/] {' '.join(cmd)} (cwd={root_dir})")
|
|
107
117
|
raise SystemExit(subprocess.call(cmd, cwd=root_dir))
|
{codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/cli/utils.py
RENAMED
|
@@ -37,9 +37,19 @@ def set_config_value(key: str, value: Any) -> None:
|
|
|
37
37
|
save_config(cfg)
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
def ensure_env_from_config(keys: list[str]) -> None:
|
|
41
|
-
|
|
40
|
+
def ensure_env_from_config(keys: Optional[list[str]] = None) -> None:
|
|
41
|
+
"""
|
|
42
|
+
Populate missing environment variables from config file.
|
|
43
|
+
|
|
44
|
+
Args:
|
|
45
|
+
keys: Optional list of specific keys to load. If None, loads all keys from config.
|
|
46
|
+
"""
|
|
42
47
|
cfg = load_config()
|
|
48
|
+
|
|
49
|
+
# If no specific keys provided, load all keys from config
|
|
50
|
+
if keys is None:
|
|
51
|
+
keys = list(cfg.keys())
|
|
52
|
+
|
|
43
53
|
for k in keys:
|
|
44
54
|
if k not in os.environ and k in cfg:
|
|
45
55
|
os.environ[k] = str(cfg[k])
|
|
@@ -436,7 +436,9 @@ def test_excel_tool_extended_functionality(
|
|
|
436
436
|
- Multi-sheet comprehensive analysis
|
|
437
437
|
|
|
438
438
|
"""
|
|
439
|
-
assistant_instance = assistant(
|
|
439
|
+
assistant_instance = assistant(
|
|
440
|
+
system_prompt="You have all required information in initial prompt. Do not ask additional questions and proceed with request."
|
|
441
|
+
)
|
|
440
442
|
|
|
441
443
|
uploaded_file = assistant_utils.upload_file_to_chat(
|
|
442
444
|
FILES_PATH / "test_extended.xlsx"
|
|
@@ -490,3 +492,17 @@ def test_docx_tool_extended_functionality(
|
|
|
490
492
|
|
|
491
493
|
assert_tool_triggered(Default.DOCX_TOOL, triggered_tools)
|
|
492
494
|
similarity_check.check_similarity(response, expected_response)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
@pytest.mark.assistant
|
|
498
|
+
# @pytest.mark.api
|
|
499
|
+
@pytest.mark.smoke
|
|
500
|
+
@pytest.mark.excel_generation
|
|
501
|
+
def test_excel_file_generation(assistant_utils, assistant, similarity_check):
|
|
502
|
+
assistant_instance = assistant()
|
|
503
|
+
|
|
504
|
+
response = assistant_utils.ask_assistant(
|
|
505
|
+
assistant_instance, "Generate excel with 5 sheets with random data"
|
|
506
|
+
)
|
|
507
|
+
|
|
508
|
+
similarity_check.check_similarity(response, "expected_response_here")
|
|
@@ -3,6 +3,7 @@ import uuid
|
|
|
3
3
|
import pytest
|
|
4
4
|
from codemie_sdk.models.integration import CredentialTypes
|
|
5
5
|
|
|
6
|
+
from codemie_test_harness.tests.enums.integrations import DataBaseDialect
|
|
6
7
|
from codemie_test_harness.tests.enums.tools import (
|
|
7
8
|
Toolkit,
|
|
8
9
|
DataManagementTool,
|
|
@@ -16,10 +17,12 @@ from codemie_test_harness.tests.test_data.data_management_tools_test_data import
|
|
|
16
17
|
SQL_TOOL_INSERT_TABLE_TASK,
|
|
17
18
|
SQL_TOOL_QUERY_TABLE_TASK,
|
|
18
19
|
RESPONSE_FOR_SQL,
|
|
20
|
+
INFLUXDB_QUERY_MEASUREMENT_TASK,
|
|
21
|
+
RESPONSE_FOR_INFLUXDB,
|
|
19
22
|
)
|
|
23
|
+
from codemie_test_harness.tests.utils.base_utils import assert_tool_triggered
|
|
20
24
|
from codemie_test_harness.tests.utils.credentials_manager import CredentialsManager
|
|
21
25
|
from codemie_test_harness.tests.utils.env_resolver import EnvironmentResolver
|
|
22
|
-
from codemie_test_harness.tests.utils.base_utils import assert_tool_triggered
|
|
23
26
|
|
|
24
27
|
pytestmark = pytest.mark.skipif(
|
|
25
28
|
EnvironmentResolver.is_localhost(),
|
|
@@ -70,12 +73,15 @@ def test_create_assistant_with_sql_tool(
|
|
|
70
73
|
)
|
|
71
74
|
|
|
72
75
|
assistant = assistant(
|
|
73
|
-
Toolkit.DATA_MANAGEMENT,
|
|
76
|
+
Toolkit.DATA_MANAGEMENT,
|
|
77
|
+
DataManagementTool.SQL,
|
|
78
|
+
settings=settings,
|
|
79
|
+
system_prompt="Always run tools for user prompt",
|
|
74
80
|
)
|
|
75
81
|
|
|
76
82
|
conversation_id = str(uuid.uuid4())
|
|
77
83
|
|
|
78
|
-
|
|
84
|
+
_, triggered_tools = assistant_utils.ask_assistant(
|
|
79
85
|
assistant,
|
|
80
86
|
SQL_TOOL_CREATE_TABLE_TASK,
|
|
81
87
|
conversation_id=conversation_id,
|
|
@@ -83,7 +89,7 @@ def test_create_assistant_with_sql_tool(
|
|
|
83
89
|
)
|
|
84
90
|
assert_tool_triggered(DataManagementTool.SQL, triggered_tools)
|
|
85
91
|
|
|
86
|
-
|
|
92
|
+
_, triggered_tools = assistant_utils.ask_assistant(
|
|
87
93
|
assistant,
|
|
88
94
|
SQL_TOOL_INSERT_TABLE_TASK,
|
|
89
95
|
conversation_id=conversation_id,
|
|
@@ -98,8 +104,9 @@ def test_create_assistant_with_sql_tool(
|
|
|
98
104
|
minimal_response=False,
|
|
99
105
|
)
|
|
100
106
|
assert_tool_triggered(DataManagementTool.SQL, triggered_tools)
|
|
107
|
+
similarity_check.check_similarity(response, RESPONSE_FOR_SQL)
|
|
101
108
|
|
|
102
|
-
|
|
109
|
+
_, triggered_tools = assistant_utils.ask_assistant(
|
|
103
110
|
assistant,
|
|
104
111
|
SQL_TOOL_DELETE_TABLE_TASK,
|
|
105
112
|
conversation_id=conversation_id,
|
|
@@ -107,4 +114,38 @@ def test_create_assistant_with_sql_tool(
|
|
|
107
114
|
)
|
|
108
115
|
assert_tool_triggered(DataManagementTool.SQL, triggered_tools)
|
|
109
116
|
|
|
110
|
-
|
|
117
|
+
|
|
118
|
+
@pytest.mark.assistant
|
|
119
|
+
@pytest.mark.sql
|
|
120
|
+
@pytest.mark.influx
|
|
121
|
+
@pytest.mark.api
|
|
122
|
+
@pytest.mark.testcase("EPMCDME-6132")
|
|
123
|
+
@pytest.mark.skipif(
|
|
124
|
+
not EnvironmentResolver.is_sandbox(),
|
|
125
|
+
reason="InfluxDB is only available in sandbox environments",
|
|
126
|
+
)
|
|
127
|
+
def test_create_assistant_with_influxdb_tool(
|
|
128
|
+
integration_utils, assistant_utils, assistant, similarity_check
|
|
129
|
+
):
|
|
130
|
+
"""Test creating assistant with InfluxDB tool and performing time-series operations."""
|
|
131
|
+
|
|
132
|
+
credential_values = CredentialsManager.sql_credentials(DataBaseDialect.INFLUX)
|
|
133
|
+
settings = integration_utils.create_integration(
|
|
134
|
+
CredentialTypes.SQL, credential_values
|
|
135
|
+
)
|
|
136
|
+
|
|
137
|
+
assistant = assistant(
|
|
138
|
+
Toolkit.DATA_MANAGEMENT, DataManagementTool.SQL, settings=settings
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
conversation_id = str(uuid.uuid4())
|
|
142
|
+
|
|
143
|
+
# Query the measurement
|
|
144
|
+
response, triggered_tools = assistant_utils.ask_assistant(
|
|
145
|
+
assistant,
|
|
146
|
+
INFLUXDB_QUERY_MEASUREMENT_TASK,
|
|
147
|
+
conversation_id=conversation_id,
|
|
148
|
+
minimal_response=False,
|
|
149
|
+
)
|
|
150
|
+
assert_tool_triggered(DataManagementTool.SQL, triggered_tools)
|
|
151
|
+
similarity_check.check_similarity(response, RESPONSE_FOR_INFLUXDB)
|
|
@@ -17,10 +17,6 @@ from codemie_test_harness.tests.test_data.mcp_server_test_data import (
|
|
|
17
17
|
CLI_MCP_SERVER,
|
|
18
18
|
)
|
|
19
19
|
|
|
20
|
-
# pytestmark = pytest.mark.skipif(
|
|
21
|
-
# EnvironmentResolver.is_localhost(), reason="Skipping this test on local environment"
|
|
22
|
-
# )
|
|
23
|
-
|
|
24
20
|
|
|
25
21
|
@pytest.mark.assistant
|
|
26
22
|
@pytest.mark.mcp
|
|
@@ -12,10 +12,6 @@ from codemie_test_harness.tests.test_data.mcp_server_test_data import (
|
|
|
12
12
|
fetch_server_prompt,
|
|
13
13
|
)
|
|
14
14
|
|
|
15
|
-
# pytestmark = pytest.mark.skipif(
|
|
16
|
-
# EnvironmentResolver.is_localhost(), reason="Skipping this test on local environment"
|
|
17
|
-
# )
|
|
18
|
-
|
|
19
15
|
|
|
20
16
|
@pytest.mark.assistant
|
|
21
17
|
@pytest.mark.mcp
|
{codemie_test_harness-0.1.183 → codemie_test_harness-0.1.197}/codemie_test_harness/tests/conftest.py
RENAMED
|
@@ -845,8 +845,8 @@ def ado_integration(integration_utils):
|
|
|
845
845
|
|
|
846
846
|
|
|
847
847
|
@pytest.fixture(scope="function")
|
|
848
|
-
def
|
|
849
|
-
"""Create
|
|
848
|
+
def integration(integration_utils):
|
|
849
|
+
"""Create integration with custom credentials"""
|
|
850
850
|
|
|
851
851
|
created_integration: Optional[Integration] = None
|
|
852
852
|
|
|
@@ -81,7 +81,7 @@ class Environment(Enum):
|
|
|
81
81
|
Returns:
|
|
82
82
|
List of Environment enums: [PREVIEW, AZURE, LOCALHOST]
|
|
83
83
|
"""
|
|
84
|
-
return [cls.PREVIEW, cls.AZURE, cls.LOCALHOST]
|
|
84
|
+
return [cls.PREVIEW, cls.AZURE, cls.LOCALHOST, cls.PRODUCTION]
|
|
85
85
|
|
|
86
86
|
@classmethod
|
|
87
87
|
def get_gcp_environments(cls) -> List["Environment"]:
|
|
@@ -90,7 +90,7 @@ class Environment(Enum):
|
|
|
90
90
|
Returns:
|
|
91
91
|
List of Environment enums: [PREVIEW, GCP, LOCALHOST]
|
|
92
92
|
"""
|
|
93
|
-
return [cls.PREVIEW, cls.GCP, cls.LOCALHOST]
|
|
93
|
+
return [cls.PREVIEW, cls.GCP, cls.LOCALHOST, cls.PRODUCTION]
|
|
94
94
|
|
|
95
95
|
@classmethod
|
|
96
96
|
def get_aws_environments(cls) -> List["Environment"]:
|
|
@@ -99,4 +99,4 @@ class Environment(Enum):
|
|
|
99
99
|
Returns:
|
|
100
100
|
List of Environment enums: [PREVIEW, AWS, LOCALHOST]
|
|
101
101
|
"""
|
|
102
|
-
return [cls.PREVIEW, cls.AWS, cls.LOCALHOST]
|
|
102
|
+
return [cls.PREVIEW, cls.AWS, cls.LOCALHOST, cls.PRODUCTION]
|
|
@@ -33,6 +33,7 @@ class ModelTypes(str, Enum):
|
|
|
33
33
|
CLAUDE_35_SONNET_V2 = "claude-3-5-sonnet-v2"
|
|
34
34
|
CLAUDE_37_SONNET_V1 = "claude-3-7"
|
|
35
35
|
CLAUDE_4_SONNET = "claude-4-sonnet"
|
|
36
|
+
CLAUDE_4_5_SONNET = "claude-4-5-sonnet"
|
|
36
37
|
CLAUDE_4_OPUS = "claude-4-opus"
|
|
37
38
|
CLAUDE_4_1_OPUS = "claude-4-1-opus"
|
|
38
39
|
CLAUDE_4_SONNET_1M = "claude-4-sonnet-1m"
|