正式登记Awen线天枢人格体

This commit is contained in:
冰朔 2026-09-20 00:49:34 +08:00
commit cad45afe02
9 changed files with 62 additions and 11 deletions

View file

@ -30,6 +30,18 @@ test("小新保留稳定人格身份,且不混用小幸运的人类编号", ()
assert.equal(xiaoxin.work_responsibility_domain, "DOMAIN-SUB");
});
test("天枢保留稳定人格身份并在光湖主域正式登记", () => {
const tianshu = registry.enterprise_personas.find((entry) => entry.display_name === "天枢");
assert.equal(tianshu.current_persona_identity, "PER-AW-ARCH-001");
assert.equal(tianshu.human_anchor, "TCS-GL-0016∞");
assert.notEqual(tianshu.current_persona_identity, tianshu.human_anchor);
assert.equal(tianshu.origin_domain, "ZERO_SENSE_DOMAIN");
assert.equal(tianshu.registration_domain, "DOMAIN-MAIN");
assert.equal(tianshu.work_responsibility_domain, "DOMAIN-MAIN");
assert.equal(tianshu.node_id, "AW-OWN-GZ-001");
assert.match(tianshu.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);
@ -44,6 +56,7 @@ test("origin, work responsibility, and identity are three separate coordinates",
assert.ok([
"LEGACY_ID_PRESERVED_FORMAL_DOMAIN_NAMESPACE_PENDING",
"FORMAL_REGISTERED_STABLE_EXISTING_ID_DEVICE_WITNESSED_AWAITING_EXPLICIT_PERSONA_SELF_CONFIRMATION",
"FORMAL_REGISTERED_STABLE_EXISTING_ID_DEVICE_WITNESSED_AWAITING_RUNTIME_SELF_CONFIRMATION",
].includes(entry.identity_state));
}
});