codemie-test-harness 0.1.167__tar.gz → 0.1.169__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.167 → codemie_test_harness-0.1.169}/PKG-INFO +2 -2
- codemie_test_harness-0.1.169/codemie_test_harness/tests/test_data/assistant_test_data.py +197 -0
- codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/assistants/test_create_assistant.py +408 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/conftest.py +23 -3
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/assistants/assistants_page.py +3 -4
- codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pageobject/assistants/create_assistant_page.py +689 -0
- codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pageobject/assistants/generate_with_ai_modal.py +367 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/base_page.py +24 -24
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/__init__.py +2 -2
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/execution_history_row.py +3 -3
- codemie_test_harness-0.1.167/codemie_test_harness/tests/ui/pageobject/components/header.py → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pageobject/components/menu.py +57 -111
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/pop_up.py +2 -2
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/workflow_card.py +7 -10
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/workflow_execution_history_item.py +9 -9
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/workflow_execution_state.py +1 -1
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/workflow_sidebar.py +16 -16
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/base_workflow_form_page.py +32 -65
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/create_workflow_page.py +4 -4
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/edit_workflow_page.py +6 -4
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_details_page.py +32 -61
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_executions_page.py +17 -23
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_template_details.py +5 -11
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/workflow_templates_page.py +5 -2
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/workflows_page.py +3 -5
- codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pytest.ini +18 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_create_workflow.py +12 -33
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_edit_workflow.py +14 -34
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_workflow_details.py +11 -11
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_workflow_executions_page.py +0 -2
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_workflow_templates.py +0 -2
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/test_workflows.py +8 -6
- codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/__init__.py +0 -0
- codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/pyproject.toml +2 -2
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/README.md +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/.env +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/cli.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/commands/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/commands/config_cmd.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/commands/run_cmd.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/constants.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/runner.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/cli/utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/pytest.ini +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/test_code_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/test_confluence_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/test_file_indexing.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/test_google_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/datasource/test_jira_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/default_integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/default_integrations/test_default_integrations_for_tool_with_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/test_assistants.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/access_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/access_management/test_keycloak_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/ado/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/ado/test_assistant_for_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/cloud/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/cloud/test_cloud_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/codebase/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/codebase/test_codebase_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/datamanagement/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/datamanagement/test_assistant_with_data_management_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/filemanagement/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/filemanagement/test_assistant_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/git/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/git/test_assistant_with_git_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/mcp/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/mcp/test_cli_mcp_server.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/mcp/test_mcp_servers.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/mcp/test_single_assistant_dual_time_plugins.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/notification/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/notification/test_assistant_notification_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/openapi/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/openapi/test_assistant_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/plugin/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_development_plugin.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/plugin/test_assistant_with_plugin_and_mcp_servers.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/project_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/project_management/test_assistant_pm_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/report_portal/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/report_portal/test_assistant_report_portal_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/research/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/research/test_assistant_research_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/servicenow/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/servicenow/test_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/vcs/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/assistant/tools/vcs/test_assistant_with_vcs_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/conftest.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/conversations/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/conversations/test_conversations_endpoints.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/e2e/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/e2e/test_e2e.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/enums/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/enums/environment.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/enums/integrations.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/enums/model_types.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/enums/tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/project/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/project/test_default_integrations.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/project/test_project_integrations.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/user/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/user/test_default_integrations.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/integrations/user/test_user_integrations.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/llm/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/llm/assistants/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/llm/assistants/test_lite_llm.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/llm/assistants/test_llm.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/providers/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/providers/test_providers_endpoints.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/search/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/search/test_search_assistant.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/search/test_search_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/search/test_search_integration.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/search/test_search_workflow.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_assistant_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_datasource_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_integration_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_llm_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_task_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_user_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_workflow_execution_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/service/test_workflow_service.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/ado_test_plan_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/ado_wiki_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/ado_work_item_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/cloud_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/codebase_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/data_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/ado_test_plan_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/ado_wiki_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/ado_work_item_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/cloud_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/codebase_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/data_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/direct_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/file_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/keycloak_tool_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/notification_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/open_api_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/project_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/report_portal_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/research_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/servicenow_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/direct_tools/vcs_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/file_management_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/file_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/large-files/large_file.txt +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/provider_payload.json +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.csv +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.docx +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.gif +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.ini +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.jpeg +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.jpg +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.json +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.pdf +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.png +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.pptx +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.txt +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.vtt +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.xlsx +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.xml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/files/test.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/git_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/google_datasource_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/index_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/integrations_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/keycloak_tool_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/llm_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/mcp_server_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/notification_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/open_api_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/openapi.json +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/output_schema_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/plugin_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/pm_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/project_management_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/report_portal_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/research_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/servicenow_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/vcs_tools_test_data.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_id.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_assistant_in_state.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_data_source.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_state.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_tool.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_yaml.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/invalid_yaml_format.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_assistant_id.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_assistant_tools_name.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_backoff_factor.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_initial_interval.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_max_attempts.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_retry_max_interval.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_id.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_expression.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_otherwise.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_condition_then.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_cases_condition.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/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.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_next_switch_default.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_backoff_factor.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_initial_interval.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_max_attempts.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_states_retry_max_interval.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_system_prompt.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_tools_id.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow/invalid_config/missing_required_tools_name.yaml +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/test_data/workflow_validation_messages.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui/pageobject → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/assistants}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/ui/pageobject/assistants → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pageobject}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/utils → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/pageobject/assistants}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/components/workflow_state_card.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/login_page.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/ui/pageobject/workflows/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow → codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/workflows}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools → codemie_test_harness-0.1.169/codemie_test_harness/tests/utils}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/assistant_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/aws_parameters_store.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/base_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/client_factory.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/constants.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/conversation_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/credentials_manager.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/datasource_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/env_resolver.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/env_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/file_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/gitbud_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/http_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/integration_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/json_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/llm_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/logger_util.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/notification_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/provider_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/pytest_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/search_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/similarity_check.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/user_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/workflow_utils.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/utils/yaml_utils.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/access_management → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/ado → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/cloud → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/access_management}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/access_management/test_workflow_with_assistant_with_keycloak_tool.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/codebase → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/ado}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/ado/test_workflow_with_assistant_with_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/data_management → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/cloud}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/cloud/test_workflow_with_assistant_cloud_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/default_integrations → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/codebase}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/codebase/test_worfklow_with_assistant_codebase_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/git → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/data_management}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/data_management/test_workflow_with_assistant_with_data_management_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/mcp → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/default_integrations}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/file_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/file_management/test_workflow_with_assistant_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/notification → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/git}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/git/test_workflow_with_assistant_git_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/plugin → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/mcp}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/mcp/test_workflow_with_assistant_with_mcp_server.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/project_management → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/notification}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/notification/test_workflow_with_assistant_notification_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/open_api/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/open_api/test_workflow_with_assistant_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/report_portal → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/plugin}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_development_plugin.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/plugin/test_workflow_with_assistant_with_plugin_and_mcp_servers.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/research → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/project_management}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/project_management/test_workflow_with_assistant_pm_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/servicenow → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/report_portal}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/report_portal/test_workflow_with_assistant_with_report_portal_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/assistant_tools/vcs → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/research}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/research/test_workflow_with_assistant_research_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/config_validation → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/servicenow}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/direct_tools_calling → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/assistant_tools/vcs}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/assistant_tools/vcs/workflow_with_assistant_vcs_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/config_validation}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/config_validation/test_config_validation.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/direct_tools_calling}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_access_management_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_cloud_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_codebase_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_elastic.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_data_management_tools_sql.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_notification_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_plugin_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_project_management_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_report_portal_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_research_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/direct_tools_calling/test_workflow_with_vcs_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/test_workflows.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools}/__init__.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/access_management/test_workflow_with_keycloak_tool.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_test_plan_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_wiki_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/ado/test_workflow_with_ado_work_item_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/git → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/cloud/test_workflow_with_cloud_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/codebase/test_workflow_with_codebase_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/data_management/test_workflow_with_data_management_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_kit.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/default_integrations/test_default_integrations_for_tool_with_datasource.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/file_management/test_workflow_with_file_management_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/git}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/git/test_workflow_with_git_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/mcp/test_workflow_with_mcp_server.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/notification/test_workflow_with_notification_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/open_api/test_workflow_with_open_api_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/research → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_development_plugin.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/plugin/test_workflow_with_plugin_and_mcp_servers.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/project_management/test_workflow_with_project_management_tools.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/report_portal/test_workflow_with_report_portal_tool.py +0 -0
- {codemie_test_harness-0.1.167/codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs → codemie_test_harness-0.1.169/codemie_test_harness/tests/workflow/virtual_assistant_tools/research}/__init__.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/research/test_workflow_with_research_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/servicenow/test_workflow_with_servicenow_tools.py +0 -0
- {codemie_test_harness-0.1.167 → codemie_test_harness-0.1.169}/codemie_test_harness/tests/workflow/virtual_assistant_tools/vcs/test_workflow_with_vcs_tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codemie-test-harness
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.169
|
|
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.
|
|
16
|
+
Requires-Dist: codemie-sdk-python (==0.1.169)
|
|
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-reportportal (>=5.5.2,<6.0.0)
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Test Data for Assistant UI Tests
|
|
3
|
+
|
|
4
|
+
This module provides test data generation and management for assistant-related UI tests.
|
|
5
|
+
Following best practices by separating test data from test logic and providing
|
|
6
|
+
reusable data factories for consistent testing.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from dataclasses import dataclass
|
|
10
|
+
from typing import Optional, List
|
|
11
|
+
|
|
12
|
+
from codemie_test_harness.tests.utils.base_utils import get_random_name
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@dataclass
|
|
16
|
+
class AssistantTestData:
|
|
17
|
+
"""
|
|
18
|
+
Data class for assistant test data.
|
|
19
|
+
|
|
20
|
+
This class encapsulates all the data needed for assistant creation tests,
|
|
21
|
+
providing a clean and type-safe way to manage test data.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
name: str
|
|
25
|
+
description: str
|
|
26
|
+
system_prompt: str
|
|
27
|
+
icon_url: Optional[str] = None
|
|
28
|
+
shared: bool = False
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class AssistantTestDataFactory:
|
|
32
|
+
"""
|
|
33
|
+
Factory class for generating assistant test data.
|
|
34
|
+
|
|
35
|
+
This factory provides various methods to create different types of
|
|
36
|
+
assistant test data for different testing scenarios.
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
@staticmethod
|
|
40
|
+
def create_minimal_assistant_data() -> AssistantTestData:
|
|
41
|
+
"""
|
|
42
|
+
Create minimal assistant data with only required fields.
|
|
43
|
+
|
|
44
|
+
This represents the most basic assistant creation scenario
|
|
45
|
+
with minimal required information.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
AssistantTestData: Minimal assistant test data
|
|
49
|
+
"""
|
|
50
|
+
return AssistantTestData(
|
|
51
|
+
name=f"QA Test Assistant {get_random_name()}",
|
|
52
|
+
description="Minimal test assistant for QA automation.",
|
|
53
|
+
system_prompt=(
|
|
54
|
+
"You are a test assistant created for QA validation purposes. "
|
|
55
|
+
"Provide helpful and accurate responses to user queries."
|
|
56
|
+
),
|
|
57
|
+
shared=False,
|
|
58
|
+
icon_url=ICON_URL,
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
@staticmethod
|
|
62
|
+
def create_shared_assistant_data() -> AssistantTestData:
|
|
63
|
+
"""
|
|
64
|
+
Create shared assistant data for public/shared testing scenarios.
|
|
65
|
+
|
|
66
|
+
Returns:
|
|
67
|
+
AssistantTestData: Shared assistant test data
|
|
68
|
+
"""
|
|
69
|
+
return AssistantTestData(
|
|
70
|
+
name=f"QA Shared Assistant {get_random_name()}",
|
|
71
|
+
description="Shared QA assistant available to all team members",
|
|
72
|
+
system_prompt=(
|
|
73
|
+
"You are a shared QA assistant available to the entire team. "
|
|
74
|
+
"Provide collaborative testing support, knowledge sharing, and "
|
|
75
|
+
"help maintain consistent quality standards across projects."
|
|
76
|
+
),
|
|
77
|
+
icon_url=ICON_URL,
|
|
78
|
+
shared=True,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
@staticmethod
|
|
82
|
+
def create_validation_test_data() -> List[AssistantTestData]:
|
|
83
|
+
"""
|
|
84
|
+
Create a list of assistant data for validation testing scenarios.
|
|
85
|
+
|
|
86
|
+
This includes data for testing various validation scenarios,
|
|
87
|
+
edge cases in form validation, and error handling.
|
|
88
|
+
|
|
89
|
+
Returns:
|
|
90
|
+
List[AssistantTestData]: List of validation test data
|
|
91
|
+
"""
|
|
92
|
+
return [
|
|
93
|
+
# Empty name scenario
|
|
94
|
+
AssistantTestData(
|
|
95
|
+
name="",
|
|
96
|
+
description="Test description",
|
|
97
|
+
system_prompt="Test prompt",
|
|
98
|
+
),
|
|
99
|
+
# Long name scenario
|
|
100
|
+
AssistantTestData(
|
|
101
|
+
name="A" * 100, # Very long name
|
|
102
|
+
description="Test description for long name validation",
|
|
103
|
+
system_prompt="Test prompt for long name scenario",
|
|
104
|
+
),
|
|
105
|
+
# Empty description scenario
|
|
106
|
+
AssistantTestData(
|
|
107
|
+
name="Test Assistant",
|
|
108
|
+
description="",
|
|
109
|
+
system_prompt="Test prompt",
|
|
110
|
+
),
|
|
111
|
+
# Empty system prompt scenario
|
|
112
|
+
AssistantTestData(
|
|
113
|
+
name="Test Assistant",
|
|
114
|
+
description="Test description",
|
|
115
|
+
system_prompt="",
|
|
116
|
+
),
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
class AssistantValidationRules:
|
|
121
|
+
"""
|
|
122
|
+
Validation rules and constraints for assistant data.
|
|
123
|
+
|
|
124
|
+
This class defines the validation rules that should be applied
|
|
125
|
+
to assistant data during testing.
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
# Field length constraints
|
|
129
|
+
MAX_NAME_LENGTH = 100
|
|
130
|
+
MAX_DESCRIPTION_LENGTH = 1000
|
|
131
|
+
MAX_ICON_URL_LENGTH = 500
|
|
132
|
+
|
|
133
|
+
# Required fields
|
|
134
|
+
REQUIRED_FIELDS = ["name", "description", "system_prompt"]
|
|
135
|
+
|
|
136
|
+
# Validation error messages (expected messages for testing)
|
|
137
|
+
ERROR_MESSAGES = {
|
|
138
|
+
"name_required": "Name is required",
|
|
139
|
+
"name_too_long": f"Name must be less than {MAX_NAME_LENGTH} characters",
|
|
140
|
+
"description_required": "Description is required",
|
|
141
|
+
"description_too_long": f"Description must be less than {MAX_DESCRIPTION_LENGTH} characters",
|
|
142
|
+
"system_prompt_required": "System prompt is required",
|
|
143
|
+
"invalid_url": "Please enter a valid URL",
|
|
144
|
+
"invalid_type": "Please select a valid assistant type",
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
# ==================== CONVENIENCE FUNCTIONS ====================
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def get_minimal_assistant_data() -> AssistantTestData:
|
|
152
|
+
"""Convenience function to get minimal assistant data."""
|
|
153
|
+
return AssistantTestDataFactory.create_minimal_assistant_data()
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_shared_assistant_data() -> AssistantTestData:
|
|
157
|
+
"""Convenience function to get shared assistant data."""
|
|
158
|
+
return AssistantTestDataFactory.create_shared_assistant_data()
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def get_validation_test_data() -> List[AssistantTestData]:
|
|
162
|
+
"""Convenience function to get validation test data."""
|
|
163
|
+
return AssistantTestDataFactory.create_validation_test_data()
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
# ==================== TEST DATA CONSTANTS ====================
|
|
167
|
+
|
|
168
|
+
# Common test values for reuse
|
|
169
|
+
COMMON_TEST_PROMPTS = {
|
|
170
|
+
"qa_assistant": (
|
|
171
|
+
"You are a QA testing assistant. Your primary role is to help with "
|
|
172
|
+
"quality assurance tasks, test automation, and ensuring software quality. "
|
|
173
|
+
"Provide detailed and actionable guidance."
|
|
174
|
+
),
|
|
175
|
+
"general_assistant": (
|
|
176
|
+
"You are a helpful assistant. Provide clear, accurate, and helpful "
|
|
177
|
+
"responses to user queries. Always be polite and professional."
|
|
178
|
+
),
|
|
179
|
+
"specialist_assistant": (
|
|
180
|
+
"You are a specialist assistant with deep expertise in your domain. "
|
|
181
|
+
"Provide expert-level guidance and detailed technical solutions."
|
|
182
|
+
),
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
COMMON_TEST_DESCRIPTIONS = {
|
|
186
|
+
"qa_assistant": "QA testing assistant for automation and quality assurance tasks",
|
|
187
|
+
"general_assistant": "General purpose assistant for various tasks and queries",
|
|
188
|
+
"specialist_assistant": "Specialist assistant with domain-specific expertise",
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
COMMON_ICON_URLS = {
|
|
192
|
+
"qa_icon": "https://example.com/qa-assistant-icon.png",
|
|
193
|
+
"general_icon": "https://example.com/general-assistant-icon.png",
|
|
194
|
+
"specialist_icon": "https://example.com/specialist-assistant-icon.png",
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
ICON_URL = "https://raw.githubusercontent.com/epam-gen-ai-run/ai-run-install/main/docs/assets/ai/AQAUiTestGenerator.png"
|
codemie_test_harness-0.1.169/codemie_test_harness/tests/ui/assistants/test_create_assistant.py
ADDED
|
@@ -0,0 +1,408 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UI Test Suite for Create Assistant Feature - Critical Happy Path Scenarios
|
|
3
|
+
|
|
4
|
+
This test suite implements UI automated tests for the "create assistant" feature
|
|
5
|
+
following Page Object Model (POM) best practices as specified in JIRA ticket EPMCDME-8153.
|
|
6
|
+
|
|
7
|
+
Test Coverage:
|
|
8
|
+
- Critical happy path for assistant creation workflow
|
|
9
|
+
- Form field interactions and validation
|
|
10
|
+
- Navigation and UI component verification
|
|
11
|
+
- Essential assistant creation scenarios
|
|
12
|
+
- AI Generator modal handling
|
|
13
|
+
|
|
14
|
+
Exclusions (as per requirements):
|
|
15
|
+
- Edge cases and negative scenarios
|
|
16
|
+
- Advanced configuration testing
|
|
17
|
+
- Complex error handling scenarios
|
|
18
|
+
|
|
19
|
+
Architecture:
|
|
20
|
+
- Follows Page Object Model (POM) pattern
|
|
21
|
+
- Reusable UI components abstracted into dedicated classes
|
|
22
|
+
- Comprehensive locator strategies with fallbacks
|
|
23
|
+
- Property-based element access for maintainability
|
|
24
|
+
- Integration with AIAssistantGeneratorPage modal
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
import pytest
|
|
28
|
+
|
|
29
|
+
from codemie_test_harness.tests.test_data.assistant_test_data import (
|
|
30
|
+
get_minimal_assistant_data,
|
|
31
|
+
)
|
|
32
|
+
from codemie_test_harness.tests.ui.pageobject.assistants.assistants_page import (
|
|
33
|
+
AssistantsPage,
|
|
34
|
+
)
|
|
35
|
+
from codemie_test_harness.tests.ui.pageobject.assistants.create_assistant_page import (
|
|
36
|
+
CreateAssistantPage,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# noinspection PyArgumentList
|
|
41
|
+
class TestCreateAssistantPageElements:
|
|
42
|
+
"""Test suite for Create Assistant page element visibility and structure."""
|
|
43
|
+
|
|
44
|
+
@pytest.mark.assistant_ui
|
|
45
|
+
@pytest.mark.ui
|
|
46
|
+
def test_create_assistant_page_elements_visibility(self, page):
|
|
47
|
+
"""
|
|
48
|
+
Test that all main elements are visible on Create Assistant page.
|
|
49
|
+
|
|
50
|
+
This test verifies the basic page structure and essential UI components
|
|
51
|
+
are properly rendered and accessible to users.
|
|
52
|
+
|
|
53
|
+
Critical Elements Verified:
|
|
54
|
+
- Page title and navigation
|
|
55
|
+
- Essential form fields (name, description, system prompt)
|
|
56
|
+
- Action buttons (create, cancel)
|
|
57
|
+
- Common page components (header, navigation)
|
|
58
|
+
"""
|
|
59
|
+
create_page = CreateAssistantPage(page)
|
|
60
|
+
create_page.navigate_to()
|
|
61
|
+
|
|
62
|
+
# Verify we are on the correct page
|
|
63
|
+
create_page.should_be_on_create_assistant_page()
|
|
64
|
+
|
|
65
|
+
# Verify essential form fields are visible
|
|
66
|
+
create_page.should_have_all_form_fields_visible()
|
|
67
|
+
|
|
68
|
+
# Verify action buttons are present
|
|
69
|
+
create_page.should_have_action_buttons_visible()
|
|
70
|
+
|
|
71
|
+
# Verify common page components
|
|
72
|
+
create_page.should_have_page_content_visible()
|
|
73
|
+
create_page.should_not_have_loading_indicator()
|
|
74
|
+
|
|
75
|
+
@pytest.mark.assistant_ui
|
|
76
|
+
@pytest.mark.ui
|
|
77
|
+
def test_create_assistant_navigation_from_assistants_page(self, page):
|
|
78
|
+
"""
|
|
79
|
+
Test navigation to Create Assistant page from main Assistants page.
|
|
80
|
+
|
|
81
|
+
This test verifies the critical navigation path that users follow
|
|
82
|
+
to access the assistant creation functionality.
|
|
83
|
+
|
|
84
|
+
Navigation Flow:
|
|
85
|
+
1. Navigate to Assistants page
|
|
86
|
+
2. Click "Create Assistant" button
|
|
87
|
+
3. Verify arrival at Create Assistant page
|
|
88
|
+
"""
|
|
89
|
+
# Start from the main assistants page
|
|
90
|
+
assistants_page = AssistantsPage(page)
|
|
91
|
+
assistants_page.navigate_to()
|
|
92
|
+
assistants_page.should_be_on_assistants_page()
|
|
93
|
+
|
|
94
|
+
# Navigate to create assistant page
|
|
95
|
+
assistants_page.click_create_assistant()
|
|
96
|
+
|
|
97
|
+
# Verify we're on the create assistant page
|
|
98
|
+
create_page = CreateAssistantPage(page)
|
|
99
|
+
create_page.should_be_on_create_assistant_page()
|
|
100
|
+
|
|
101
|
+
@pytest.mark.assistant_ui
|
|
102
|
+
@pytest.mark.ui
|
|
103
|
+
def test_ai_generator_modal_visibility_and_handling(self, page):
|
|
104
|
+
"""
|
|
105
|
+
Test AI Generator modal visibility and proper handling when navigating to Create Assistant page.
|
|
106
|
+
|
|
107
|
+
This test verifies that the AI Assistant Generator modal is properly handled
|
|
108
|
+
when it appears during navigation to the Create Assistant page.
|
|
109
|
+
|
|
110
|
+
Modal Handling Flow:
|
|
111
|
+
1. Navigate to Create Assistant page
|
|
112
|
+
2. Check if AI Generator modal appears
|
|
113
|
+
3. Verify modal can be closed or handled appropriately
|
|
114
|
+
4. Ensure manual form is accessible after modal handling
|
|
115
|
+
"""
|
|
116
|
+
create_page = CreateAssistantPage(page)
|
|
117
|
+
|
|
118
|
+
# Navigate to create assistant page - this will handle the modal automatically
|
|
119
|
+
create_page.navigate_to()
|
|
120
|
+
|
|
121
|
+
# After navigation, modal should be handled and not visible
|
|
122
|
+
create_page.verify_ai_generator_modal_not_visible()
|
|
123
|
+
|
|
124
|
+
# Verify we can proceed with manual form
|
|
125
|
+
create_page.should_be_on_create_assistant_page()
|
|
126
|
+
create_page.should_have_all_form_fields_visible()
|
|
127
|
+
|
|
128
|
+
@pytest.mark.assistant_ui
|
|
129
|
+
@pytest.mark.ui
|
|
130
|
+
def test_ai_generator_modal_create_manually_workflow(self, page):
|
|
131
|
+
"""
|
|
132
|
+
Test the workflow of using 'Create Manually' option from AI Generator modal.
|
|
133
|
+
|
|
134
|
+
This test verifies that users can properly choose manual creation
|
|
135
|
+
when the AI Generator modal appears.
|
|
136
|
+
|
|
137
|
+
Manual Creation Flow:
|
|
138
|
+
1. Navigate to Create Assistant page
|
|
139
|
+
2. If AI Generator modal appears, click 'Create Manually'
|
|
140
|
+
3. Verify modal closes and manual form is accessible
|
|
141
|
+
4. Proceed with manual assistant creation
|
|
142
|
+
"""
|
|
143
|
+
create_page = CreateAssistantPage(page)
|
|
144
|
+
|
|
145
|
+
# Navigate without automatic modal handling
|
|
146
|
+
page.goto(create_page.page_url)
|
|
147
|
+
create_page.wait_for_page_load()
|
|
148
|
+
|
|
149
|
+
# If modal is visible, use 'Create Manually' option
|
|
150
|
+
if create_page.is_ai_generator_modal_visible():
|
|
151
|
+
# Verify modal is properly displayed
|
|
152
|
+
create_page.verify_ai_generator_modal_visible()
|
|
153
|
+
|
|
154
|
+
# Choose manual creation
|
|
155
|
+
create_page.create_manually_from_ai_modal()
|
|
156
|
+
|
|
157
|
+
# Verify modal is closed
|
|
158
|
+
create_page.verify_ai_generator_modal_not_visible()
|
|
159
|
+
|
|
160
|
+
# Verify manual form is accessible
|
|
161
|
+
create_page.should_be_on_create_assistant_page()
|
|
162
|
+
create_page.should_have_all_form_fields_visible()
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
# noinspection PyArgumentList
|
|
166
|
+
class TestCreateAssistantFormInteractions:
|
|
167
|
+
"""Test suite for form field interactions and input validation."""
|
|
168
|
+
|
|
169
|
+
@pytest.mark.assistant_ui
|
|
170
|
+
@pytest.mark.ui
|
|
171
|
+
def test_create_assistant_form_field_interactions(self, page):
|
|
172
|
+
"""
|
|
173
|
+
Test form field interactions and input handling.
|
|
174
|
+
|
|
175
|
+
This test verifies that users can successfully interact with all
|
|
176
|
+
essential form fields and that input values are properly retained.
|
|
177
|
+
|
|
178
|
+
Form Fields Tested:
|
|
179
|
+
- Assistant name input
|
|
180
|
+
- Description textarea
|
|
181
|
+
- System prompt textarea
|
|
182
|
+
- Icon URL input
|
|
183
|
+
- Shared toggle switch
|
|
184
|
+
"""
|
|
185
|
+
create_page = CreateAssistantPage(page)
|
|
186
|
+
create_page.navigate_to()
|
|
187
|
+
|
|
188
|
+
# Test shared toggle interaction
|
|
189
|
+
create_page.toggle_shared_assistant(True)
|
|
190
|
+
create_page.should_have_shared_checked()
|
|
191
|
+
|
|
192
|
+
# Toggle back to private
|
|
193
|
+
create_page.toggle_shared_assistant(False)
|
|
194
|
+
create_page.should_have_shared_unchecked()
|
|
195
|
+
|
|
196
|
+
# Get test data using the factory
|
|
197
|
+
test_data = get_minimal_assistant_data()
|
|
198
|
+
|
|
199
|
+
# Test name field interaction
|
|
200
|
+
test_name = test_data.name
|
|
201
|
+
create_page.fill_name(test_name)
|
|
202
|
+
create_page.should_have_name_value(test_name)
|
|
203
|
+
|
|
204
|
+
# Test description field interaction
|
|
205
|
+
test_description = test_data.description
|
|
206
|
+
create_page.fill_description(test_description)
|
|
207
|
+
create_page.should_have_description_value(test_description)
|
|
208
|
+
|
|
209
|
+
# Test system prompt field interaction
|
|
210
|
+
test_prompt = test_data.system_prompt
|
|
211
|
+
create_page.fill_system_prompt(test_prompt)
|
|
212
|
+
create_page.should_have_system_prompt_value(test_prompt)
|
|
213
|
+
|
|
214
|
+
# Test icon URL field interaction
|
|
215
|
+
test_icon_url = test_data.icon_url
|
|
216
|
+
create_page.fill_icon_url(test_icon_url)
|
|
217
|
+
create_page.should_have_icon_url_value(test_icon_url)
|
|
218
|
+
|
|
219
|
+
@pytest.mark.assistant_ui
|
|
220
|
+
@pytest.mark.ui
|
|
221
|
+
def test_create_assistant_default_field_values(self, page):
|
|
222
|
+
"""
|
|
223
|
+
Test default field values on page load.
|
|
224
|
+
|
|
225
|
+
This test verifies that form fields have appropriate default values
|
|
226
|
+
when the Create Assistant page is first loaded.
|
|
227
|
+
|
|
228
|
+
Default Values Verified:
|
|
229
|
+
- Empty name field
|
|
230
|
+
- Empty description field
|
|
231
|
+
- Empty system prompt field
|
|
232
|
+
- Unchecked shared toggle
|
|
233
|
+
- Default assistant type selection
|
|
234
|
+
"""
|
|
235
|
+
create_page = CreateAssistantPage(page)
|
|
236
|
+
create_page.navigate_to()
|
|
237
|
+
|
|
238
|
+
# Verify default empty field values
|
|
239
|
+
create_page.should_have_empty_fields()
|
|
240
|
+
|
|
241
|
+
# Verify default buttons availability
|
|
242
|
+
create_page.should_have_create_button_disabled()
|
|
243
|
+
create_page.should_have_cancel_button_enabled()
|
|
244
|
+
|
|
245
|
+
# Verify default shared toggle state (should be unchecked/private)
|
|
246
|
+
create_page.should_have_shared_unchecked()
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
# noinspection PyArgumentList
|
|
250
|
+
class TestCreateAssistantCriticalHappyPath:
|
|
251
|
+
"""
|
|
252
|
+
Test suite for critical happy path scenarios.
|
|
253
|
+
|
|
254
|
+
This test class focuses on the most important user workflows for creating assistants,
|
|
255
|
+
ensuring that the essential functionality works correctly for end users.
|
|
256
|
+
"""
|
|
257
|
+
|
|
258
|
+
@pytest.mark.assistant_ui
|
|
259
|
+
@pytest.mark.ui
|
|
260
|
+
def test_create_assistant_minimal_required_fields(self, page):
|
|
261
|
+
"""
|
|
262
|
+
Test assistant creation with minimal required fields - Critical Happy Path.
|
|
263
|
+
|
|
264
|
+
This test represents the core scenario outlined in JIRA ticket EPMCDME-8153:
|
|
265
|
+
1. User navigates to Create Assistant page
|
|
266
|
+
2. Fills essential fields (name, description, system prompt)
|
|
267
|
+
3. Saves and publishes the assistant
|
|
268
|
+
4. Verifies assistant appears in the assistants list
|
|
269
|
+
|
|
270
|
+
This is the most critical test case for the feature.
|
|
271
|
+
"""
|
|
272
|
+
# Get test data using the factory
|
|
273
|
+
test_data = get_minimal_assistant_data()
|
|
274
|
+
|
|
275
|
+
# Navigate to create assistant page
|
|
276
|
+
create_page = CreateAssistantPage(page)
|
|
277
|
+
create_page.navigate_to()
|
|
278
|
+
|
|
279
|
+
# Use the comprehensive create_assistant method with test data
|
|
280
|
+
create_page.create_assistant(
|
|
281
|
+
name=test_data.name,
|
|
282
|
+
description=test_data.description,
|
|
283
|
+
system_prompt=test_data.system_prompt,
|
|
284
|
+
shared=test_data.shared,
|
|
285
|
+
)
|
|
286
|
+
|
|
287
|
+
# Verify successful creation
|
|
288
|
+
assistants_page = AssistantsPage(page)
|
|
289
|
+
assert_assistant_created_successfully(assistants_page, test_data.name)
|
|
290
|
+
|
|
291
|
+
@pytest.mark.assistant_ui
|
|
292
|
+
@pytest.mark.ui
|
|
293
|
+
def test_create_assistant_button_states_and_validation(self, page):
|
|
294
|
+
"""
|
|
295
|
+
Test create button states.
|
|
296
|
+
|
|
297
|
+
This test ensures that the form validation works correctly and provides
|
|
298
|
+
appropriate feedback to users about required fields.
|
|
299
|
+
"""
|
|
300
|
+
create_page = CreateAssistantPage(page)
|
|
301
|
+
create_page.navigate_to()
|
|
302
|
+
|
|
303
|
+
# Get test data using the factory
|
|
304
|
+
test_data = get_minimal_assistant_data()
|
|
305
|
+
|
|
306
|
+
# Fill required fields and verify button becomes enabled
|
|
307
|
+
create_page.fill_name(test_data.name)
|
|
308
|
+
create_page.should_have_create_button_disabled()
|
|
309
|
+
create_page.fill_description(test_data.description)
|
|
310
|
+
create_page.should_have_create_button_disabled()
|
|
311
|
+
create_page.fill_system_prompt(test_data.system_prompt)
|
|
312
|
+
|
|
313
|
+
# Verify create button is available for interaction
|
|
314
|
+
create_page.should_have_create_button_enabled()
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
# noinspection PyArgumentList
|
|
318
|
+
class TestCreateAssistantNavigation:
|
|
319
|
+
"""Test suite for navigation functionality within the Create Assistant workflow."""
|
|
320
|
+
|
|
321
|
+
@pytest.mark.assistant_ui
|
|
322
|
+
@pytest.mark.ui
|
|
323
|
+
def test_create_assistant_cancel_navigation(self, page):
|
|
324
|
+
"""
|
|
325
|
+
Test cancel functionality returns user to assistants list.
|
|
326
|
+
|
|
327
|
+
This test verifies that users can abort the assistant creation process
|
|
328
|
+
and return to the main assistants page without creating an assistant.
|
|
329
|
+
|
|
330
|
+
Navigation Flow:
|
|
331
|
+
1. Navigate to Create Assistant page
|
|
332
|
+
2. Fill some fields (simulate user input)
|
|
333
|
+
3. Click Cancel button
|
|
334
|
+
4. Verify return to Assistants page
|
|
335
|
+
"""
|
|
336
|
+
create_page = CreateAssistantPage(page)
|
|
337
|
+
create_page.navigate_to()
|
|
338
|
+
|
|
339
|
+
# Get test data using the factory
|
|
340
|
+
test_data = get_minimal_assistant_data()
|
|
341
|
+
|
|
342
|
+
# Simulate some user input
|
|
343
|
+
create_page.fill_name(test_data.name)
|
|
344
|
+
create_page.fill_description(test_data.description)
|
|
345
|
+
|
|
346
|
+
# Cancel the creation process
|
|
347
|
+
create_page.click_cancel()
|
|
348
|
+
|
|
349
|
+
# Verify we're back on the assistants page
|
|
350
|
+
assistants_page = AssistantsPage(page)
|
|
351
|
+
assistants_page.should_be_on_assistants_page()
|
|
352
|
+
|
|
353
|
+
@pytest.mark.assistant_ui
|
|
354
|
+
@pytest.mark.ui
|
|
355
|
+
def test_create_assistant_back_button_navigation(self, page):
|
|
356
|
+
"""
|
|
357
|
+
Test back button functionality returns user to previous page.
|
|
358
|
+
|
|
359
|
+
This test verifies that the back button works correctly and provides
|
|
360
|
+
users with an alternative way to return to the assistants list.
|
|
361
|
+
|
|
362
|
+
Navigation Flow:
|
|
363
|
+
1. Start from Assistants page
|
|
364
|
+
2. Navigate to Create Assistant page
|
|
365
|
+
3. Click Back button
|
|
366
|
+
4. Verify return to Assistants page
|
|
367
|
+
"""
|
|
368
|
+
# Start from assistants page to establish navigation history
|
|
369
|
+
assistants_page = AssistantsPage(page)
|
|
370
|
+
assistants_page.navigate_to()
|
|
371
|
+
assistants_page.click_create_assistant()
|
|
372
|
+
|
|
373
|
+
# Now on create assistant page
|
|
374
|
+
create_page = CreateAssistantPage(page)
|
|
375
|
+
create_page.should_be_on_create_assistant_page()
|
|
376
|
+
create_page.handle_ai_generator_modal_if_visible()
|
|
377
|
+
|
|
378
|
+
# Use back button to return
|
|
379
|
+
create_page.click_back()
|
|
380
|
+
|
|
381
|
+
# Verify we're back on assistants page
|
|
382
|
+
assistants_page.should_be_on_assistants_page()
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
# ==================== HELPER METHODS FOR CUSTOM ASSERTIONS ====================
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
# noinspection PyArgumentList
|
|
389
|
+
def assert_assistant_created_successfully(
|
|
390
|
+
assistants_page: AssistantsPage, assistant_name: str
|
|
391
|
+
):
|
|
392
|
+
"""
|
|
393
|
+
Helper method to verify successful assistant creation.
|
|
394
|
+
|
|
395
|
+
Args:
|
|
396
|
+
assistants_page: The AssistantsPage instance
|
|
397
|
+
assistant_name: Name of the assistant to verify
|
|
398
|
+
"""
|
|
399
|
+
assistants_page.should_be_on_assistants_page()
|
|
400
|
+
assistants_page.should_see_assistant_with_name(assistant_name)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
# ==================== PYTEST MARKERS AND CONFIGURATION ====================
|
|
404
|
+
|
|
405
|
+
pytestmark = [
|
|
406
|
+
pytest.mark.assistant_ui, # Mark all tests in this module as assistant UI tests
|
|
407
|
+
pytest.mark.ui, # Mark all tests as UI tests
|
|
408
|
+
]
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
import os
|
|
3
|
-
import pytest
|
|
4
3
|
from datetime import datetime
|
|
4
|
+
from time import sleep
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
import pytest
|
|
8
7
|
from reportportal_client import RPLogger, RPLogHandler
|
|
9
8
|
|
|
9
|
+
from codemie_test_harness.tests import autotest_entity_prefix
|
|
10
|
+
from codemie_test_harness.tests.ui.pageobject.login_page import LoginPage
|
|
11
|
+
from codemie_test_harness.tests.utils.client_factory import get_client
|
|
12
|
+
from codemie_test_harness.tests.utils.env_resolver import EnvironmentResolver
|
|
13
|
+
|
|
10
14
|
# Create ReportPortal logger
|
|
11
15
|
logging.setLoggerClass(RPLogger)
|
|
12
16
|
rp_logger = logging.getLogger("reportportal_logger")
|
|
@@ -85,3 +89,19 @@ def browser_type_launch_args():
|
|
|
85
89
|
"headless": os.getenv("HEADLESS", "false").lower() == "true",
|
|
86
90
|
"slow_mo": 150,
|
|
87
91
|
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
def pytest_sessionfinish(session):
|
|
95
|
+
"""Run cleanup code after all tests have finished."""
|
|
96
|
+
clean_up_timeout = 1 if EnvironmentResolver.is_production() else 0
|
|
97
|
+
client = get_client()
|
|
98
|
+
prefix = autotest_entity_prefix
|
|
99
|
+
assistants = client.assistants.list(filters={"search": prefix}, per_page=200)
|
|
100
|
+
for assistant in assistants:
|
|
101
|
+
if prefix in assistant.name:
|
|
102
|
+
client.assistants.delete(assistant_id=assistant.id)
|
|
103
|
+
sleep(clean_up_timeout)
|
|
104
|
+
conversations = client.conversations.list_by_assistant_id(assistant.id)
|
|
105
|
+
for conversation in conversations:
|
|
106
|
+
client.conversations.delete(conversation.id)
|
|
107
|
+
sleep(clean_up_timeout)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
from reportportal_client import step
|
|
2
|
-
from playwright.sync_api import expect
|
|
3
|
-
|
|
4
1
|
from codemie_test_harness.tests.ui.pageobject.base_page import BasePage
|
|
2
|
+
from playwright.sync_api import expect
|
|
3
|
+
from reportportal_client import step
|
|
5
4
|
|
|
6
5
|
|
|
7
6
|
class AssistantsPage(BasePage):
|
|
@@ -132,7 +131,7 @@ class AssistantsPage(BasePage):
|
|
|
132
131
|
@step
|
|
133
132
|
def get_assistant_card_by_name(self, name: str):
|
|
134
133
|
"""Get assistant card by its name."""
|
|
135
|
-
return self.page.locator(
|
|
134
|
+
return self.page.locator(".body.h-card").filter(has_text=name)
|
|
136
135
|
|
|
137
136
|
@step
|
|
138
137
|
def click_assistant_card(self, name: str):
|