* mock: change helper functions to `expect::<thing>` The current format of test expectations in `tracing-mock` isn't ideal. The format `span::expect` requires importing `tracing_mock::<thing>` which may conflict with imports from other tracing crates, especially `tracing-core`. So we change the order and move the functions into a module called `expect` so that: * `event::expect` becomes `expect::event` * `span::expect` becomes `expect::span` * `field::expect` becomes `expect::field` This format has two advantages. 1. It reads as natural English, e.g "expect span" 2. It is no longer common to import the modules directly. Regarding point (2), the following format was previously common: ```rust use tracing_mock::field; field::expect(); ``` This import of the `field` module may then conflict with importing the same from `tracing_core`, making it necessary to rename one of the imports. The same code would now be written: ```rust use tracing_mock::expect; expect::field(); ``` Which is less likely to conflict. This change also fixes an unused warning on `MockHandle::new` when the `tracing-subscriber` feature is not enabled. Refs: #539
37 lines
1.1 KiB
Rust
37 lines
1.1 KiB
Rust
#![cfg(all(feature = "env-filter", feature = "tracing-log"))]
|
|
|
|
use tracing::{self, Level};
|
|
use tracing_mock::*;
|
|
use tracing_subscriber::{filter::LevelFilter, prelude::*, reload};
|
|
|
|
#[test]
|
|
fn reload_max_log_level() {
|
|
let (collector, finished) = collector::mock()
|
|
.event(expect::event().at_level(Level::INFO))
|
|
.event(expect::event().at_level(Level::DEBUG))
|
|
.event(expect::event().at_level(Level::INFO))
|
|
.only()
|
|
.run_with_handle();
|
|
let (filter, reload_handle) = reload::Subscriber::new(LevelFilter::INFO);
|
|
collector.with(filter).init();
|
|
|
|
assert!(log::log_enabled!(log::Level::Info));
|
|
assert!(!log::log_enabled!(log::Level::Debug));
|
|
assert!(!log::log_enabled!(log::Level::Trace));
|
|
|
|
log::debug!("i'm disabled");
|
|
log::info!("i'm enabled");
|
|
|
|
reload_handle
|
|
.reload(Level::DEBUG)
|
|
.expect("reloading succeeds");
|
|
|
|
assert!(log::log_enabled!(log::Level::Info));
|
|
assert!(log::log_enabled!(log::Level::Debug));
|
|
assert!(!log::log_enabled!(log::Level::Trace));
|
|
|
|
log::debug!("i'm enabled now");
|
|
log::info!("i'm still enabled, too");
|
|
|
|
finished.assert_finished();
|
|
}
|