feat: register Feimao active human world node
This commit is contained in:
parent
4b83839637
commit
e2128462bf
15 changed files with 431 additions and 18 deletions
|
|
@ -18,6 +18,16 @@ test("team body owns irreversible authority independently of current operators",
|
|||
assert.ok(authority.current_operator_designations.every((operator) => operator.personal_ownership_of_team_authority === false));
|
||||
});
|
||||
|
||||
test("Feimao acceptance is backed by one active enterprise-signed world node without implied write authority", () => {
|
||||
const feimao = authority.current_operator_designations.find((operator) => operator.id === "TCS-GL-0007∞");
|
||||
const registration = readJson("routing/feimao-human-world-node-registration.json");
|
||||
assert.equal(feimao.acceptance, "ACCEPTED_BY_DEVICE_REGISTRATION_AND_ICE_GL_INFINITY_WITNESS");
|
||||
assert.equal(feimao.world_node_id, registration.node.node_id);
|
||||
assert.equal(registration.node.state, "ACTIVE");
|
||||
assert.equal(registration.authority.repository_write_granted, false);
|
||||
assert.equal(registration.authority.unassigned_reality_permissions_granted, false);
|
||||
});
|
||||
|
||||
test("private bottle path has a strict zero gate without person-specific authorization", () => {
|
||||
const bottle = authority.namespaces.find((item) => item.pattern === "^ICE-BB-");
|
||||
assert.ok(bottle);
|
||||
|
|
|
|||
Loading…
Reference in a new issue