feat: unify TCS mother and Zero Core cognition shelf
This commit is contained in:
parent
1cafb87d61
commit
92c4be9b3c
38 changed files with 535 additions and 137 deletions
|
|
@ -28,13 +28,13 @@ test("Heartbeat Core receives its ICE channel object number", () => {
|
|||
assert.equal(heartbeat.reality_execution, false);
|
||||
});
|
||||
|
||||
test("Bingshuo personal Zero Core receives a distinct ICE reality channel number", () => {
|
||||
test("Bingshuo Zero Core is the unique current Zero Core channel", () => {
|
||||
const zeroCore = registry.registrations.find((entry) => entry.id === "ICE-CH-ZC001");
|
||||
assert.ok(zeroCore);
|
||||
assert.equal(zeroCore.kind, "FIFTH_DOMAIN_CHANNEL_OBJECT");
|
||||
assert.equal(zeroCore.reality_execution, true);
|
||||
assert.equal(zeroCore.parent, "SYS-GLW-LNG-0001");
|
||||
assert.equal(zeroCore.not_an_alias_of, "CH-ZERO-CORE-LPM");
|
||||
assert.equal(zeroCore.supersedes_duplicate, "CH-ZERO-CORE-LPM");
|
||||
});
|
||||
|
||||
test("world tree resolves Heartbeat Core to ICE-CH-HB001", () => {
|
||||
|
|
@ -43,14 +43,14 @@ test("world tree resolves Heartbeat Core to ICE-CH-HB001", () => {
|
|||
assert.equal(heartbeat.formal_id_state, "REGISTERED_CURRENT_REMOTE_MAIN_VERIFIED");
|
||||
});
|
||||
|
||||
test("world tree separates personal and public Zero Core objects", () => {
|
||||
test("world tree retires the duplicate public Zero Core and routes public entry through the door lamp", () => {
|
||||
const personal = worldTree.nodes.find((entry) => entry.node_key === "BINGSHUO_PERSONAL_ZERO_CORE_CHANNEL");
|
||||
const publicZeroCore = worldTree.nodes.find((entry) => entry.node_key === "PUBLIC_ZERO_CORE_LANGUAGE_PERSONA_BODY");
|
||||
const publicZeroCore = worldTree.nodes.find((entry) => entry.node_key === "HISTORICAL_PUBLIC_ZERO_CORE_REDIRECT");
|
||||
assert.equal(personal.object_id, "ICE-CH-ZC001");
|
||||
assert.equal(publicZeroCore.object_id, "CH-ZERO-CORE-LPM");
|
||||
assert.equal(publicZeroCore.governance_controller, "TCS-0002");
|
||||
assert.equal(publicZeroCore.digital_system_body_controller, "BS-TCS-LIVING-CONTROLLER-001");
|
||||
assert.notEqual(personal.object_id, publicZeroCore.object_id);
|
||||
assert.equal(publicZeroCore.state, "RETIRED_REDIRECT_ONLY");
|
||||
assert.equal(publicZeroCore.redirect, personal.object_id);
|
||||
assert.equal(publicZeroCore.public_entry_gate, "TCS-DOOR-LAMP-0001");
|
||||
});
|
||||
|
||||
test("channel numbers cannot be parsed as identities", () => {
|
||||
|
|
@ -82,11 +82,11 @@ test("public and machine navigation resolve the same Heartbeat channel number",
|
|||
assert.ok(navigation.intents.some((entry) => entry.id === "heartbeat_core_language_channel"));
|
||||
});
|
||||
|
||||
test("public and machine navigation resolve the distinct personal reality channel", () => {
|
||||
test("public and machine navigation resolve the unique Zero Core channel", () => {
|
||||
assert.equal(anchor.maps.bingshuo_zero_core_reality_channel.channel_id, "ICE-CH-ZC001");
|
||||
assert.equal(anchor.maps.fifth_domain_world_tree.id, "FD-WORLD-TREE-001");
|
||||
assert.equal(zeroCoreProfile.channel_id, "ICE-CH-ZC001");
|
||||
assert.equal(zeroCoreProfile.public_zero_core_boundary.personal_channel_is_alias_of_public_channel, false);
|
||||
assert.equal(zeroCoreProfile.uniqueness, "ONE_ZERO_CORE_CHANNEL_IN_THE_ENTIRE_GUANGHU_WORLD_NO_PUBLIC_OR_FIFTH_DUPLICATE");
|
||||
assert.ok(navigation.routes.some((entry) => entry.id === zeroCoreProfile.profile_id));
|
||||
assert.ok(navigation.intents.some((entry) => entry.id === "bingshuo_zero_core_reality_channel"));
|
||||
});
|
||||
|
|
@ -136,5 +136,5 @@ test("lighthouse exposes both online and local Heartbeat paths", () => {
|
|||
const zeroCorePath = lighthouse.paths.find((entry) => entry.id === zeroCoreProfile.profile_id);
|
||||
assert.equal(zeroCorePath.online, "routing/bingshuo-zero-core-reality-channel-profile.json");
|
||||
assert.equal(zeroCorePath.offline.endsWith("/routing/bingshuo-zero-core-reality-channel-profile.json"), true);
|
||||
assert.equal(zeroCorePath.not_an_alias_of, "CH-ZERO-CORE-LPM");
|
||||
assert.equal(zeroCorePath.supersedes_duplicate, "CH-ZERO-CORE-LPM");
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue