Crates.io | tracing-capture |
lib.rs | tracing-capture |
version | 0.2.0-beta.1 |
source | src |
created_at | 2022-12-09 11:57:34.078679 |
updated_at | 2024-03-03 09:53:14.542725 |
description | Capturing tracing spans and events, e.g. for testing |
homepage | |
repository | https://github.com/slowli/tracing-toolbox |
max_upload_size | |
id | 733210 |
size | 118,815 |
This crate provides a tracing Layer
to capture tracing spans
and events as they occur. The captured spans and events
can then be used for testing assertions (e.g., "Did a span
with a specific name / target / … occur? What were its fields? Was the span closed?
How many times the span was entered?" and so on).
The crate supports both straightforward assertions on the captured data,
and more fluent assertions based on predicates
.
Add this to your Crate.toml
:
[dependencies]
tracing-capture = "0.2.0-beta.1"
use tracing::Level;
use tracing_subscriber::layer::SubscriberExt;
use tracing_capture::{CaptureLayer, SharedStorage};
let subscriber = tracing_subscriber::fmt()
.pretty()
.with_max_level(Level::INFO)
.finish();
// Add the capturing layer.
let storage = SharedStorage::default();
let subscriber = subscriber.with(CaptureLayer::new(&storage));
// Capture tracing information.
tracing::subscriber::with_default(subscriber, || {
tracing::info_span!("test", num = 42_i64).in_scope(|| {
tracing::warn!("I feel disturbance in the Force...");
});
});
// Inspect the only captured span.
let storage = storage.lock();
assert_eq!(storage.all_spans().len(), 1);
let span = storage.all_spans().next().unwrap();
assert_eq!(span["num"], 42_i64);
assert_eq!(span.stats().entered, 1);
assert!(span.stats().is_closed);
use predicates::str::contains;
use tracing::Level;
use tracing_subscriber::{layer::SubscriberExt, Registry};
use tracing_capture::{predicates::*, CaptureLayer, SharedStorage};
let storage = SharedStorage::default();
let subscriber = Registry::default().with(CaptureLayer::new(&storage));
tracing::subscriber::with_default(subscriber, || {
tracing::info_span!("test_spans").in_scope(|| {
tracing::warn!(result = 42_i64, "computed");
});
});
let storage = storage.lock();
let predicate = level(Level::WARN)
& message(contains("compute"))
& field("result", 42_i64);
// Checks that there is a single event satisfying `predicate`.
storage.scan_events().single(&predicate);
// ...and that none of spans satisfy similar predicate.
storage.scan_spans().none(&level(Level::WARN));
tracing-test
is a lower-level alternative.tracing-fluent-assertions
is more similar in intended goals, but differs significantly
in API design; the assertions need to be declared before the capture.Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in tracing-toolbox
by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions.