chore: import DH V2 D5.6.4 production baseline

This commit is contained in:
DH V2
2026-09-05 10:12:35 -03:00
commit 82213e72f5
757 changed files with 84218 additions and 0 deletions
@@ -0,0 +1,32 @@
import assert from 'node:assert/strict';
import { readFile } from 'node:fs/promises';
import { resolve } from 'node:path';
import test from 'node:test';
async function source(relativePath: string): Promise<string> {
return readFile(resolve(process.cwd(), 'src', relativePath), 'utf8');
}
test('D5.3.14 protects the inventory dossier with all related read permissions', async () => {
const controller = await source('asset-master/assets.controller.ts');
assert.match(controller, /@Get\(':id\/dossier'\)/);
assert.match(controller, /'assets\.read'/);
assert.match(controller, /'inspections\.read'/);
assert.match(controller, /'inspection_acts\.read'/);
assert.match(controller, /'inspection_findings\.read'/);
assert.match(controller, /'inspection_evidence\.read'/);
assert.match(controller, /'inspection_communications\.read'/);
});
test('D5.3.14 assembles a chronological dossier without duplicating business data', async () => {
const service = await source('asset-master/assets.service.ts');
assert.match(service, /inspection_visit_assets/);
assert.match(service, /inspection_act_assets/);
assert.match(service, /inspection_findings/);
assert.match(service, /inspection_finding_evidence/);
assert.match(service, /inspection_finding_communications/);
assert.match(service, /asset_source_documents/);
assert.match(service, /asset_versions/);
assert.match(service, /timeline\.sort/);
assert.doesNotMatch(service, /INSERT INTO inspection_/);
});