File: duplicate_spans.rs

package info (click to toggle)
rustc-web 1.70.0%2Bdfsg1-7~deb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,517,048 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,006; asm: 2,856
file content (47 lines) | stat: -rw-r--r-- 1,588 bytes parent folder | download | duplicates (14)
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
#![cfg(all(feature = "env-filter", feature = "fmt"))]
use tracing::{self, subscriber::with_default, Span};
use tracing_subscriber::{filter::EnvFilter, FmtSubscriber};

#[test]
fn duplicate_spans() {
    let subscriber = FmtSubscriber::builder()
        .with_env_filter(EnvFilter::new("[root]=debug"))
        .finish();

    with_default(subscriber, || {
        let root = tracing::debug_span!("root");
        root.in_scope(|| {
            // root:
            assert_eq!(root, Span::current(), "Current span must be 'root'");
            let leaf = tracing::debug_span!("leaf");
            leaf.in_scope(|| {
                // root:leaf:
                assert_eq!(leaf, Span::current(), "Current span must be 'leaf'");
                root.in_scope(|| {
                    // root:leaf:
                    assert_eq!(
                        leaf,
                        Span::current(),
                        "Current span must be 'leaf' after entering twice the 'root' span"
                    );
                })
            });
            // root:
            assert_eq!(
                root,
                Span::current(),
                "Current span must be root ('leaf' exited, nested 'root' exited)"
            );

            root.in_scope(|| {
                assert_eq!(root, Span::current(), "Current span must be root");
            });
            // root:
            assert_eq!(
                root,
                Span::current(),
                "Current span must still be root after exiting nested 'root'"
            );
        });
    });
}