bind JD projection to rebased architecture source

This commit is contained in:
冰朔 2026-08-10 22:36:28 +08:00
commit 6942cda9ef
7 changed files with 33 additions and 10 deletions

View file

@ -18,7 +18,13 @@ test("current architecture makes one human one independently operated node canon
assert.equal(architecture.node_sovereignty.principle, "ONE_HUMAN_ONE_INDEPENDENT_NODE");
assert.equal(architecture.node_sovereignty.canonical_user_root_nodes, 1);
assert.equal(architecture.node_sovereignty.maximum_human_owners_per_user_node, 1);
assert.equal(architecture.read_order[0], architecture.node_sovereignty.architecture_page);
const sovereigntyIndex = architecture.read_order.indexOf(
architecture.node_sovereignty.architecture_page,
);
const systemBodyIndex = architecture.read_order.indexOf(
architecture.digital_bingshuo_system_body.architecture_page,
);
assert.ok(sovereigntyIndex >= 0 && sovereigntyIndex < systemBodyIndex);
});
test("platform hosting, pooled tenancy, private-data custody, and user workload concurrency are all zero", () => {