#env-logger #integration-tests #logging #log

test-logger

Simple helper to initialize env_logger before unit and integration tests. Works on stable rust.

1 unstable release

Uses old Rust 2015

0.1.0 Jul 14, 2016

#22 in #env-logger

Download history 10/week @ 2023-12-17 5/week @ 2023-12-24 4/week @ 2024-01-07 13/week @ 2024-01-14 1/week @ 2024-01-21 2/week @ 2024-02-11 13/week @ 2024-02-18 23/week @ 2024-02-25 15/week @ 2024-03-03 15/week @ 2024-03-10 19/week @ 2024-03-17 20/week @ 2024-03-24 49/week @ 2024-03-31

107 downloads per month
Used in 3 crates

MIT/Apache

4KB

Test Logger

Simple helper to initialize env_logger before unit and integration tests. Works on Stable Rust.

Running cargo test does not initialize a logging backend, so those of us who use the log crate do not get to see log output when a unit or integration test fails. This crate just provides a simple macro that provides a way to initialize an env_logger during unit and integration tests while still making tests somewhat ergonomic to write.

test!

Many applications use logging to aid in debugging a running application, but unfortunately there's no simple way to initialize the logger prior to running unit and integration tests. The test! macro is just a simple wrapper to take care of initializing an env_logger prior to running tests. This ensures that log statements are printed to stdout during the tests. The macro ensures that the logger is initialized exactly once.

use the test! macro:

test!(logs_are_printed_to_stdout_when_this_fails, {
    assert!(subject.do_stuff_that_fails());
});
// The above macro expands to:
#[test]
fn logs_are_printed_to_stdout_when_this_fails() {
    test_logger::ensure_env_logger_initialized();
    assert!(subject.do_stuff_that_fails());
}

test!(should_panic, simple_way_to_annotate_a_test_that_is_supposed_to_panic, {
    panic!("I'm supposed to panic.");
});
//expands to:
#[test]
#[should_panic]
fn simple_way_to_annotate_a_test_that_is_supposed_to_panic() {
    test_logger::ensure_env_logger_initialized();
    assert!(subject.do_stuff_that_fails());
}

// alternate format to support any arbitrary attributes on the test function
test!(#[allow(dead_code)], this_test_function_will_have_the_dead_code_lint_disabled, {
    ... 
    

License

Licensed under either of

at your option.

Dependencies

~4MB
~79K SLoC