import assert from "node:assert/strict"; import crypto from "node:crypto"; import fs from "node:fs"; import path from "node:path"; import test from "node:test"; const root = path.resolve(import.meta.dirname, "../../.."); const manifest = JSON.parse(fs.readFileSync(path.join(root, "tests/golden/M12-01G/manifest.json"), "utf8")); const sha256 = (file) => crypto.createHash("sha256").update(fs.readFileSync(path.join(root, file))).digest("hex"); test("M12-01G binds the production transaction, browser suite, and migration inputs", () => { assert.equal(manifest.task, "M12-01G"); assert.equal(manifest.enablingTask, true); assert.equal(manifest.parityStateChange, false); assert.equal(manifest.nextTask, "M12-01H"); assert.deepEqual(manifest.transaction.faultPoints, ["AFTER_TARGET_PUT", "AFTER_SOURCE_DELETE"]); assert.equal(manifest.transaction.failureCode, "STORAGE_TRANSACTION"); for (const artifact of Object.values(manifest.artifacts)) { assert.equal(sha256(artifact.path), artifact.sha256, artifact.path); } });