fix: support JD host native QEMU validation
This commit is contained in:
parent
856a6c9ffb
commit
95385e812a
5 changed files with 101 additions and 9 deletions
|
|
@ -34,8 +34,8 @@ test("current JD state stays transitional and cannot impersonate final master co
|
|||
assert.equal(contract.jd_fd_primary.final_guanghu_os_master, 0);
|
||||
});
|
||||
|
||||
test("the physical shadow cycle is registered without impersonating Guanghu-owned boot control", () => {
|
||||
assert.equal(contract.version, "2026-08-15.4");
|
||||
test("the physical shadow and host QEMU cycles are registered without impersonating Guanghu-owned boot control", () => {
|
||||
assert.equal(contract.version, "2026-08-15.5");
|
||||
assert.equal(contract.implementation.guanghu_supervisor_lifecycle_contract_source, 100);
|
||||
assert.equal(contract.implementation.target_readback_and_mandatory_reclaim_state_machine, 100);
|
||||
assert.equal(contract.implementation.declared_supervisor_core_line_and_function_coverage, 100);
|
||||
|
|
@ -46,6 +46,7 @@ test("the physical shadow cycle is registered without impersonating Guanghu-owne
|
|||
assert.equal(contract.implementation.native_service_equivalence_contract_source, 100);
|
||||
assert.equal(contract.implementation.native_anchor_http_qemu_capability, 100);
|
||||
assert.equal(contract.implementation.native_code_channel_read_only_qemu_capability, 100);
|
||||
assert.equal(contract.implementation.jd_physical_host_isolated_qemu_capability, 100);
|
||||
assert.equal(contract.implementation.public_native_anchor_equivalence, 0);
|
||||
assert.equal(contract.implementation.public_native_code_channel_equivalence, 0);
|
||||
assert.equal(contract.implementation.full_forgejo_equivalence, 0);
|
||||
|
|
@ -53,6 +54,9 @@ test("the physical shadow cycle is registered without impersonating Guanghu-owne
|
|||
assert.equal(contract.implementation.jd_physical_deployment, 0);
|
||||
assert.equal(contract.current_target_evidence.final_state, "DORMANT");
|
||||
assert.match(contract.current_target_evidence.server_receipt_sha256, /^[0-9a-f]{64}$/);
|
||||
assert.equal(contract.native_service_qemu_evidence.native_physical_residency, 0);
|
||||
assert.equal(contract.native_service_qemu_evidence.public_native_service_equivalence, 0);
|
||||
assert.match(contract.native_service_qemu_evidence.server_receipt_sha256, /^[0-9a-f]{64}$/);
|
||||
});
|
||||
|
||||
test("current architecture and global engineering rules project the same control contract", () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue