mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
- Refactored test utilities by consolidating and organizing helper functions into dedicated modules for better maintainability and clarity. - Introduced new utility functions for interactions, waiting, and element retrieval, improving the readability of test cases. - Updated context view tests to utilize the new utility functions, enhancing test reliability and reducing code duplication. - Removed deprecated utility functions and ensured all tests are aligned with the new structure.
122 lines
3.2 KiB
TypeScript
122 lines
3.2 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: 0,
|
|
};
|
|
|
|
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: 0,
|
|
};
|
|
localStorage.setItem("automaker-setup", JSON.stringify(setupState));
|
|
}, projectPath);
|
|
}
|
|
|
|
/**
|
|
* Get the fixture path
|
|
*/
|
|
export function getFixturePath(): string {
|
|
return FIXTURE_PATH;
|
|
}
|