mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* feat(app): expose archive for every workspace Workspace actions now archive one workspace by id. The daemon remains responsible for backing-specific cleanup, including removing a managed worktree only after its final workspace is archived. * refactor(app): clarify archive descriptor name * fix(app): preserve workspace archive safety * fix(app): allow archive without upstream * refactor(app): remove stale archive callback * test(app): cover workspace archive ownership
98 lines
3.8 KiB
TypeScript
98 lines
3.8 KiB
TypeScript
import { existsSync } from "node:fs";
|
|
import { expect, test } from "./fixtures";
|
|
import { gotoAppShell } from "./helpers/app";
|
|
import {
|
|
archiveWorkspaceFromDaemon,
|
|
connectNewWorkspaceDaemonClient,
|
|
createWorktreeViaDaemon,
|
|
openProjectViaDaemon,
|
|
} from "./helpers/new-workspace";
|
|
import { getServerId } from "./helpers/server-id";
|
|
import { archiveWorkspaceFromSidebar, expectWorkspaceAbsentFromSidebar } from "./helpers/sidebar";
|
|
import { createTempGitRepo } from "./helpers/workspace";
|
|
import { waitForSidebarHydration, waitForWorkspaceInSidebar } from "./helpers/workspace-ui";
|
|
|
|
test.describe("Workspace archive with worktree backing", () => {
|
|
let client: Awaited<ReturnType<typeof connectNewWorkspaceDaemonClient>>;
|
|
let tempRepo: { path: string; cleanup: () => Promise<void> };
|
|
const createdWorktreeDirectories = new Set<string>();
|
|
|
|
test.describe.configure({ retries: 1, timeout: 120_000 });
|
|
|
|
test.beforeEach(async () => {
|
|
client = await connectNewWorkspaceDaemonClient();
|
|
tempRepo = await createTempGitRepo("wt-archive-");
|
|
});
|
|
|
|
test.afterEach(async () => {
|
|
for (const directory of createdWorktreeDirectories) {
|
|
await archiveWorkspaceFromDaemon(client, directory).catch(() => undefined);
|
|
}
|
|
createdWorktreeDirectories.clear();
|
|
await client?.close().catch(() => undefined);
|
|
await tempRepo?.cleanup().catch(() => undefined);
|
|
});
|
|
|
|
test("archiving the final workspace removes its managed worktree directory", async ({ page }) => {
|
|
const serverId = getServerId();
|
|
await openProjectViaDaemon(client, tempRepo.path);
|
|
const worktree = await createWorktreeViaDaemon(client, {
|
|
cwd: tempRepo.path,
|
|
slug: `archive-${Date.now()}`,
|
|
});
|
|
createdWorktreeDirectories.add(worktree.workspaceDirectory);
|
|
expect(existsSync(worktree.workspaceDirectory)).toBe(true);
|
|
|
|
await gotoAppShell(page);
|
|
await waitForSidebarHydration(page);
|
|
await waitForWorkspaceInSidebar(page, { serverId, workspaceId: worktree.workspaceId });
|
|
|
|
await archiveWorkspaceFromSidebar(page, worktree.workspaceId);
|
|
|
|
await expectWorkspaceAbsentFromSidebar(page, worktree.workspaceId);
|
|
await expect
|
|
.poll(() => existsSync(worktree.workspaceDirectory), { timeout: 30_000 })
|
|
.toBe(false);
|
|
});
|
|
|
|
test("a managed worktree remains until its last workspace is archived", async ({ page }) => {
|
|
const serverId = getServerId();
|
|
await openProjectViaDaemon(client, tempRepo.path);
|
|
const first = await createWorktreeViaDaemon(client, {
|
|
cwd: tempRepo.path,
|
|
slug: `shared-archive-${Date.now()}`,
|
|
});
|
|
createdWorktreeDirectories.add(first.workspaceDirectory);
|
|
|
|
const siblingPayload = await client.createWorkspace({
|
|
source: {
|
|
kind: "directory",
|
|
path: first.workspaceDirectory,
|
|
},
|
|
title: "Second workspace",
|
|
});
|
|
if (!siblingPayload.workspace) {
|
|
throw new Error(siblingPayload.error ?? "Failed to create a workspace on the worktree");
|
|
}
|
|
const sibling = siblingPayload.workspace;
|
|
expect(sibling.workspaceKind).toBe("worktree");
|
|
expect(sibling.workspaceDirectory).toBe(first.workspaceDirectory);
|
|
|
|
await gotoAppShell(page);
|
|
await waitForSidebarHydration(page);
|
|
await waitForWorkspaceInSidebar(page, { serverId, workspaceId: first.workspaceId });
|
|
await waitForWorkspaceInSidebar(page, { serverId, workspaceId: sibling.id });
|
|
|
|
await archiveWorkspaceFromSidebar(page, first.workspaceId);
|
|
|
|
await expectWorkspaceAbsentFromSidebar(page, first.workspaceId);
|
|
expect(existsSync(first.workspaceDirectory)).toBe(true);
|
|
await waitForWorkspaceInSidebar(page, { serverId, workspaceId: sibling.id });
|
|
|
|
await archiveWorkspaceFromSidebar(page, sibling.id);
|
|
|
|
await expectWorkspaceAbsentFromSidebar(page, sibling.id);
|
|
await expect.poll(() => existsSync(first.workspaceDirectory), { timeout: 30_000 }).toBe(false);
|
|
});
|
|
});
|