ASELSANMicrokernel
S753 · SOURCE-BOUND GATE EVIDENCE

S753 · Kabul ve sertifikasyon kapanışı · Açık kabul sınırı yayını

tam S753 implementation modülü → Operations --test hedefi ile bağlı tam focused test → ayrı Operations kaydı Bu sayfa yalnız S753 kapısına aittir; komşu kapıların kaynakları bu kabulün içine katılmaz.

S753Focused kod testiOperations id exactsource SHA exacttest target exact

operation: g8l-s753-r2-acceptance-certification-closeout-boundary-partial

uygulama/model · focused test · Operations · 3 exact excerpt

sequence-bound=true · implementation-bound=true
01 · Yürütme / doğrulama kodu

Kapının gerçek repository sözleşmesi

tam dosyaL1–L67
kernel/src/g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary.rs::S753 r2 acceptance certification closeout boundary implementation
#![allow(unexpected_cfgs)]
#![allow(dead_code)]

//! S753 Acceptance and certification closeout · Open acceptance boundary publication.
//!
//! Separate typed gate after S752, release track R2,
//! phase R2.6 (Acceptance and certification closeout), step
//! 8/13 of the acceptance ladder.
//!
//! It advances only the fail-closed readiness ledger.  The retained S571/S575
//! physical observations are carried read-only; new runtime and physical
//! observations, operator authority, external acceptance, cross-profile
//! coverage and release-track completion all remain explicitly absent, and the
//! module is deliberately not linked into the board-rpi5 kernel.

use crate::g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s752_r2_acceptance_certification_closeout_reconciliation::S752_SEQUENCE;
use crate::g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s708_r2_production_platform_isolation_contract::{
    advance_s708_to_s899_model_acceptance_gate, G8lProductAcceptanceError,
    G8lProductAcceptanceGateDescriptor, G8lProductAcceptanceLedger,
    G8lProductAcceptanceOutcome, G8lProductAcceptanceStep,
    S708_TO_S899_LINKED_INTO_BOARD_RPI5,
};

pub const S753_SEQUENCE: usize = 753;
pub const S753_EXPECTED_PREDECESSOR: usize = S752_SEQUENCE;
pub const S753_TRACK: &str = "R2";
pub const S753_PHASE: &str = "R2.6";
pub const S753_BLOCK_ORDINAL: usize = 6;
pub const S753_BLOCK_STEP_COUNT: usize = 13;
pub const S753_STEP_ORDINAL: usize = 8;
pub const S753_ACCEPTANCE_DOMAIN: &str = "acceptance_certification_closeout";
pub const S753_LINKED_INTO_BOARD_RPI5: bool = S708_TO_S899_LINKED_INTO_BOARD_RPI5;
pub const S753_NEW_SUPPORTED_PROFILE_RUNTIME_OBSERVATIONS: usize = 0;
pub const S753_NEW_PHYSICAL_OBSERVATIONS: usize = 0;
pub const S753_OPERATOR_AUTHORIZATIONS: usize = 0;
pub const S753_EXTERNAL_ACCEPTANCES: usize = 0;
pub const S753_PHYSICAL_OR_DEVICE_OPERATIONS: usize = 0;
pub const S753_ACCEPTANCE_COMPLETE: bool = false;
pub const S753_RELEASE_TRACK_COMPLETE: bool = false;
pub const RUNBOOK_EXECUTED_IN_S753: bool = false;

pub const S753_DESCRIPTOR: G8lProductAcceptanceGateDescriptor =
    G8lProductAcceptanceGateDescriptor {
        sequence: S753_SEQUENCE,
        predecessor_sequence: S753_EXPECTED_PREDECESSOR,
        track: S753_TRACK,
        phase: S753_PHASE,
        block_ordinal: S753_BLOCK_ORDINAL,
        block_step_count: S753_BLOCK_STEP_COUNT,
        step_ordinal: S753_STEP_ORDINAL,
        acceptance_domain: S753_ACCEPTANCE_DOMAIN,
        step: G8lProductAcceptanceStep::OpenBoundaryPublication,
        runtime_evidence_required: true,
        physical_evidence_required: true,
        external_authority_required: true,
    };

pub type G8lS753AcceptanceGateOutcome = G8lProductAcceptanceOutcome;
pub type G8lS753AcceptanceGateError = G8lProductAcceptanceError;

pub fn service_s753_model_r2_acceptance_certification_closeout_boundary(
    ledger: &mut G8lProductAcceptanceLedger,
    caller_cpu: usize,
) -> Result<G8lS753AcceptanceGateOutcome, G8lS753AcceptanceGateError> {
    advance_s708_to_s899_model_acceptance_gate(ledger, caller_cpu, S753_DESCRIPTOR)
}
snippet sha256: 498ceefd1954file sha256: 498ceefd1954
02 · Doğrulayan test kodu

