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
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"schema": "guanghu.os-control-architecture/v1",
|
||||
"record_id": "HLP-GUANGHU-OS-CONTROL-001",
|
||||
"version": "2026-08-15.4",
|
||||
"version": "2026-08-15.5",
|
||||
"state": "CURRENT_CANONICAL",
|
||||
"final_topology": "GUANGHU_MASTER_WITH_ON_DEMAND_LINUX_SUBCONTROL_AND_RESCUE",
|
||||
"control_ownership": {
|
||||
|
|
@ -53,6 +53,7 @@
|
|||
"native_service_equivalence_contract_source": 100,
|
||||
"native_anchor_http_qemu_capability": 100,
|
||||
"native_code_channel_read_only_qemu_capability": 100,
|
||||
"jd_physical_host_isolated_qemu_capability": 100,
|
||||
"public_native_anchor_equivalence": 0,
|
||||
"public_native_code_channel_equivalence": 0,
|
||||
"full_forgejo_equivalence": 0,
|
||||
|
|
@ -67,6 +68,16 @@
|
|||
"final_state": "DORMANT",
|
||||
"observed_at": "2026-08-15T18:08:11+08:00"
|
||||
},
|
||||
"native_service_qemu_evidence": {
|
||||
"server_receipt": "/guanghu/recovery/JD-FD-PRIMARY-native-qemu-856a6c9/RECEIPT.hldp",
|
||||
"server_receipt_sha256": "363eb5f10da6a1eddd0fe212165a34a9ce213b93b922feaa26fe99c7892f2380",
|
||||
"candidate_source_commit": "856a6c9ffbb12718b04ea597526dc4ad309fe5fe",
|
||||
"candidate_sha256": "9807fa751616d4b421c103d60eecface1c5eb8013cbd89417ef9e027da281fb3",
|
||||
"network_backend": "socket",
|
||||
"observed_at": "2026-08-15T19:24:56+08:00",
|
||||
"native_physical_residency": 0,
|
||||
"public_native_service_equivalence": 0
|
||||
},
|
||||
"historical_evidence_policy": {
|
||||
"bare_metal_gosk_ghal_receipts_remain_valid_for_observed_capabilities": true,
|
||||
"historical_linux_free_completion_formula_is_current": false,
|
||||
|
|
|
|||
|
|
@ -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