summaryrefslogtreecommitdiffstats
path: root/vendor/tracing-subscriber/tests/duplicate_spans.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/tracing-subscriber/tests/duplicate_spans.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/tracing-subscriber/tests/duplicate_spans.rs')
-rw-r--r--vendor/tracing-subscriber/tests/duplicate_spans.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/vendor/tracing-subscriber/tests/duplicate_spans.rs b/vendor/tracing-subscriber/tests/duplicate_spans.rs
new file mode 100644
index 000000000..5d4dc6a85
--- /dev/null
+++ b/vendor/tracing-subscriber/tests/duplicate_spans.rs
@@ -0,0 +1,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'"
+ );
+ });
+ });
+}