arkhe-runtime-testkit 0.13.0

Property-based testing harness for ArkheForge Runtime: proptest Arbitrary implementations + scope-based shrinker for ShellId / TypeCode / Tick / EntityId.
Documentation
//! `proptest::Arbitrary` impl for Runtime primitive types.
//!
//! Cover each type's value domain precisely — spec boundary values
//! (TypeCode range boundary / BoundedString N limit / Tick monotone)
//! are injected directly into the fuzz path.

use proptest::prelude::*;

use arkhe_forge_core::typecode;

/// Core Component TypeCode range strategy — `0x0003_0000..=0x0003_0EFF`.
pub fn core_component_typecode() -> impl Strategy<Value = u32> {
    typecode::CORE_COMPONENT.0..=typecode::CORE_COMPONENT.1
}

/// Core Event TypeCode range strategy — `0x0003_0F00..=0x0003_FFFF`.
pub fn core_event_typecode() -> impl Strategy<Value = u32> {
    typecode::CORE_EVENT.0..=typecode::CORE_EVENT.1
}

/// Canonical Activity verb range strategy — `0x0002_0001..=0x0002_03FF`.
pub fn canonical_verb_typecode() -> impl Strategy<Value = u32> {
    typecode::CORE_VERB_CANONICAL.0..=typecode::CORE_VERB_CANONICAL.1
}

/// Shell-scoped TypeCode strategy — used by the `shell_id` brand fuzz suite.
pub fn shell_scoped_typecode() -> impl Strategy<Value = u32> {
    typecode::SHELL_SCOPED.0..=typecode::SHELL_SCOPED.1
}

/// Tick value strategy — fuzz the full u64 domain.
pub fn tick_value() -> impl Strategy<Value = u64> {
    0u64..=u64::MAX
}

/// NonZeroU64 entity id strategy — inherits L0 A6.
pub fn entity_id_nz() -> impl Strategy<Value = core::num::NonZeroU64> {
    (1u64..=u64::MAX).prop_map(|v| {
        // 1..=u64::MAX guarantees NonZeroU64::new returns Some — safe path.
        core::num::NonZeroU64::new(v).unwrap_or(core::num::NonZeroU64::MIN)
    })
}