Skip to main content

ic_testkit/
lib.rs

1//! Focused PocketIC test-harness utilities for Internet Computer canisters.
2//!
3//! `ic-testkit` keeps PocketIC itself visible: [`pocket_ic`] re-exports the
4//! complete upstream crate, while [`pic`] retains convenient runtime type
5//! re-exports and adds extension traits for typed Candid calls, generic
6//! installation, diagnostics, snapshots, startup errors, caller-owned
7//! managed-server startup, and a small time conversion. It does not provide a
8//! simulator wrapper or a host-wide runtime lock.
9//!
10//! The crate also provides:
11//!
12//! - host-only transactional artifacts, Wasm builds, and freshness helpers in
13//!   [`artifacts`];
14//! - marker parsing, aggregation, comparison, and reports in [`benchmark`];
15//! - canister-side marker emission in [`performance`];
16//! - deterministic test principals through [`Fake`].
17//!
18//! The [`pocket_ic`], [`pic`], and [`artifacts`] exports are unavailable when
19//! compiling for `wasm32`; benchmark data types and marker emission remain
20//! available to canister code.
21
22pub mod benchmark;
23
24#[cfg(not(target_arch = "wasm32"))]
25mod timing;
26
27#[cfg(not(target_arch = "wasm32"))]
28pub mod artifacts;
29
30#[cfg(not(target_arch = "wasm32"))]
31pub use pocket_ic;
32
33#[cfg(not(target_arch = "wasm32"))]
34pub mod pic;
35
36pub mod performance;
37use candid::Principal;
38
39/// Deterministic principal generator for tests.
40///
41/// Values are derived directly from a numeric seed, making fixtures stable
42/// without embedding textual principal literals.
43pub struct Fake;
44
45impl Fake {
46    /// Deterministically derive a [`Principal`] from `seed`.
47    #[must_use]
48    pub fn principal(seed: u32) -> Principal {
49        let mut buf = [0u8; 29];
50        buf[..4].copy_from_slice(&seed.to_be_bytes());
51
52        Principal::from_slice(&buf)
53    }
54}
55
56#[cfg(test)]
57mod tests {
58    use super::*;
59
60    #[test]
61    fn fake_principal_is_deterministic_and_unique() {
62        let p1 = Fake::principal(7);
63        let p2 = Fake::principal(7);
64        let q = Fake::principal(8);
65
66        assert_eq!(p1, p2, "Fake::principal should be deterministic");
67        assert_ne!(p1, q, "Fake::principal should differ for different seeds");
68
69        let bytes = p1.as_slice();
70        assert_eq!(bytes.len(), 29, "Principal must be 29 bytes");
71    }
72}