#spans #tracing #log #snapshot #log-level

test-span

用于对跟踪跨度进行快照测试的宏和工具

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测试

Download history 202/week @ 2024-04-22 456/week @ 2024-04-29 239/week @ 2024-05-06 316/week @ 2024-05-13 276/week @ 2024-05-20 177/week @ 2024-05-27 245/week @ 2024-06-03 315/week @ 2024-06-10 279/week @ 2024-06-17 213/week @ 2024-06-24 166/week @ 2024-07-01 151/week @ 2024-07-08 182/week @ 2024-07-15 213/week @ 2024-07-22 131/week @ 2024-07-29 169/week @ 2024-08-05

每月701次 下载
用于 3 crates

MIT/Apache

33KB
632 代码行

test-span

用于对跟踪跨度进行快照测试的宏和工具。

docs Build status Apache 2.0 License MIT License

使用方法

请参阅测试以获取更全面的特性和行为列表

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