Operations komutuna bağlı focused test

tam dosyaL1–L231
simulation/tests/g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary.rs::S753 r2 acceptance certification closeout boundary focused tests
use aselsan_microkernel_simulation::g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s708_r2_production_platform_isolation_contract::{
    advance_s708_to_s899_model_acceptance_gate,
    canonical_s708_to_s899_acceptance_descriptor, G8lProductAcceptanceAnchor,
    G8lProductAcceptanceError, G8lProductAcceptanceLedger, G8lProductAcceptanceOutcome,
    S708_CANONICAL_ANCHOR, S708_CHAIN_TIP_SEQUENCE, S708_FIRST_SEQUENCE, S899_LAST_SEQUENCE,
};
use aselsan_microkernel_simulation::g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary as gate;

fn product_anchor() -> G8lProductAcceptanceAnchor {
    S708_CANONICAL_ANCHOR
}

fn acceptance_ledger() -> G8lProductAcceptanceLedger {
    G8lProductAcceptanceLedger::from_s707(1, product_anchor()).unwrap()
}

fn advance_before(ledger: &mut G8lProductAcceptanceLedger, sequence: usize) {
    for predecessor in S708_FIRST_SEQUENCE..sequence {
        let descriptor = canonical_s708_to_s899_acceptance_descriptor(predecessor).unwrap();
        assert!(matches!(
            advance_s708_to_s899_model_acceptance_gate(ledger, 1, descriptor),
            Ok(G8lProductAcceptanceOutcome::Advanced(_))
        ));
    }
}

#[test]
fn s753_descriptor_is_exact_and_canonical() {
    assert_eq!(gate::S753_SEQUENCE, 753);
    assert_eq!(gate::S753_EXPECTED_PREDECESSOR, 752);
    assert_eq!(gate::S753_TRACK, "R2");
    assert_eq!(gate::S753_PHASE, "R2.6");
    assert_eq!(gate::S753_BLOCK_ORDINAL, 6);
    assert_eq!(gate::S753_BLOCK_STEP_COUNT, 13);
    assert_eq!(gate::S753_STEP_ORDINAL, 8);
    assert_eq!(
        gate::S753_ACCEPTANCE_DOMAIN,
        "acceptance_certification_closeout"
    );
    assert_eq!(gate::S753_DESCRIPTOR.external_authority_required, true);
    assert!(gate::S753_DESCRIPTOR.physical_evidence_required);
    assert_eq!(
        canonical_s708_to_s899_acceptance_descriptor(753),
        Some(gate::S753_DESCRIPTOR)
    );
}

#[test]
fn s753_is_cpu1_scoped_and_waits_for_exact_predecessor() {
    let mut ledger = acceptance_ledger();
    assert_eq!(
        gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 0),
        Err(G8lProductAcceptanceError::WrongCpu)
    );
    assert_eq!(ledger.last_completed_sequence(), S708_CHAIN_TIP_SEQUENCE);
    if 753 == S708_FIRST_SEQUENCE {
        let future = canonical_s708_to_s899_acceptance_descriptor(709).unwrap();
        assert!(matches!(
            advance_s708_to_s899_model_acceptance_gate(&mut ledger, 1, future),
            Ok(G8lProductAcceptanceOutcome::AwaitingPredecessor {
                expected_predecessor: 708,
                observed_predecessor: 707,
                ..
            })
        ));
    } else {
        assert!(matches!(
            gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 1),
            Ok(G8lProductAcceptanceOutcome::AwaitingPredecessor {
                sequence: 753,
                expected_predecessor: 752,
                observed_predecessor: 707,
            })
        ));
    }
}

