1 unstable release

0.0.1 Mar 5, 2020

#90 in #tracker


Used in 2 crates (via racetrack)

Apache-2.0

17KB
399 lines

racetrack

A library for writing assertions on methods, function and closure calls.

Racetrack allows for tracking direct and indirect calls to methods. It's inspired by Jest's fn() and spyOn. The library consists of the tracker, which handles assertions, as well as a proc-macro that allows for automatic tracking injection into methods.

Usage

The intended usage is with the proc macro.

use racetrack::{Tracker, track_with};

struct TrackedStruct(Arc<Tracker>);

#[track_with(0)]
impl TrackedStruct {
    fn tracked_fn(&self, arg: String) {}
}

let tracker = Tracker::new();
let tracked = TrackedStruct(tracker.clone());
tracked.tracked_fn("Test".to_string());

tracker
    .assert_that("TrackedStruct::tracked_fn")
    .was_called_once()
    .with(("Test".to_string()));

However, this has some caviats. All arguments and the return type must implement ToOwned and it may not work if you have very specific requirements. So, alternatively, you can use the tracker manually:

use racetrack::{Tracker, CallInfo};

struct TrackedStruct(Arc<Tracker>);

impl TrackedStruct {
    fn tracked_fn(&self, arg: String) {
        let call_info = CallInfo {
            arguments: Some(Box::new(arg)),
            returned: None
        };
        self.0.log_call("my_fn", call_info);
    }
}

let tracker = Tracker::new();
let tracked = TrackedStruct(tracker.clone());
tracked.tracked_fn("Test".to_string());

tracker
    .assert_that("my_fn")
    .was_called_once()
    .with("Test".to_string());

License: Apache-2.0

Dependencies

~1.5MB
~34K SLoC