65 lines
4.3 KiB
JavaScript
65 lines
4.3 KiB
JavaScript
import { readFile, writeFile } from 'node:fs/promises'
|
|
import { resolve } from 'node:path'
|
|
|
|
const root = resolve(new URL('..', import.meta.url).pathname)
|
|
const load = (path) => readFile(resolve(root, path), 'utf8').then(JSON.parse)
|
|
const outputPath = resolve(root, 'config/freecad-property-file-promotion.json')
|
|
const [inventory, success, failure, mutation, roundTrip, chrome, semantics, progress] = await Promise.all([
|
|
load('config/freecad-property-file-inventory.json'),
|
|
load('config/freecad-property-file-success.json'),
|
|
load('config/freecad-property-file-failure.json'),
|
|
load('config/freecad-property-file-mutation.json'),
|
|
load('config/freecad-property-file-roundtrip.json'),
|
|
load('config/chrome-property-file-verification.json'),
|
|
load('config/freecad-native-property-semantics.json'),
|
|
load('config/freecad-follow-up-task-progress.json'),
|
|
])
|
|
const fail = (message) => { throw new Error(`FreeCAD PropertyFile promotion generation failed: ${message}`) }
|
|
const requiredCompletedPhases = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']
|
|
const completed = new Map(progress.completedTasks?.map((entry) => [entry.id, entry]) ?? [])
|
|
for (const phase of requiredCompletedPhases) if (!completed.has(`PROP-app-propertyfile-${phase}`)) fail(`phase ${phase} is not completed in the evidence ledger`)
|
|
if (inventory.status !== 'pass' || inventory.propertyType !== 'App::PropertyFile' || inventory.recordCount !== 16 || inventory.records?.filter(({ valueModel }) => valueModel?.writable === true).length !== 16) fail('inventory evidence is invalid')
|
|
for (const [name, artifact] of Object.entries({ success, failure, mutation, roundTrip, chrome })) if (artifact.status !== 'pass') fail(`${name} evidence is not passing`)
|
|
const propertyType = semantics.types?.find(({ typeId }) => typeId === 'App::PropertyFile')
|
|
if (propertyType?.support !== 'native-editable-codec' || propertyType.recordCount !== 16 || propertyType.objectTypeCount !== 12 || propertyType.statusNames?.length !== 0) fail('global property semantics did not promote App::PropertyFile')
|
|
const opaque = semantics.supportSummary?.['opaque-fcstd-proxy']
|
|
const editable = semantics.supportSummary?.['native-editable-codec']
|
|
if (opaque?.typeCount !== 45 || opaque.recordCount !== 455 || editable?.typeCount !== 35 || editable.recordCount !== 4372) fail('global property support summary is not synchronized')
|
|
if (roundTrip.classification?.zeroUnknownDrift !== true || roundTrip.classification.externalResourceBoundary !== 'project-relative-path; asset bytes remain external to FCStd' || chrome.persistence?.loadedType !== 'App::PropertyFile' || chrome.persistence.fcstdElement !== 'String' || chrome.persistence.fcstdValue !== 'project-files/chrome-updated.obj' || chrome.resource?.released !== true || chrome.release?.workerTerminated !== true) fail('round-trip or browser closure evidence is incomplete')
|
|
|
|
const report = {
|
|
schemaVersion: 1,
|
|
status: 'pass',
|
|
taskId: 'PROP-app-propertyfile-I',
|
|
baseline: semantics.baseline,
|
|
propertyType: 'App::PropertyFile',
|
|
recordCount: 16,
|
|
phaseEvidence: Object.fromEntries(requiredCompletedPhases.map((phase) => [phase, completed.get(`PROP-app-propertyfile-${phase}`).evidence])),
|
|
promotion: {
|
|
from: inventory.classification,
|
|
to: propertyType.support,
|
|
facadeValueModel: 'safe-project-relative-path-string-with-native-string-fcstd-payload',
|
|
writableRecords: 16,
|
|
objectTypeCount: propertyType.objectTypeCount,
|
|
fcstdElement: chrome.persistence.fcstdElement,
|
|
nativeRoundTripValue: roundTrip.classification.resavedValue,
|
|
browserRoundTripValue: chrome.persistence.loadedValue,
|
|
externalResourceBoundary: roundTrip.classification.externalResourceBoundary,
|
|
zeroUnknownDrift: roundTrip.classification.zeroUnknownDrift,
|
|
},
|
|
exactBlockerSync: {
|
|
nativeEditableTypes: editable.typeCount,
|
|
nativeEditableRecords: editable.recordCount,
|
|
opaqueTypes: opaque.typeCount,
|
|
opaqueRecords: opaque.recordCount,
|
|
exactPromotionReady: semantics.exactPromotionReady,
|
|
exactBlocker: semantics.exactBlocker,
|
|
},
|
|
systemExact: false,
|
|
generatedAt: new Date().toISOString(),
|
|
}
|
|
await writeFile(outputPath, `${JSON.stringify(report, null, 2)}\n`)
|
|
console.log(JSON.stringify({ status: 'freecad-property-file-promotion-generated', output: 'config/freecad-property-file-promotion.json', promotion: report.promotion, exactBlockerSync: report.exactBlockerSync }, null, 2))
|
|
|
|
|