9 个版本 (破坏性)
0.8.0 | 2024年5月4日 |
---|---|
0.7.0 | 2022年8月5日 |
0.6.0 | 2022年5月5日 |
0.5.0 | 2022年5月3日 |
0.1.1 | 2022年1月10日 |
#79 在 测试
每月701次 下载
用于 3 crates
33KB
632 代码行
test-span
用于对跟踪跨度进行快照测试的宏和工具。
使用方法
请参阅测试以获取更全面的特性和行为列表
use test_span::prelude::*;
#[test_span]
fn a_test() {
do_something();
// test_span provides your with three functions:
let spans = get_spans();
let logs = get_logs();
// you can get both in one call
let (spans, logs) = get_telemetry();
// This plays well with insta snapshots:
insta::assert_json_snapshot!(logs);
insta::assert_json_snapshot!(spans);
}
// Test span plays well with async
#[test_span(tokio::test)]
// you can specify the span / log level
// you would like to track like this:
#[level(tracing::Level::INFO)]
async fn an_sync_test() {
do_something_async().await;
// You still get access to each function
let spans = get_spans();
let logs = get_logs();
let (spans, logs) = get_telemetry();
}
限制
跨度日志在跨线程创建时难以跟踪。但我们为你提供了可以检查的日志转储
#[test_span]
fn track_across_threads() {
std::thread::spawn(|| {
tracing::info!("only in get_all_logs!");
})
.join()
.unwrap();
let logs = get_logs();
// not in get_logs()
assert!(!logs.contains_message("only in get_all_logs!");
// get_all_logs takes a filter Level
let all_logs = test_span::get_all_logs(&tracing::Level::INFO);
assert!(all_logs.contains_message("only in get_all_logs!"));
}
贡献
更多信息请参阅贡献文档
许可证
根据您的选择,许可协议为 [Apache License, Version 2.0](LICENSE-APACHE) 或 [MIT 许可证](LICENSE-MIT)。除非您明确说明,否则您提交给此 crate 的任何有意贡献,根据 Apache-2.0 许可协议定义,应作为上述双重许可,不附加任何额外的条款或条件。
依赖项
~10–18MB
~216K SLoC