Files
gstack/test/gstack-config-key-locale.test.ts
Garry TanandClaude Fable 5 05e6f1cfe5 test: phantom-hooks heal coverage — incident facsimile, per-item safety, lock, canonical tripwires
- gstack-settings-hook-schema-aware: 16 new cases — identity re-point (tag
  restore), foreign-basename rejection, mixed-entry per-item safety for
  add-event/remove-source/--all, prune-stale modes incl. bash-prefix +
  Windows-backslash + spaced-path idempotence, duplicate collapse preferring
  the tagged twin, plan_tune_hooks:no split, backup-on-change no-churn,
  fail-closed corrupt-JSON for every mutator, stale-lock takeover,
  fresh-foreign-lock skip, two-writer concurrency smoke, and an INCIDENT
  FACSIMILE replaying the exact 2026-08-17 production damage (6/3/2 entries,
  mixed tags, live-ephemeral Stop) healing to 2/1/1 canonical.
- NEW setup-hook-canonical-paths: static tripwires — canonical-only resolver
  (no $SOURCE_GSTACK_DIR anywhere in it), heal-before-guards ordering,
  unsuppressed heal output, ${VAR:-0} counter idiom, shared-prelude
  concatenation at every bun call site, KNOWN_HOOKS completeness vs setup's
  registrations, uninstall cleanup-before-deletion ordering, defect-class
  warning present.
- setup-plan-tune-hooks-noninteractive: PT_EXPLICIT pins + `gstack-config
  has` provenance + has-subcommand behavior (env-resolution, malformed keys).
- auq-error-fallback-hook: registration + both-teardown wiring (previously
  untested).
- uninstall: behavioral ordering test running the INSTALLED copy from inside
  the root it deletes.
- setup-windows-fallback / gstack-config-key-locale: pins updated for the new
  HOOK_CMD shape and the third C-locale validator.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-17 12:42:02 -07:00

84 lines
3.0 KiB
TypeScript

/**
* Locale-independent key validation tests for bin/gstack-config.
*
* POSIX bracket ranges such as a-z follow the active collation order. Under
* GNU grep with tr_TR.UTF-8, that excludes the ASCII letter i and silently
* breaks most stored preferences. macOS BSD grep does not reproduce the bug,
* so the source-level tripwire pins the C-locale boundary on every platform.
*/
import { afterEach, beforeEach, describe, expect, test } from "bun:test";
import { spawnSync } from "child_process";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
const ROOT = path.resolve(import.meta.dir, "..");
const CONFIG = path.join(ROOT, "bin", "gstack-config");
let stateRoot: string;
function run(args: string[]) {
const result = spawnSync(CONFIG, args, {
encoding: "utf8",
// GSTACK_SETUP_RUNNING suppresses `set skill_prefix`'s auto-relink side
// effect. Without it, this test invokes the REPO's gstack-config, whose
// auto-relink resolves the install dir from its own path — i.e. the repo —
// and gstack-patch-names rewrites all 52 tracked SKILL.md files to
// gstack-prefixed names, poisoning every downstream test that reads the
// live tree (observed in the free-tests CI job). Relink behavior itself is
// covered in isolation by test/relink.test.ts's mock install.
env: { ...process.env, GSTACK_STATE_ROOT: stateRoot, GSTACK_SETUP_RUNNING: "1" },
});
return {
status: result.status ?? -1,
stdout: result.stdout ?? "",
stderr: result.stderr ?? "",
};
}
beforeEach(() => {
stateRoot = fs.mkdtempSync(path.join(os.tmpdir(), "gstack-config-locale-"));
});
afterEach(() => {
fs.rmSync(stateRoot, { recursive: true, force: true });
});
describe("gstack-config key validation is locale-independent", () => {
test("get, has, and set all validate ASCII ranges under the C locale", () => {
const source = fs.readFileSync(CONFIG, "utf8");
const guardedValidators = source.match(
/LC_ALL=C grep -qE '\^\[a-zA-Z0-9_\]\+\(@\[a-zA-Z0-9\]\+\)\?\$'/g,
);
expect(guardedValidators).toHaveLength(3);
});
test("round-trips existing keys that contain i", () => {
expect(run(["set", "skill_prefix", "true"]).status).toBe(0);
const get = run(["get", "skill_prefix"]);
expect(get.status).toBe(0);
expect(get.stdout).toBe("true");
});
test("accepts an existing endpoint-scoped ASCII key", () => {
expect(run(["set", "brain_trust_policy@local", "personal"]).status).toBe(0);
const get = run(["get", "brain_trust_policy@local"]);
expect(get.status).toBe(0);
expect(get.stdout).toBe("personal");
});
test("continues to reject non-ASCII keys", () => {
const set = run(["set", "skïll_prefix", "true"]);
expect(set.status).toBe(1);
expect(set.stderr).toContain("key must contain only alphanumeric characters");
const get = run(["get", "skïll_prefix"]);
expect(get.status).toBe(1);
expect(get.stderr).toContain("key must contain only alphanumeric characters");
});
});