Files
makelore/tests/unit/main-layout-module-gate.test.tsx
inman 80e8386fa6
Some checks failed
Electron E2E / Electron E2E (macos-latest) (push) Has been cancelled
Electron E2E / Electron E2E (ubuntu-latest) (push) Has been cancelled
Electron E2E / Electron E2E (windows-latest) (push) Has been cancelled
feat: update Makelore modules and conversations
2026-07-31 10:08:41 +08:00

55 lines
1.9 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import { MemoryRouter, Route, Routes } from 'react-router-dom';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import { MainLayout } from '@/components/layout/MainLayout';
import { useOpencodeStore } from '@/stores/opencode';
import { useProjectConfigStore } from '@/stores/project-config';
import { createProjectConfig } from '../../shared/project-config';
vi.mock('@/components/layout/Sidebar', () => ({ Sidebar: () => <aside data-testid="sidebar-stub" /> }));
vi.mock('@/components/layout/TitleBar', () => ({ TitleBar: () => <header data-testid="titlebar-stub" /> }));
function renderLayout(path: string) {
render(
<MemoryRouter initialEntries={[path]}>
<Routes>
<Route element={<MainLayout />}>
<Route path="*" element={<div data-testid="route-content" />} />
</Route>
</Routes>
</MemoryRouter>,
);
}
describe('MainLayout module isolation', () => {
beforeEach(() => {
const project = {
id: 'local-project',
path: '/tmp/local-project',
name: 'local-project',
createdAt: '',
updatedAt: '',
lastOpenedAt: '',
};
useOpencodeStore.setState({ activeProject: project });
useProjectConfigStore.setState({
configsByProjectId: {
[project.id]: { ...createProjectConfig(), initialized: false },
},
});
});
it('does not overlay the local project initialization gate on AI painting', () => {
renderLayout('/image-canvas');
expect(screen.getByTestId('route-content')).toBeVisible();
expect(screen.queryByTestId('project-initialization-gate')).not.toBeInTheDocument();
});
it('keeps the local project initialization gate for AI programming routes', () => {
renderLayout('/opencode-chat');
expect(screen.getByTestId('project-initialization-gate')).toBeVisible();
});
});