Files
core/tests/engine/fast-check-partial-union-precedence.test.js
John Dvorak 717ae1031e initial commit: @arbiter/core authorization engine with js-rigor hardening
Zanzibar-style authorization graph engine (direct/chain/TTU/defeasible/
binary modes, condensed snapshots, value relations) with 39 rigor test
campaigns. Includes fixes for snapshot binary writer/reader format
mismatch (snapshot-of-snapshot corruption), possibility write-boundary
validation, empty-graph snapshot serialization, relation lookup cache
direction collision, config-redefinition cache invalidation, binary
threshold semantics, defeasible compiled routing, and comparator
reason whitelisting.
2026-07-31 13:44:06 -07:00

65 lines
2.2 KiB
JavaScript

import { describe, test } from 'node:test';
import assert from 'node:assert/strict';
import fc from 'fast-check';
import { Arbiter } from '../../src/core/Arbiter.js';
describe('Fast-check: partial overlay vs union overlays', () => {
test('union overlays cannot revoke access', () => {
fc.assert(
fc.property(
fc.integer({ min: 1, max: 5 }),
fc.integer({ min: 1, max: 5 }),
fc.array(
fc.record({
user: fc.integer({ min: 0, max: 4 }),
doc: fc.integer({ min: 0, max: 4 })
}),
{ minLength: 1, maxLength: 20 }
),
fc.array(
fc.record({
user: fc.integer({ min: 0, max: 4 }),
doc: fc.integer({ min: 0, max: 4 })
}),
{ minLength: 1, maxLength: 20 }
),
(userCount, docCount, baseEdges, unionRemovals) => {
const arbiter = new Arbiter();
for (let u = 0; u < userCount; u++) arbiter.addNode(`user:${u}`, 'user');
for (let d = 0; d < docCount; d++) arbiter.addNode(`doc:${d}`, 'doc');
arbiter.setRelationConfig('viewer', { type: 'direct' });
const baseSet = new Set();
for (const edge of baseEdges) {
const u = edge.user % userCount;
const d = edge.doc % docCount;
arbiter.addRelation(`user:${u}`, 'viewer', `doc:${d}`, 1.0);
baseSet.add(`${u}:${d}`);
}
const partialGraph = {
overlayMode: 'union',
relations: unionRemovals.map((edge) => ({
src: `user:${edge.user % userCount}`,
relation: 'viewer',
dst: `doc:${edge.doc % docCount}`,
possibility: 1.0
}))
};
for (let u = 0; u < userCount; u++) {
for (let d = 0; d < docCount; d++) {
const result = arbiter.check(`user:${u}`, 'viewer', `doc:${d}`, { partialGraph });
const key = `${u}:${d}`;
if (baseSet.has(key)) {
assert.ok(result.possibility > 0, 'Union overlay must not revoke base access');
}
}
}
}
),
{ numRuns: 30 }
);
});
});