fix(projects): preserve conservative identity boundaries

This commit is contained in:
Mohamed Boudra
2026-07-29 11:13:07 +00:00
parent 7b9787a75d
commit ad0939dfbb
4 changed files with 86 additions and 12 deletions

View File

@@ -219,6 +219,20 @@ describe("deriveProjectKey", () => {
);
});
test("preserves an explicit git user on generic SSH hosts", () => {
const rootPath = path.resolve("repo");
const derive = (remoteUrl: string) =>
deriveProjectKey({
rootPath,
remoteUrl,
worktreeRoot: rootPath,
mainRepoRoot: null,
});
expect(derive("git@example.com:repo.git")).not.toBe(derive("example.com:repo.git"));
expect(derive("ssh://git@example.com/repo.git")).not.toBe(derive("ssh://example.com/repo.git"));
});
test("normalizes equivalent absolute SSH remote forms", () => {
const rootPath = path.resolve("repo");
const derive = (remoteUrl: string) =>
@@ -317,7 +331,7 @@ describe("deriveProjectKey", () => {
worktreeRoot: rootPath,
mainRepoRoot: null,
}),
).toBe("remote:[2001:db8::1]/getpaseo/paseo.git");
).toBe("remote:git@[2001:db8::1]/getpaseo/paseo.git");
});
test("includes the selected path within a repository", () => {
@@ -422,6 +436,19 @@ describe("deriveProjectKey", () => {
).toBe("remote:github.com/getpaseo/paseo#subdir:Packages/App");
});
test("stabilizes host-local Windows paths across equivalent spellings", () => {
const derive = (rootPath: string) =>
deriveProjectKey({
rootPath,
remoteUrl: null,
worktreeRoot: null,
mainRepoRoot: null,
serverId: "host-a",
});
expect(derive("C:\\Users\\Paseo\\Repo")).toBe(derive("c:/users/paseo/repo/."));
});
test.skipIf(process.platform === "win32")(
"preserves a selected subproject reached through a symlink",
() => {

View File

@@ -1,4 +1,4 @@
import { resolve } from "node:path";
import { resolve, win32 } from "node:path";
import { FORGE_DEFINITIONS } from "@getpaseo/protocol/forge-manifest";
import { getRealpathAwareRelativePath } from "../utils/path.js";
@@ -33,10 +33,11 @@ export function deriveProjectKey(input: {
const remoteKey = deriveRemoteProjectKey(input.remoteUrl);
const selectedPath = deriveSelectedPath(input.rootPath, input.worktreeRoot);
if (!remoteKey) {
const localPath =
const localPathParts =
selectedPath && input.mainRepoRoot
? resolve(input.mainRepoRoot, selectedPath)
: resolve(input.mainRepoRoot ?? input.rootPath);
? [input.mainRepoRoot, selectedPath]
: [input.mainRepoRoot ?? input.rootPath];
const localPath = resolveLocalProjectPath(...localPathParts);
return input.serverId
? `host:${input.serverId.length}:${input.serverId}:path:${localPath}`
: localPath;
@@ -47,6 +48,12 @@ export function deriveProjectKey(input: {
: remoteKey;
}
function resolveLocalProjectPath(...parts: string[]): string {
return parts.some(looksLikeWindowsPath)
? win32.resolve(...parts).toLowerCase()
: resolve(...parts);
}
function deriveSelectedPath(rootPath: string, worktreeRoot: string | null): string | null {
if (!worktreeRoot) return null;
return getRealpathAwareRelativePath(worktreeRoot, rootPath) || null;
@@ -105,7 +112,7 @@ function parseScpRemote(remoteUrl: string): RemoteLocation | null {
host: normalizedHost,
path: remotePath,
transport: null,
user: user && user !== "git" ? user : null,
user: user && (user !== "git" || !CLOUD_FORGE_HOSTS.has(host.toLowerCase())) ? user : null,
preserveLeadingSlash,
decodePercentEncoding: false,
stripDotGitSuffix: CLOUD_FORGE_HOSTS.has(host.toLowerCase()),
@@ -128,10 +135,7 @@ function parseUrlRemote(remoteUrl: string): RemoteLocation | null {
host,
path: remotePath,
transport: forgeHost || isSsh ? null : parsed.protocol.toLowerCase(),
user:
isSsh && !forgeHost && parsed.username && parsed.username !== "git"
? decodeUrlComponent(parsed.username)
: null,
user: isSsh && !forgeHost && parsed.username ? decodeUrlComponent(parsed.username) : null,
preserveLeadingSlash,
decodePercentEncoding: true,
stripDotGitSuffix: forgeHost !== null,