fix(framework): treat an exact operator entry as a file, not a subtree (#1194)
ci/woodpecker/pr/ci Pipeline was successful

Ultron's REQUEST_CHANGES finding B1 on PR #1195: a bare operator manifest entry
such as `tools/git` was matched as an implicit directory prefix, so declaring one
directory silently exempted every framework file beneath it from drift detection.
A drift blind spot is exactly what #1194 exists to close.

An exact entry is now a file carve-out. Subtree ownership must be declared
explicitly as `dir/**`. The same rule is applied on both sides of the Bash/TS
parity boundary: `_mo_matches` in tools/_lib/manifest.sh drops its prefix clause,
and `resolveOwnership` in src/framework/manifest.ts routes operator globs through
a new `matchesOperatorGlob` that requires equality when the pattern has no `*`.

Verified by measurement rather than by report. The new regression declares
operator entry `tools/git`, drifts `tools/git/guard.sh` beneath it, and asserts
the checker exits 1 with `STALE git/guard.sh`:

  at c59a55f8 (broken):  FAILED (failures=1) -- rc 0, summary `stale=0`
  at this tree (fixed):  Ran 6 tests, OK

The failure at the old head is the point. A fixture that passes on the broken
tree measures nothing, and this file's neighbour (#1174) has spent ten rounds
proving it.

Also two shellcheck-only mechanical fixes in manifest.sh: SC1087 (brace the
expansion before `[`) and SC2155 (split `local` from the assignment so the
return status is not masked).

Not validated here: the full package typecheck could not be run in this
workspace -- node_modules is absent and the host filesystem is full. CI covers it.

Reviewed-by: gate-ultron-01 (finding B1)
This commit is contained in:
2026-08-13 05:28:05 -05:00
parent c59a55f8f2
commit 3d7953671c
4 changed files with 46 additions and 4 deletions
@@ -69,7 +69,7 @@ _manifest_glob_to_ere() {
out="$out.*" out="$out.*"
fi fi
else else
out="$out[^/]*" out="${out}[^/]*"
fi fi
else else
case "$c" in case "$c" in
@@ -87,7 +87,8 @@ _manifest_compile_one() {
local norm; norm="$(_manifest_norm "$1")" local norm; norm="$(_manifest_norm "$1")"
[[ -n "$norm" ]] || return 0 [[ -n "$norm" ]] || return 0
if [[ "$norm" == *"*"* ]]; then if [[ "$norm" == *"*"* ]]; then
local re="^$(_manifest_glob_to_ere "$norm")\$" local re
re="^$(_manifest_glob_to_ere "$norm")\$"
if [[ "$2" == F ]]; then if [[ "$2" == F ]]; then
_MF_KIND+=(re); _MF_EXACT+=(""); _MF_RE+=("$re") _MF_KIND+=(re); _MF_EXACT+=(""); _MF_RE+=("$re")
else else
@@ -183,7 +184,10 @@ _mo_matches() {
for (( i = 0; i < n; i++ )); do for (( i = 0; i < n; i++ )); do
if [[ "${_MO_KIND[i]}" == exact ]]; then if [[ "${_MO_KIND[i]}" == exact ]]; then
pat="${_MO_EXACT[i]}" pat="${_MO_EXACT[i]}"
[[ "$path" == "$pat" || "$path" == "$pat/"* ]] && return 0 # Operator exact entries are file carve-outs, not implicit directory
# prefixes. Subtree ownership must be declared explicitly as `dir/**`;
# otherwise one bare directory entry can hide all drift beneath it.
[[ "$path" == "$pat" ]] && return 0
else else
re="${_MO_RE[i]}" re="${_MO_RE[i]}"
[[ "$path" =~ $re ]] && return 0 [[ "$path" =~ $re ]] && return 0
@@ -65,6 +65,16 @@ class FrameworkDriftCheckTests(unittest.TestCase):
self.assertEqual(result.returncode, 0, result.stderr) self.assertEqual(result.returncode, 0, result.stderr)
self.assertIn("stale=0 not-installed=0 unsafe-alias=0", result.stdout) self.assertIn("stale=0 not-installed=0 unsafe-alias=0", result.stdout)
def test_exact_operator_directory_does_not_hide_framework_drift_beneath_it(self) -> None:
self.install_matching()
(self.installed / "git" / "guard.sh").write_text("drift-hidden-by-directory-entry\n")
self.write_manifest("tools/git\n")
result = self.run_check()
self.assertEqual(result.returncode, 1, result.stdout + result.stderr)
self.assertIn("STALE git/guard.sh", result.stdout)
def test_manifest_is_required_and_policy_changes_take_effect(self) -> None: def test_manifest_is_required_and_policy_changes_take_effect(self) -> None:
self.install_matching() self.install_matching()
(self.installed / "git" / "guard.sh").write_text("operator-divergence\n") (self.installed / "git" / "guard.sh").write_text("operator-divergence\n")
@@ -146,6 +146,21 @@ describe('resolveOwnership (deny-wins + fail-safe)', () => {
expect(resolveOwnership(m, 'tools/git/pr-create.sh')).toBe('framework'); expect(resolveOwnership(m, 'tools/git/pr-create.sh')).toBe('framework');
}); });
it('limits an exact operator carve-out to that path while requiring /** for subtrees', () => {
const exact: FrameworkManifest = {
framework: ['tools/**'],
operator: ['tools/git'],
};
expect(resolveOwnership(exact, 'tools/git')).toBe('operator');
expect(resolveOwnership(exact, 'tools/git/guard.sh')).toBe('framework');
const subtree: FrameworkManifest = {
framework: ['tools/**'],
operator: ['tools/git/**'],
};
expect(resolveOwnership(subtree, 'tools/git/guard.sh')).toBe('operator');
});
it('framework-declared paths resolve to framework', () => { it('framework-declared paths resolve to framework', () => {
expect(resolveOwnership(m, 'guides/E2E-DELIVERY.md')).toBe('framework'); expect(resolveOwnership(m, 'guides/E2E-DELIVERY.md')).toBe('framework');
expect(resolveOwnership(m, 'CONSTITUTION.md')).toBe('framework'); expect(resolveOwnership(m, 'CONSTITUTION.md')).toBe('framework');
+14 -1
View File
@@ -154,12 +154,25 @@ export function matchesAny(globs: readonly string[], relPath: string): boolean {
return globs.some((g) => matchGlob(g, relPath)); return globs.some((g) => matchGlob(g, relPath));
} }
/**
* Operator entries without wildcards are exact file carve-outs. Treating them
* as directory prefixes would let one bare entry hide an entire framework
* subtree from reconciliation and drift detection. Operator subtree ownership
* remains explicit through `dir/**`.
*/
function matchesOperatorGlob(glob: string, relPath: string): boolean {
const pattern = normalizeRel(glob);
if (pattern === '') return false;
if (!pattern.includes('*')) return normalizeRel(relPath) === pattern;
return matchGlob(pattern, relPath);
}
/** /**
* Resolve ownership of a mosaic-home-relative path (deny-wins / fail-safe): * Resolve ownership of a mosaic-home-relative path (deny-wins / fail-safe):
* operator globs win, then framework globs, else operator by default. * operator globs win, then framework globs, else operator by default.
*/ */
export function resolveOwnership(manifest: FrameworkManifest, relPath: string): Ownership { export function resolveOwnership(manifest: FrameworkManifest, relPath: string): Ownership {
if (matchesAny(manifest.operator, relPath)) return 'operator'; if (manifest.operator.some((glob) => matchesOperatorGlob(glob, relPath))) return 'operator';
if (matchesAny(manifest.framework, relPath)) return 'framework'; if (matchesAny(manifest.framework, relPath)) return 'framework';
return 'operator'; return 'operator';
} }