mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-11 15:07:26 +08:00
Merge PR #1330: gbrain-valid source ids
This commit is contained in:
@@ -108,6 +108,47 @@ describe("gstack-gbrain-sync CLI", () => {
|
||||
rmSync(home, { recursive: true, force: true });
|
||||
});
|
||||
|
||||
it("derived source ids are gbrain-valid (≤32 chars, alnum + interior hyphens, no dots) for any remote", () => {
|
||||
// gbrain enforces source ids to be 1-32 lowercase alnum chars with optional interior
|
||||
// hyphens. Pre-fix, the slug came from canonicalizeRemote() with only `/` and
|
||||
// whitespace stripped — leaving dots from hostnames (`github.com`) and no length cap.
|
||||
// For `github.com/<org>/<repo>`, the id was `gstack-code-github.com-<org>-<repo>`,
|
||||
// which fails validation on both counts. This test exercises the derivation against
|
||||
// controlled remotes by spawning the CLI in a temp git repo.
|
||||
const cases = [
|
||||
"https://github.com/radubach/platform.git", // dot in hostname, total > 32 with old slug
|
||||
"git@github.com:garrytan/gstack.git", // SCP-style remote
|
||||
"https://gitlab.example.com/team/proj.git", // multi-dot host, non-github
|
||||
"https://github.com/some-very-long-org-name/some-very-long-repo-name.git", // forces hash-truncate
|
||||
];
|
||||
const VALID_ID = /^[a-z0-9](?:[a-z0-9-]{0,30}[a-z0-9])?$/;
|
||||
for (const remote of cases) {
|
||||
const home = makeTestHome();
|
||||
const gstackHome = join(home, ".gstack");
|
||||
mkdirSync(gstackHome, { recursive: true });
|
||||
const repo = mkdtempSync(join(tmpdir(), "gstack-source-id-repo-"));
|
||||
spawnSync("git", ["init", "--quiet", "-b", "main"], { cwd: repo });
|
||||
spawnSync("git", ["remote", "add", "origin", remote], { cwd: repo });
|
||||
|
||||
const r = spawnSync("bun", [SCRIPT, "--dry-run", "--code-only", "--quiet"], {
|
||||
encoding: "utf-8",
|
||||
timeout: 60000,
|
||||
cwd: repo,
|
||||
env: { ...process.env, HOME: home, GSTACK_HOME: gstackHome },
|
||||
});
|
||||
expect(r.status).toBe(0);
|
||||
const m = (r.stdout || "").match(/gbrain sources add (\S+)/);
|
||||
expect(m).not.toBeNull();
|
||||
const id = m![1];
|
||||
expect(id.length).toBeLessThanOrEqual(32);
|
||||
expect(id).toMatch(VALID_ID);
|
||||
expect(id.startsWith("gstack-code-")).toBe(true);
|
||||
|
||||
rmSync(repo, { recursive: true, force: true });
|
||||
rmSync(home, { recursive: true, force: true });
|
||||
}
|
||||
});
|
||||
|
||||
it("dry-run does NOT acquire the lock file (lock is for write paths only)", () => {
|
||||
const home = makeTestHome();
|
||||
const gstackHome = join(home, ".gstack");
|
||||
|
||||
Reference in New Issue
Block a user