Crates.io | test-fork |
lib.rs | test-fork |
version | |
source | src |
created_at | 2025-02-08 22:46:13.710544+00 |
updated_at | 2025-02-26 15:55:58.675231+00 |
description | A library for running tests in separate processes. |
homepage | https://github.com/d-e-s-o/test-fork |
repository | https://github.com/d-e-s-o/test-fork |
max_upload_size | |
id | 1548466 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Custom attributes making sure a test is run in a separate process. Process separation can be useful in many contexts, including when testing interactions with necessarily process-global state (e.g., when working environment variables, when testing code that requires temporary user ID switching, or when adjusting the working directory).
This crate provides the #[test_fork::test]
attribute that can be used
for annotating tests to run in separate processes, as opposed to sharing
the address space with other concurrently running tests:
use test_fork::test;
#[test]
fn test1() {
assert_eq!(2 + 2, 4);
}
Also provided is the #[fork]
attribute, which does not in itself make
a function a test, so it will always have to be combined with an
additional #[test]
attribute. However, it can be more convenient for
annotating only a sub-set of tests for running in separate processes,
especially when non-standard #[test]
attributes are involved:
use test_fork::fork;
#[fork]
#[test]
fn test2() {
assert_eq!(2 + 3, 5);
}
Both #[test]
and #[fork]
support async
tests. However, they
currently rely on a somewhat counter-intuitive ordering of attributes,
with #[test_fork::fork]
(or #[test_fork::test]
) being the inner-most
one, like so:
#[tokio::test]
#[test_fork::fork]
async fn test3() {
assert_eq!(2 + 4, 6);
}
The crate also supports running libtest
style benchmarks in a separate
process. This functionality is available only when both the unstable
and unsound
features are enabled. The functionality is unstable
because libtest
benchmarks are unstable and only available on nightly.
It is potentially unsound because the implementation necessarily needs
to transfer Bencher
objects across process boundaries, but said
objects don't offer a stable ABI.
use test_fork::bench;
#[bench]
fn bench1(b: &mut Bencher) {
b.iter(|| sleep(Duration::from_millis(1)));
}
The #[fork]
attribute is also able to deal with benchmarks.