test: update test suites to match component refactoring

Comprehensive test updates to align with recent component refactoring
and new auto-launch functionality.

Component Tests:
- AddProviderDialog.test.tsx (10 lines):
  * Updated test cases for new dialog behavior
  * Enhanced mock data for preset selection
  * Improved assertions for validation

- ImportExportSection.test.tsx (16 lines):
  * Updated for new settings page integration
  * Enhanced test coverage for error scenarios
  * Better mock state management

- McpFormModal.test.tsx (60 lines):
  * Extensive updates for form refactoring
  * New test cases for multi-app selection
  * Enhanced validation testing
  * Better coverage of stdio/http server types

- ProviderList.test.tsx (11 lines):
  * Updated for new card layout
  * Enhanced drag-and-drop testing

- SettingsDialog.test.tsx (96 lines):
  * Major updates for SettingsPage migration
  * New test cases for auto-launch functionality
  * Enhanced integration test coverage
  * Better async operation testing

Hook Tests:
- useDirectorySettings.test.tsx (32 lines):
  * Updated for refactored hook logic
  * Enhanced test coverage for edge cases

- useDragSort.test.tsx (36 lines):
  * Simplified test cases
  * Better mock implementation
  * Improved assertions

- useImportExport tests (16 lines total):
  * Updated for new error handling
  * Enhanced test coverage

- useMcpValidation.test.tsx (23 lines):
  * Updated validation test cases
  * Better coverage of error scenarios

- useProviderActions.test.tsx (48 lines):
  * Extensive updates for hook refactoring
  * New test cases for provider operations
  * Enhanced mock data

- useSettings.test.tsx (12 lines):
  * New test cases for auto-launch
  * Enhanced settings state testing
  * Better async operation coverage

Integration Tests:
- App.test.tsx (41 lines):
  * Updated for new routing logic
  * Enhanced navigation testing
  * Better component integration coverage

- SettingsDialog.test.tsx (88 lines):
  * Complete rewrite for SettingsPage
  * New integration test scenarios
  * Enhanced user workflow testing

Mock Infrastructure:
- handlers.ts (117 lines):
  * Major updates for MSW handlers
  * New handlers for auto-launch commands
  * Enhanced error simulation
  * Better request/response mocking

- state.ts (37 lines):
  * Updated mock state structure
  * New state for auto-launch
  * Enhanced state reset functionality

- tauriMocks.ts (10 lines):
  * Updated mock implementations
  * Better type safety

- server.ts & testQueryClient.ts:
  * Minor cleanup (2 lines removed)

Test Infrastructure Improvements:
- Better test isolation
- Enhanced mock data consistency
- Improved async operation testing
- Better error scenario coverage
- Enhanced integration test patterns

Coverage Improvements:
- Net increase of 195 lines of test code
- Better coverage of edge cases
- Enhanced error path testing
- Improved integration test scenarios
- Better mock infrastructure

All tests now pass with the refactored components while maintaining
comprehensive coverage of functionality and edge cases.
This commit is contained in:
YoVinchen
2025-11-21 11:12:06 +08:00
parent 3f470de608
commit f1b0fa2985
19 changed files with 425 additions and 230 deletions

View File

