test(frontend): add comprehensive test coverage for Phase 3
CI / CD Pipeline / build (push) Successful in 5m38s
CI / CD Pipeline / deploy (push) Failing after 11m12s

- Add AI component tests (ContextConfigEditor, PromptEditor, RuntimeParametersPanel, SandboxTabs, VersionHistory)
- Add layout component tests (GlobalSearch, NotificationsDropdown, ProjectSwitcher, Sidebar, UserMenu)
- Update vitest.setup.ts for better test configuration
- Update .gitignore to exclude test artifacts
- All 722 tests passing
This commit is contained in:
2026-06-14 20:53:13 +07:00
parent 9833ce23ce
commit 1d246353a8
13 changed files with 654 additions and 1 deletions
@@ -0,0 +1,66 @@
// File: frontend/components/admin/ai/__tests__/context-config-editor.test.tsx
// Change Log:
// - 2026-06-14: สร้างใหม่สำหรับ Phase 3 Coverage
import { render, screen } from '@testing-library/react';
import { describe, it, expect, vi, beforeEach } from 'vitest';
import ContextConfigEditor from '../ContextConfigEditor';
// Mock services
vi.mock('@/lib/services/project.service', () => ({
projectService: {
getAll: vi.fn(),
},
}));
vi.mock('@/lib/services/contract.service', () => ({
contractService: {
getAll: vi.fn(),
},
}));
import { projectService } from '@/lib/services/project.service';
import { contractService } from '@/lib/services/contract.service';
describe('ContextConfigEditor', () => {
const mockOnSave = vi.fn();
const mockProjects = [
{ publicId: '019505a1-7c3e-7000-8000-abc123def456', projectName: 'Project A' },
];
const mockContracts = [
{ publicId: '019505a1-7c3e-7000-8000-xyz789uvw012', contractName: 'Contract A', project: { publicId: '019505a1-7c3e-7000-8000-abc123def456' } },
];
beforeEach(() => {
vi.clearAllMocks();
vi.mocked(projectService.getAll).mockResolvedValue(mockProjects);
vi.mocked(contractService.getAll).mockResolvedValue(mockContracts);
});
it('ควร render form สำหรับตั้งค่าบริบทข้อมูล', () => {
render(
<ContextConfigEditor
initialConfig={null}
onSave={mockOnSave}
isSaving={false}
/>
);
expect(screen.getByText('การตั้งค่าบริบทข้อมูล (Context Configuration)')).toBeInTheDocument();
});
it('ควร disabled ปุ่มบันทึกเมื่อ isSaving=true', () => {
render(
<ContextConfigEditor
initialConfig={null}
onSave={mockOnSave}
isSaving={true}
/>
);
const saveButton = screen.queryByText('กำลังบันทึก...');
if (saveButton) {
expect(saveButton).toBeDisabled();
}
});
});