mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
The router was using memory history with initial entry "/" which caused all routes to render the index component regardless of the browser URL. Changes: - Use browser history when not in Electron (for e2e tests and dev) - Use memory history only in Electron environment - Update test utilities to use persist version 2 to match app store This fixes e2e tests that navigate directly to /board, /context, /spec 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
122 lines
3.3 KiB
TypeScript
122 lines
3.3 KiB
TypeScript
import { Page } from "@playwright/test";
|
|
import * as fs from "fs";
|
|
import * as path from "path";
|
|
|
|
/**
|
|
* Resolve the workspace root - handle both running from apps/app and from root
|
|
*/
|
|
export function getWorkspaceRoot(): string {
|
|
const cwd = process.cwd();
|
|
if (cwd.includes("apps/app")) {
|
|
return path.resolve(cwd, "../..");
|
|
}
|
|
return cwd;
|
|
}
|
|
|
|
const WORKSPACE_ROOT = getWorkspaceRoot();
|
|
const FIXTURE_PATH = path.join(WORKSPACE_ROOT, "test/fixtures/projectA");
|
|
const SPEC_FILE_PATH = path.join(FIXTURE_PATH, ".automaker/app_spec.txt");
|
|
const CONTEXT_PATH = path.join(FIXTURE_PATH, ".automaker/context");
|
|
|
|
// Original spec content for resetting between tests
|
|
const ORIGINAL_SPEC_CONTENT = `<app_spec>
|
|
<name>Test Project A</name>
|
|
<description>A test fixture project for Playwright testing</description>
|
|
<tech_stack>
|
|
<item>TypeScript</item>
|
|
<item>React</item>
|
|
</tech_stack>
|
|
</app_spec>
|
|
`;
|
|
|
|
/**
|
|
* Reset the fixture's app_spec.txt to original content
|
|
*/
|
|
export function resetFixtureSpec(): void {
|
|
const dir = path.dirname(SPEC_FILE_PATH);
|
|
if (!fs.existsSync(dir)) {
|
|
fs.mkdirSync(dir, { recursive: true });
|
|
}
|
|
fs.writeFileSync(SPEC_FILE_PATH, ORIGINAL_SPEC_CONTENT);
|
|
}
|
|
|
|
/**
|
|
* Reset the context directory to empty state
|
|
*/
|
|
export function resetContextDirectory(): void {
|
|
if (fs.existsSync(CONTEXT_PATH)) {
|
|
fs.rmSync(CONTEXT_PATH, { recursive: true });
|
|
}
|
|
fs.mkdirSync(CONTEXT_PATH, { recursive: true });
|
|
}
|
|
|
|
/**
|
|
* Create a context file directly on disk (for test setup)
|
|
*/
|
|
export function createContextFileOnDisk(filename: string, content: string): void {
|
|
const filePath = path.join(CONTEXT_PATH, filename);
|
|
fs.writeFileSync(filePath, content);
|
|
}
|
|
|
|
/**
|
|
* Check if a context file exists on disk
|
|
*/
|
|
export function contextFileExistsOnDisk(filename: string): boolean {
|
|
const filePath = path.join(CONTEXT_PATH, filename);
|
|
return fs.existsSync(filePath);
|
|
}
|
|
|
|
/**
|
|
* Set up localStorage with a project pointing to our test fixture
|
|
* Note: In CI, setup wizard is also skipped via NEXT_PUBLIC_SKIP_SETUP env var
|
|
*/
|
|
export async function setupProjectWithFixture(
|
|
page: Page,
|
|
projectPath: string = FIXTURE_PATH
|
|
): Promise<void> {
|
|
await page.addInitScript((pathArg: string) => {
|
|
const mockProject = {
|
|
id: "test-project-fixture",
|
|
name: "projectA",
|
|
path: pathArg,
|
|
lastOpened: new Date().toISOString(),
|
|
};
|
|
|
|
const mockState = {
|
|
state: {
|
|
projects: [mockProject],
|
|
currentProject: mockProject,
|
|
currentView: "board",
|
|
theme: "dark",
|
|
sidebarOpen: true,
|
|
apiKeys: { anthropic: "", google: "" },
|
|
chatSessions: [],
|
|
chatHistoryOpen: false,
|
|
maxConcurrency: 3,
|
|
},
|
|
version: 2, // Must match app-store.ts persist version
|
|
};
|
|
|
|
localStorage.setItem("automaker-storage", JSON.stringify(mockState));
|
|
|
|
// Also mark setup as complete (fallback for when NEXT_PUBLIC_SKIP_SETUP isn't set)
|
|
const setupState = {
|
|
state: {
|
|
isFirstRun: false,
|
|
setupComplete: true,
|
|
currentStep: "complete",
|
|
skipClaudeSetup: false,
|
|
},
|
|
version: 2, // Must match app-store.ts persist version
|
|
};
|
|
localStorage.setItem("automaker-setup", JSON.stringify(setupState));
|
|
}, projectPath);
|
|
}
|
|
|
|
/**
|
|
* Get the fixture path
|
|
*/
|
|
export function getFixturePath(): string {
|
|
return FIXTURE_PATH;
|
|
}
|