#[test]
fn s753_advances_once_with_non_acceptance_receipt() {
    let mut ledger = acceptance_ledger();
    advance_before(&mut ledger, 753);
    let G8lProductAcceptanceOutcome::Advanced(receipt) =
        gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 1)
            .unwrap()
    else {
        panic!("S753 must advance")
    };
    assert_eq!((receipt.sequence, receipt.predecessor_sequence), (753, 752));
    assert_eq!(receipt.track, "R2");
    assert_eq!(receipt.phase, "R2.6");
    assert_eq!((receipt.block_ordinal, receipt.step_ordinal), (6, 8));
    assert_eq!(
        receipt.acceptance_domain,
        "acceptance_certification_closeout"
    );
    assert_eq!(receipt.completed_block_count, 5);
    assert_eq!(receipt.chain_tip_sequence, 707);
    assert_eq!(receipt.retained_runtime_baselines, 2);
    assert_eq!(receipt.retained_physical_observations, 2);
    assert!(receipt.source_gate_complete);
    assert!(receipt.runtime_evidence_required);
    assert!(receipt.physical_evidence_required);
    assert_eq!(receipt.new_supported_profile_runtime_observations, 0);
    assert_eq!(receipt.new_physical_observations, 0);
    assert!(!receipt.operator_authority_received);
    assert!(!receipt.external_authority_received);
    assert!(!receipt.linked_into_board_rpi5);
    assert!(!receipt.cross_profile_coverage_complete);
    assert!(!receipt.acceptance_complete);
    assert!(!receipt.r2_field_acceptance_complete);
    assert!(!receipt.release_track_complete);
    assert!(!receipt.runbook_executed);
}

#[test]
fn s753_replay_is_idempotent_and_historical_reentry_does_not_mutate() {
    let mut ledger = acceptance_ledger();
    advance_before(&mut ledger, 753);
    let G8lProductAcceptanceOutcome::Advanced(receipt) =
        gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 1)
            .unwrap()
    else {
        panic!("advance")
    };
    assert_eq!(
        gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 1),
        Ok(G8lProductAcceptanceOutcome::Retained(receipt))
    );
    if 753 < S899_LAST_SEQUENCE {
        let next = canonical_s708_to_s899_acceptance_descriptor(753 + 1).unwrap();
        assert!(matches!(
            advance_s708_to_s899_model_acceptance_gate(&mut ledger, 1, next),
            Ok(G8lProductAcceptanceOutcome::Advanced(_))
        ));
        assert_eq!(
            gate::service_s753_model_r2_acceptance_certification_closeout_boundary(&mut ledger, 1),
            Ok(G8lProductAcceptanceOutcome::AlreadyCompleted {
                requested_sequence: 753,
                last_completed_sequence: 753 + 1,
            })
        );
    }
}

#[test]
fn s753_open_claim_boundary_is_preserved() {
    assert_eq!(gate::S753_NEW_SUPPORTED_PROFILE_RUNTIME_OBSERVATIONS, 0);
    assert_eq!(gate::S753_NEW_PHYSICAL_OBSERVATIONS, 0);
    assert_eq!(gate::S753_OPERATOR_AUTHORIZATIONS, 0);
    assert_eq!(gate::S753_EXTERNAL_ACCEPTANCES, 0);
    assert_eq!(gate::S753_PHYSICAL_OR_DEVICE_OPERATIONS, 0);
    assert!(!gate::S753_ACCEPTANCE_COMPLETE);
    assert!(!gate::S753_RELEASE_TRACK_COMPLETE);
    assert!(!gate::S753_LINKED_INTO_BOARD_RPI5);
    assert!(!gate::RUNBOOK_EXECUTED_IN_S753);
}

#[test]
fn s753_is_simulation_only_and_adds_no_production_callsite() {
    const TARGET: &str = "g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary";
    let source = include_str!("../../kernel/src/g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary.rs");
    let kernel_registry = include_str!("../../kernel/src/main.rs");
    let simulation_registry = include_str!("../src/lib.rs");
    let exceptions = include_str!("../../kernel/src/arch/aarch64/exceptions.rs");
    assert!(source.contains("pub const S753_DESCRIPTOR"));
    assert_eq!(
        simulation_registry
            .matches(&format!("pub mod {TARGET};"))
            .count(),
        1
    );
    assert_eq!(
        kernel_registry.matches(&format!("mod {TARGET};")).count(),
        0
    );
    assert_eq!(exceptions.matches(TARGET).count(), 0);
    assert_eq!(exceptions.matches("service_s753_").count(), 0);
}

#[test]
fn s753_descriptor_mutation_fails_before_ledger_advance() {
    let mut ledger = acceptance_ledger();
    advance_before(&mut ledger, 753);
    let before = ledger.last_completed_sequence();
    let mut drift = gate::S753_DESCRIPTOR;
    drift.block_ordinal += 1;
    assert_eq!(
        advance_s708_to_s899_model_acceptance_gate(&mut ledger, 1, drift),
        Err(G8lProductAcceptanceError::DescriptorDrift)
    );
    assert_eq!(ledger.last_completed_sequence(), before);
}

