Files
windmill/cli/test/workspace_conflicts.test.ts
2026-02-18 16:35:49 +00:00

195 lines
6.7 KiB
TypeScript

import { assertEquals, assertRejects } from "https://deno.land/std@0.224.0/assert/mod.ts";
import { addWorkspace, allWorkspaces } from "../workspace.ts";
import { withTestConfig, clearTestRemotes } from "./test_config_helpers.ts";
// Test workspace conflict detection
Deno.test("addWorkspace: prevents duplicate workspace names", async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
// Add first workspace
const workspace1 = {
name: "test_workspace",
remote: "http://localhost:8001/",
workspaceId: "workspace1",
token: "token1"
};
await addWorkspace(workspace1, { force: true, configDir: testConfigDir });
// Try to add workspace with same name but different details
const workspace2 = {
name: "test_workspace", // Same name
remote: "http://localhost:8002/", // Different remote
workspaceId: "workspace2", // Different ID
token: "token2"
};
// Should throw error in non-interactive mode without force
await assertRejects(
() => addWorkspace(workspace2, { configDir: testConfigDir }),
Error,
"Workspace name conflict. Use --force to overwrite or choose a different name."
);
// Should succeed with force flag
await addWorkspace(workspace2, { force: true, configDir: testConfigDir });
// Verify the workspace was overwritten
const workspaces = await allWorkspaces(testConfigDir);
assertEquals(workspaces.length, 1);
assertEquals(workspaces[0].name, "test_workspace");
assertEquals(workspaces[0].remote, "http://localhost:8002/");
assertEquals(workspaces[0].workspaceId, "workspace2");
});
});
Deno.test({
name: "addWorkspace: prevents duplicate (remote, workspaceId) tuples",
ignore: true, // TODO: Investigate addWorkspace behavior - not throwing expected error
fn: async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
// Add first workspace
const workspace1 = {
name: "first_workspace",
remote: "http://localhost:8001/",
workspaceId: "test",
token: "token1"
};
await addWorkspace(workspace1, { force: true, configDir: testConfigDir });
// Try to add workspace with same (remote, workspaceId) but different name
const workspace2 = {
name: "second_workspace", // Different name
remote: "http://localhost:8001/", // Same remote
workspaceId: "test", // Same workspaceId
token: "token2"
};
// Should throw error in non-interactive mode without force
await assertRejects(
() => addWorkspace(workspace2, { configDir: testConfigDir }),
Error,
'Backend constraint violation: (http://localhost:8001/, test) already exists as "first_workspace". Use --force to overwrite.'
);
// Should succeed with force flag (overwrites first workspace)
await addWorkspace(workspace2, { force: true, configDir: testConfigDir });
// Verify the first workspace was removed and second was added
const workspaces = await allWorkspaces(testConfigDir);
assertEquals(workspaces.length, 1);
assertEquals(workspaces[0].name, "second_workspace");
assertEquals(workspaces[0].remote, "http://localhost:8001/");
assertEquals(workspaces[0].workspaceId, "test");
});
}});
Deno.test("addWorkspace: allows same workspace (name, remote, workspaceId) with token update", async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
// Add first workspace
const workspace1 = {
name: "same_workspace",
remote: "http://localhost:8001/",
workspaceId: "test",
token: "old_token"
};
await addWorkspace(workspace1, { force: true, configDir: testConfigDir });
// Add same workspace with updated token
const workspace2 = {
name: "same_workspace", // Same name
remote: "http://localhost:8001/", // Same remote
workspaceId: "test", // Same workspaceId
token: "new_token" // Different token
};
// Should succeed without force (just token update)
await addWorkspace(workspace2, { configDir: testConfigDir });
// Verify token was updated
const workspaces = await allWorkspaces(testConfigDir);
assertEquals(workspaces.length, 1);
assertEquals(workspaces[0].name, "same_workspace");
assertEquals(workspaces[0].token, "new_token");
});
});
Deno.test("addWorkspace: returns true on successful add", async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
const workspace = {
name: "return_test",
remote: "http://localhost:8001/",
workspaceId: "test",
token: "token1"
};
const result = await addWorkspace(workspace, { force: true, configDir: testConfigDir });
assertEquals(result, true);
});
});
Deno.test("addWorkspace: returns true when force-overwriting conflict", async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
const workspace1 = {
name: "force_test",
remote: "http://localhost:8001/",
workspaceId: "workspace1",
token: "token1"
};
await addWorkspace(workspace1, { force: true, configDir: testConfigDir });
const workspace2 = {
name: "force_test",
remote: "http://localhost:8002/",
workspaceId: "workspace2",
token: "token2"
};
const result = await addWorkspace(workspace2, { force: true, configDir: testConfigDir });
assertEquals(result, true);
});
});
Deno.test("addWorkspace: allows different workspaces on different remotes", async () => {
await withTestConfig(async (testConfigDir) => {
await clearTestRemotes(testConfigDir);
// Add workspace on first remote
const workspace1 = {
name: "workspace_remote1",
remote: "http://localhost:8001/",
workspaceId: "test",
token: "token1"
};
await addWorkspace(workspace1, { force: true, configDir: testConfigDir });
// Add workspace with same workspaceId on different remote (should be allowed)
const workspace2 = {
name: "workspace_remote2",
remote: "http://localhost:8002/", // Different remote
workspaceId: "test", // Same workspaceId (OK on different remote)
token: "token2"
};
// Should succeed (different remotes)
await addWorkspace(workspace2, { configDir: testConfigDir });
// Verify both workspaces exist
const workspaces = await allWorkspaces(testConfigDir);
assertEquals(workspaces.length, 2);
const names = workspaces.map(w => w.name).sort();
assertEquals(names, ["workspace_remote1", "workspace_remote2"]);
});
});