Files
Genarrative/apps/ai-game-creator-shell/tests/designWorkspaceDebug.test.tsx
T
lhk229 34616e1631
Project CI / Repository checks (pull_request) Successful in 2m42s
Project CI / Frontend tests (pull_request) Successful in 3m15s
Project CI / Backend tests (pull_request) Successful in 7m2s
Project CI / Native shell tests (pull_request) Successful in 19m28s
修复 CI 调试工作区测试
格式化 design runtime 调试命令

为 debug fixture 测试显式开启并清理 debug 环境变量
2026-09-12 05:21:21 +00:00

63 lines
2.0 KiB
TypeScript

// @vitest-environment jsdom
import {
cleanup,
fireEvent,
render,
screen,
waitFor,
within,
} from '@testing-library/react';
import React from 'react';
import { afterEach, expect, it, vi } from 'vitest';
import { DesignWorkspacePanel } from '../src/features/project-workspace/DesignWorkspacePanel';
vi.mock('../src/components/ChatMarkdownMessage', () => ({
ChatMarkdownMessage: () => null,
}));
afterEach(() => {
cleanup();
vi.unstubAllEnvs();
delete window.__TAURI__;
});
it('prepares debug fixtures from the header and refreshes the phase and files without a manual refresh', async () => {
vi.stubEnv('VITE_GENARRATIVE_AGC_DESIGN_DEBUG', '1');
let prepared = false;
const invoke = vi.fn(async (command: string) => {
if (command === 'debug_fast_forward_design_session') {
prepared = true;
return { activeRuntime: 'design' };
}
if (command === 'hydrate_design_agent_session') {
return { session: { currentPhase: prepared ? 'consultant' : 'concept' } };
}
if (command === 'list_design_workspace') {
return prepared ? [{ path: 'debug.md', kind: 'file', size: 10 }] : [];
}
throw new Error(`Unexpected command: ${command}`);
});
window.__TAURI__ = { core: { invoke } } as unknown as typeof window.__TAURI__;
render(<DesignWorkspacePanel projectPath="test-project" />);
await waitFor(() =>
expect(
screen
.getByRole('button', { name: '刷新策划工作区' })
.hasAttribute('disabled'),
).toBe(false),
);
const header = screen
.getByRole('heading', { name: '概念设计' })
.closest('header')!;
fireEvent.click(
within(header).getByRole('button', { name: '快速准备做成游戏测试' }),
);
await screen.findByRole('heading', { name: '顾问' });
await screen.findByRole('button', { name: 'debug.md' });
expect(invoke).toHaveBeenCalledWith('debug_fast_forward_design_session', {
projectPath: 'test-project',
targetPhase: 'consultant',
});
});