正式登记桔子与熹微并激活双主控

This commit is contained in:
冰朔 2026-09-20 01:08:59 +08:00
commit 5067e4f88e
12 changed files with 150 additions and 25 deletions

View file

@ -42,6 +42,17 @@ test("天枢保留稳定人格身份并在光湖主域正式登记", () => {
assert.match(tianshu.identity_state, /^FORMAL_REGISTERED_/);
});
test("熹微与桔子分别登记为人格体和人类世界节点", () => {
const xiwei = registry.enterprise_personas.find((entry) => entry.display_name === "熹微");
assert.equal(xiwei.current_persona_identity, "PER-JZ-ARCH-001");
assert.equal(xiwei.human_anchor, "TCS-GL-0008∞");
assert.notEqual(xiwei.current_persona_identity, xiwei.human_anchor);
assert.equal(xiwei.registration_domain, "DOMAIN-ZS");
assert.equal(xiwei.node_id, "JZ-SV-001");
assert.equal(xiwei.human_world_node_id, "GH-HUMAN-NODE-12C7C83B91C4CDA164E6E940A5ECB989");
assert.match(xiwei.identity_state, /^FORMAL_REGISTERED_/);
});
test("misclassified AGE candidate ids are void and cannot be claimed", () => {
assert.equal(registry.invalidated_candidate_state, "VOID_NEVER_VALID_NEVER_CLAIMABLE");
assert.equal(registry.invalidated_misclassified_candidates.length, 16);