4 releases

new 0.8.2 Sep 14, 2024
0.8.1 Aug 27, 2024
0.8.0 Aug 24, 2024
0.1.0 Jul 1, 2024

#448 in Testing

Download history 176/week @ 2024-06-29 12/week @ 2024-07-06 20/week @ 2024-07-13 45/week @ 2024-07-20 62/week @ 2024-07-27 48/week @ 2024-08-03 62/week @ 2024-08-10 41/week @ 2024-08-17 365/week @ 2024-08-24 57/week @ 2024-08-31 28/week @ 2024-09-07

497 downloads per month
Used in 2 crates (via ostd)

MPL-2.0 license

10KB
131 lines

The kernel mode testing framework of OSTD.

ostd-test stands for kernel-mode testing framework for OSTD. Its goal is to provide a cargo test-like experience for any #![no_std] bare metal crates.

In OSTD, all the tests written in the source tree of the crates will be run immediately after the initialization of ostd. Thus you can use any feature provided by the frame including the heap allocator, etc.

By all means, ostd-test is an individual crate that only requires:

  • a custom linker script section .ktest_array,
  • and an alloc implementation.

And the OSTD happens to provide both of them. Thus, any crates depending on the OSTD can use ostd-test without any extra dependency.

Usage

To write a unit test for any crates, it is recommended to create a new test module, e.g.:

#[cfg(ktest)]
mod test {
    use ostd::prelude::*;

    #[ktest]
    fn trivial_assertion() {
        assert_eq!(0, 0);
    }
    #[ktest]
    #[should_panic]
    fn failing_assertion() {
        assert_eq!(0, 1);
    }
    #[ktest]
    #[should_panic(expected = "expected panic message")]
    fn expect_panic() {
        panic!("expected panic message");
    }
}

Any crates using the ostd-test framework should be linked with ostd.

By the way, #[ktest] attribute along also works, but it hinders test control using cfgs since plain attribute marked test will be executed in all test runs no matter what cfgs are passed to the compiler. More importantly, using #[ktest] without cfgs occupies binary real estate since the .ktest_array section is not explicitly stripped in normal builds.

Rust cfg is used to control the compilation of the test module. In cooperation with the ktest framework, OSDK will set the RUSTFLAGS environment variable to pass the cfgs to all rustc invocations. To run the tests, you simply need to use the command cargo osdk test in the crate directory. For more information, please refer to the OSDK documentation.

We support the #[should_panic] attribute just in the same way as the standard library do, but the implementation is quite slow currently. Use it with cautious.

Doctest is not taken into consideration yet, and the interface is subject to change.

No runtime deps