Archived
113 lines
4.6 KiB
TypeScript
113 lines
4.6 KiB
TypeScript
import { mkdir, writeFile } from "node:fs/promises";
|
|
import { join } from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import type { Project, Workspace } from "./types.js";
|
|
import { appTestContext, registerAppTestHooks } from "./app.testSupport.js";
|
|
|
|
registerAppTestHooks();
|
|
|
|
describe("buildApp project routes", () => {
|
|
it("adds, lists, and closes projects through the HTTP contract", async () => {
|
|
const addResponse = await appTestContext.app.inject({
|
|
method: "POST",
|
|
url: "/api/projects",
|
|
payload: { name: "Example", path: appTestContext.projectDir, create: true },
|
|
});
|
|
|
|
expect(addResponse.statusCode).toBe(200);
|
|
const project = addResponse.json<Project>();
|
|
expect(project).toMatchObject({ name: "Example", path: appTestContext.projectDir });
|
|
expect(project.id).not.toBe("");
|
|
|
|
const listResponse = await appTestContext.app.inject({ method: "GET", url: "/api/projects" });
|
|
expect(listResponse.statusCode).toBe(200);
|
|
expect(listResponse.json<Project[]>()).toEqual([project]);
|
|
|
|
const closeResponse = await appTestContext.app.inject({ method: "DELETE", url: `/api/projects/${project.id}` });
|
|
expect(closeResponse.statusCode).toBe(200);
|
|
expect(closeResponse.json()).toEqual({ closed: true });
|
|
|
|
const emptyListResponse = await appTestContext.app.inject({ method: "GET", url: "/api/projects" });
|
|
expect(emptyListResponse.json<Project[]>()).toEqual([]);
|
|
});
|
|
|
|
it("returns stable errors for invalid project requests", async () => {
|
|
const addResponse = await appTestContext.app.inject({
|
|
method: "POST",
|
|
url: "/api/projects",
|
|
payload: { name: "Missing", path: join(appTestContext.tempDir, "missing") },
|
|
});
|
|
|
|
expect(addResponse.statusCode).toBe(400);
|
|
expect(addResponse.json()).toHaveProperty("error");
|
|
|
|
const closeResponse = await appTestContext.app.inject({ method: "DELETE", url: "/api/projects/does-not-exist" });
|
|
expect(closeResponse.statusCode).toBe(404);
|
|
expect(closeResponse.json()).toEqual({ error: "Project not found" });
|
|
});
|
|
|
|
it("lists a non-git project as a single workspace", async () => {
|
|
const addResponse = await appTestContext.app.inject({
|
|
method: "POST",
|
|
url: "/api/projects",
|
|
payload: { name: "Plain", path: appTestContext.projectDir, create: true },
|
|
});
|
|
const project = addResponse.json<Project>();
|
|
|
|
const workspacesResponse = await appTestContext.app.inject({ method: "GET", url: `/api/projects/${project.id}/workspaces` });
|
|
|
|
expect(workspacesResponse.statusCode).toBe(200);
|
|
expect(workspacesResponse.json<Workspace[]>()).toEqual([
|
|
expect.objectContaining({
|
|
projectId: project.id,
|
|
path: appTestContext.projectDir,
|
|
label: "Plain",
|
|
isMain: true,
|
|
isGitRepo: false,
|
|
isGitWorktree: false,
|
|
}),
|
|
]);
|
|
});
|
|
|
|
it("exposes the default upload config on workspace responses", async () => {
|
|
const addResponse = await appTestContext.app.inject({
|
|
method: "POST",
|
|
url: "/api/projects",
|
|
payload: { name: "Upload Defaults", path: appTestContext.projectDir, create: true },
|
|
});
|
|
const project = addResponse.json<Project>();
|
|
|
|
const workspacesResponse = await appTestContext.app.inject({ method: "GET", url: `/api/projects/${project.id}/workspaces` });
|
|
|
|
expect(workspacesResponse.statusCode).toBe(200);
|
|
expect(workspacesResponse.json<Workspace[]>()).toEqual([
|
|
expect.objectContaining({
|
|
projectId: project.id,
|
|
effectiveConfig: { uploads: { defaultFolder: ".pi-web/uploads" } },
|
|
}),
|
|
]);
|
|
});
|
|
|
|
it("lets project-local upload config override global upload config on workspace responses", async () => {
|
|
appTestContext.piWebConfig = { uploads: { defaultFolder: "global-uploads" } };
|
|
const addResponse = await appTestContext.app.inject({
|
|
method: "POST",
|
|
url: "/api/projects",
|
|
payload: { name: "Project Upload Defaults", path: appTestContext.projectDir, create: true },
|
|
});
|
|
const project = addResponse.json<Project>();
|
|
await mkdir(join(appTestContext.projectDir, ".pi-web"), { recursive: true });
|
|
await writeFile(join(appTestContext.projectDir, ".pi-web", "config.json"), `${JSON.stringify({ version: 1, uploads: { defaultFolder: "project-uploads" } }, null, 2)}\n`);
|
|
|
|
const workspacesResponse = await appTestContext.app.inject({ method: "GET", url: `/api/projects/${project.id}/workspaces` });
|
|
|
|
expect(workspacesResponse.statusCode).toBe(200);
|
|
expect(workspacesResponse.json<Workspace[]>()).toEqual([
|
|
expect.objectContaining({
|
|
projectId: project.id,
|
|
effectiveConfig: { uploads: { defaultFolder: "project-uploads" } },
|
|
}),
|
|
]);
|
|
});
|
|
});
|