Format authored monorepo code with pinned language formatters

This commit is contained in:
Timothy J. Aveni
2026-09-15 15:23:24 -07:00
parent a174faea5c
commit 00fc2b9ff1
69 changed files with 5135 additions and 3306 deletions
+54 -15
View File
@@ -1,28 +1,67 @@
import test from "node:test";
import assert from "node:assert/strict";
import { contentDigest, validateMigrationCatalog, selectMigrationPath, type MigrationCatalog } from "../src/capability-model/index.js";
const before = { fields: ["name"] }, after = { fields: ["first", "last"] };
const from = contentDigest(before), to = contentDigest(after);
const catalog = (): MigrationCatalog => ({ schemaVersion: 1, contracts: { [from]: before, [to]: after }, migrations: [{
id: "split-name", scopeId: "person-name", from, to,
implementation: { exportId: "migrate-name", file: "src/migrate-name.ts", digest: contentDigest("implementation") }, predecessors: [],
ports: [{ name: "source", view: "old", access: ["read"], contractDigest: from }, { name: "target", view: "new", access: ["write"], contractDigest: to }],
}] });
import {
contentDigest,
validateMigrationCatalog,
selectMigrationPath,
type MigrationCatalog,
} from "../src/capability-model/index.js";
const before = { fields: ["name"] },
after = { fields: ["first", "last"] };
const from = contentDigest(before),
to = contentDigest(after);
const catalog = (): MigrationCatalog => ({
schemaVersion: 1,
contracts: { [from]: before, [to]: after },
migrations: [
{
id: "split-name",
scopeId: "person-name",
from,
to,
implementation: {
exportId: "migrate-name",
file: "src/migrate-name.ts",
digest: contentDigest("implementation"),
},
predecessors: [],
ports: [
{ name: "source", view: "old", access: ["read"], contractDigest: from },
{ name: "target", view: "new", access: ["write"], contractDigest: to },
],
},
],
});
test("published migrations retain exact old contracts and explicit local bindings", () => {
const value = validateMigrationCatalog(catalog(), new Set(["migrate-name"]));
const selection = { scopeId: "person-name", from, to, path: ["split-name"], bindings: { source: "old-slot", target: "new-slot" } };
const selection = {
scopeId: "person-name",
from,
to,
path: ["split-name"],
bindings: { source: "old-slot", target: "new-slot" },
};
const result = selectMigrationPath(value, selection);
assert.equal(result[0].alreadyApplied, false);
assert.equal(selectMigrationPath(value, selection, new Map([["split-name", result[0].digest]]))[0].alreadyApplied, true);
const changed = catalog(); changed.migrations[0].implementation.digest = contentDigest("new code");
assert.throws(() => selectMigrationPath(changed, selection, new Map([["split-name", result[0].digest]])), /different code/);
assert.equal(
selectMigrationPath(value, selection, new Map([["split-name", result[0].digest]]))[0].alreadyApplied,
true,
);
const changed = catalog();
changed.migrations[0].implementation.digest = contentDigest("new code");
assert.throws(
() => selectMigrationPath(changed, selection, new Map([["split-name", result[0].digest]])),
/different code/,
);
assert.throws(() => selectMigrationPath(value, { ...selection, path: [] }), /does not cover/);
assert.throws(() => selectMigrationPath(value, { ...selection, bindings: {} }), /Missing local/);
});
test("old migration views cannot be writable and contract hashes are verified", () => {
const value = catalog(); value.migrations[0].ports[0].access = ["write"];
const value = catalog();
value.migrations[0].ports[0].access = ["write"];
assert.throws(() => validateMigrationCatalog(value), /read-only/);
const corrupt = catalog(); corrupt.contracts[from] = {};
const corrupt = catalog();
corrupt.contracts[from] = {};
assert.throws(() => validateMigrationCatalog(corrupt), /digest mismatch/);
});
@@ -31,6 +70,6 @@ test("migration history rejects cycles and non-boolean compatibility promises",
cyclic.migrations[0].predecessors = ["split-name"];
assert.throws(() => validateMigrationCatalog(cyclic), /Cyclic/);
const misleading = catalog();
(misleading.migrations[0] as unknown as {preservesOldReaders: string}).preservesOldReaders = "false";
(misleading.migrations[0] as unknown as { preservesOldReaders: string }).preservesOldReaders = "false";
assert.throws(() => validateMigrationCatalog(misleading), /must be booleans/);
});