@@ -46,14 +46,17 @@ export const handlers = [
return success(getCurrentProviderId(app));
}),
http.post(`${TAURI_ENDPOINT}/update_providers_sort_order`, async ({ request }) => {
const { updates = [], app } = await withJson<{
updates: { id: string; sortIndex: number }[];
app: AppId;
}>(request);
updateSortOrder(app, updates);
return success(true);
}),
http.post(
`${TAURI_ENDPOINT}/update_providers_sort_order`,
async ({ request }) => {
const { updates = [], app } = await withJson<{
updates: { id: string; sortIndex: number }[];
app: AppId;
}>(request);
updateSortOrder(app, updates);
return success(true);
},
),
http.post(`${TAURI_ENDPOINT}/update_tray_menu`, () => success(true)),
@@ -119,21 +122,27 @@ export const handlers = [
return success(true);
}),
http.post(`${TAURI_ENDPOINT}/upsert_mcp_server_in_config`, async ({ request }) => {
const { app, id, spec } = await withJson<{
app: AppId;
id: string;
spec: McpServer;
}>(request);
upsertMcpServer(app, id, spec);
return success(true);
}),
http.post(
`${TAURI_ENDPOINT}/upsert_mcp_server_in_config`,
async ({ request }) => {
const { app, id, spec } = await withJson<{
app: AppId;
id: string;
spec: McpServer;
}>(request);
upsertMcpServer(app, id, spec);
return success(true);
},
),
http.post(`${TAURI_ENDPOINT}/delete_mcp_server_in_config`, async ({ request }) => {
const { app, id } = await withJson<{ app: AppId; id: string }>(request);
deleteMcpServer(app, id);
return success(true);
}),
http.post(
`${TAURI_ENDPOINT}/delete_mcp_server_in_config`,
async ({ request }) => {
const { app, id } = await withJson<{ app: AppId; id: string }>(request);
deleteMcpServer(app, id);
return success(true);
},
),
http.post(`${TAURI_ENDPOINT}/restart_app`, () => success(true)),
@@ -145,21 +154,27 @@ export const handlers = [
return success(true);
}),
http.post(`${TAURI_ENDPOINT}/set_app_config_dir_override`, async ({ request }) => {
const { path } = await withJson<{ path: string | null }>(request);
setAppConfigDirOverrideState(path ?? null);
return success(true);
}),
http.post(
`${TAURI_ENDPOINT}/set_app_config_dir_override`,
async ({ request }) => {
const { path } = await withJson<{ path: string | null }>(request);
setAppConfigDirOverrideState(path ?? null);
return success(true);
},
),
http.post(`${TAURI_ENDPOINT}/get_app_config_dir_override`, () =>
success(getAppConfigDirOverride()),
),
http.post(`${TAURI_ENDPOINT}/apply_claude_plugin_config`, async ({ request }) => {
const { official } = await withJson<{ official: boolean }>(request);
setSettings({ enableClaudePluginIntegration: !official });
return success(true);
}),
http.post(
`${TAURI_ENDPOINT}/apply_claude_plugin_config`,
async ({ request }) => {
const { official } = await withJson<{ official: boolean }>(request);
setSettings({ enableClaudePluginIntegration: !official });
return success(true);
},
),
http.post(`${TAURI_ENDPOINT}/get_config_dir`, async ({ request }) => {
const { app } = await withJson<{ app: AppId }>(request);
@@ -168,14 +183,17 @@ export const handlers = [
http.post(`${TAURI_ENDPOINT}/is_portable_mode`, () => success(false)),
http.post(`${TAURI_ENDPOINT}/select_config_directory`, async ({ request }) => {
const { defaultPath, default_path } = await withJson<{
defaultPath?: string;
default_path?: string;
}>(request);
const initial = defaultPath ?? default_path;
return success(initial ? `${initial}/picked` : "/mock/selected-dir");
}),
http.post(
`${TAURI_ENDPOINT}/select_config_directory`,
async ({ request }) => {
const { defaultPath, default_path } = await withJson<{
defaultPath?: string;
default_path?: string;
}>(request);
const initial = defaultPath ?? default_path;
return success(initial ? `${initial}/picked` : "/mock/selected-dir");
},
),
http.post(`${TAURI_ENDPOINT}/pick_directory`, async ({ request }) => {
const { defaultPath, default_path } = await withJson<{
@@ -190,14 +208,17 @@ export const handlers = [
success("/mock/import-settings.json"),
),
http.post(`${TAURI_ENDPOINT}/import_config_from_file`, async ({ request }) => {
const { filePath } = await withJson<{ filePath: string }>(request);
if (!filePath) {
return success({ success: false, message: "Missing file" });
}
setSettings({ language: "en" });
return success({ success: true, backupId: "backup-123" });
}),
http.post(
`${TAURI_ENDPOINT}/import_config_from_file`,
async ({ request }) => {
const { filePath } = await withJson<{ filePath: string }>(request);
if (!filePath) {
return success({ success: false, message: "Missing file" });
}
setSettings({ language: "en" });
return success({ success: true, backupId: "backup-123" });
},
),
http.post(`${TAURI_ENDPOINT}/export_config_to_file`, async ({ request }) => {
const { filePath } = await withJson<{ filePath: string }>(request);