1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
use tracing::subscriber::with_default;
use tracing_attributes::instrument;
use tracing_mock::*;
#[instrument]
fn default_target() {}
#[instrument(target = "my_target")]
fn custom_target() {}
mod my_mod {
use tracing_attributes::instrument;
pub const MODULE_PATH: &str = module_path!();
#[instrument]
pub fn default_target() {}
#[instrument(target = "my_other_target")]
pub fn custom_target() {}
}
#[test]
fn default_targets() {
let (subscriber, handle) = subscriber::mock()
.new_span(
expect::span()
.named("default_target")
.with_target(module_path!()),
)
.enter(
expect::span()
.named("default_target")
.with_target(module_path!()),
)
.exit(
expect::span()
.named("default_target")
.with_target(module_path!()),
)
.new_span(
expect::span()
.named("default_target")
.with_target(my_mod::MODULE_PATH),
)
.enter(
expect::span()
.named("default_target")
.with_target(my_mod::MODULE_PATH),
)
.exit(
expect::span()
.named("default_target")
.with_target(my_mod::MODULE_PATH),
)
.only()
.run_with_handle();
with_default(subscriber, || {
default_target();
my_mod::default_target();
});
handle.assert_finished();
}
#[test]
fn custom_targets() {
let (subscriber, handle) = subscriber::mock()
.new_span(
expect::span()
.named("custom_target")
.with_target("my_target"),
)
.enter(
expect::span()
.named("custom_target")
.with_target("my_target"),
)
.exit(
expect::span()
.named("custom_target")
.with_target("my_target"),
)
.new_span(
expect::span()
.named("custom_target")
.with_target("my_other_target"),
)
.enter(
expect::span()
.named("custom_target")
.with_target("my_other_target"),
)
.exit(
expect::span()
.named("custom_target")
.with_target("my_other_target"),
)
.only()
.run_with_handle();
with_default(subscriber, || {
custom_target();
my_mod::custom_target();
});
handle.assert_finished();
}
|