#[test]
fn s753_rejects_premature_acceptance_and_chain_tip_drift() {
    let mut promoted: G8lProductAcceptanceAnchor = S708_CANONICAL_ANCHOR;
    promoted.r2_field_acceptance_complete = true;
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(1, promoted).err(),
        Some(G8lProductAcceptanceError::PrematureAcceptanceClaim)
    );
    let mut linked: G8lProductAcceptanceAnchor = S708_CANONICAL_ANCHOR;
    linked.linked_into_board_rpi5 = true;
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(1, linked).err(),
        Some(G8lProductAcceptanceError::PrematureAcceptanceClaim)
    );
    let mut ran: G8lProductAcceptanceAnchor = S708_CANONICAL_ANCHOR;
    ran.chain_tip_runbook_executed = true;
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(1, ran).err(),
        Some(G8lProductAcceptanceError::PrematureAcceptanceClaim)
    );
    let mut invented: G8lProductAcceptanceAnchor = S708_CANONICAL_ANCHOR;
    invented.retained_physical_observations = 3;
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(1, invented).err(),
        Some(G8lProductAcceptanceError::ChainTipDrift)
    );
    let mut moved: G8lProductAcceptanceAnchor = S708_CANONICAL_ANCHOR;
    moved.chain_tip_sequence = 706;
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(1, moved).err(),
        Some(G8lProductAcceptanceError::ChainTipDrift)
    );
    assert_eq!(
        G8lProductAcceptanceLedger::from_s707(0, S708_CANONICAL_ANCHOR).err(),
        Some(G8lProductAcceptanceError::WrongCpu)
    );
}
snippet sha256: 6669f21128b6file sha256: 6669f21128b6
03 · Kapı kimlik kaydı

Operations sıra, kimlik ve başlık bağı

tam Operations kaydıL1247–L1273
website/src/lib/s708-s899-gate-specs.generated.ts::g8l-s753-r2-acceptance-certification-closeout-boundary-partial
  {
    id: "g8l-s753-r2-acceptance-certification-closeout-boundary-partial",
    sequence: 753,
    slug: "r2_acceptance_certification_closeout_boundary",
    title: "Acceptance and certification closeout · Open acceptance boundary publication",
    titleTr: "Kabul ve sertifikasyon kapanışı · Açık kabul sınırı yayını",
    track: "R2",
    trackTitle: "Secure field phone",
    trackTitleTr: "Güvenli saha telefonu",
    phase: "R2.6",
    focusedTests: 8,
    sourceBytes: 3188,
    sourceSha256: "498ceefd195467d48f0a4ed95b6c613b6d90321a91c2e4fa4f41311f29c7a59b",
    testBytes: 9498,
    testSha256: "6669f21128b6b8afdf0c7b39dca9ab581b9822a58fc8d6cdd78c36ed67ebc0b0",
    blockOrdinal: 6,
    blockCount: 19,
    blockTitle: "Acceptance and certification closeout",
    blockTitleTr: "Kabul ve sertifikasyon kapanışı",
    blockStepCount: 13,
    stepOrdinal: 8,
    stepTitle: "Open acceptance boundary publication",
    stepTitleTr: "Açık kabul sınırı yayını",
    externalAuthorityRequired: true,
    acceptance: "S753, Güvenli saha telefonu izinin R2.6 fazındaki Kabul ve sertifikasyon kapanışı bloğunun 8/13 Açık kabul sınırı yayını adımını exact S752 predecessor sonrasında ayrı typed descriptor ile fail-closed olarak kaydeder.",
    retainedBoundary: "Bu yalnız fail-closed software readiness kaydıdır. S571/S575 fiziksel gözlemleri salt-okunur taşınır (retained=2); yeni runtime/fiziksel gözlem=0, operatör yetkisi=0, dış kabul=0, cross-profile kapsam=false, acceptance_complete=false, release_track_complete=false, board-rpi5 kernel'e link=false ve RUNBOOK_EXECUTED_IN_S753=NO kalır. Operatör/şebeke, RF-EMC-SAR, bağımsız güvenlik veya yasal kabul bu faz için zorunludur ve henüz alınmamıştır.",
  },
snippet sha256: 9344f442abc8file sha256: b4ce50234670
Focused test komutu
CARGO_INCREMENTAL=0 cargo test -p aselsan_microkernel_simulation --test g8l_target_dispatch_scheduler_owner_scheduler_mutation_production_migration_lifecycle_s753_r2_acceptance_certification_closeout_boundary -- --test-threads=1
proof: docs/M8.1-RPi5-G8l-S753-Acceptance-and-certification-closeout-·-Open-acceptance-boundary-publication-Proof.md
Registry schema v5 · generator website/scripts/generate-code-gates.mjs · Tam SHA-256: 91d38c7b6222f0b4c117be786454853543da55a160e543d9b951057cc20dcc06