subscriber: add feature flags to tests (#1532)

## Motivation

Currently we can't run

```bash
cargo test -p tracing-subscriber --no-default-features
```

successfully, because there are a bunch of tests for feature flagged
APIs that are always enabled.

## Solution

This commit adds feature flags to the modules and/or individual test
cases that test feature-flagged APIs.

There are still a few doctests that use feature-flagged APIs, and will
fail with `--no-default-features`. These are primarily the examples for
various `Layer::context` methods that rely on `LookupSpan`, and use the
`Registry` type, as it's the only subscriber that *implements*
`LookupSpan`. We could consider changing these examples, either by
removing the actual use of the layers in them, or by changing them to
use a mocked-out version of the registry. However, I think it's nicer to
show how the API would be used in real life. Perhaps we should just run

```bash
cargo test -p tracing-subscriber --no-default-features--tests --lib
```

to ignore doctests when testing without default features.

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2021-09-02 10:43:34 -07:00 committed by GitHub
parent 06ecec499b
commit ca19cd2af1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 15 additions and 3 deletions

View File

@ -1301,7 +1301,6 @@ impl Identity {
#[cfg(test)]
pub(crate) mod tests {
use std::sync::{Arc, Mutex};
use super::*;
@ -1419,7 +1418,9 @@ pub(crate) mod tests {
}
#[test]
#[cfg(feature = "registry")]
fn context_event_span() {
use std::sync::{Arc, Mutex};
let last_event_span = Arc::new(Mutex::new(None));
struct RecordingLayer {

View File

@ -474,7 +474,7 @@ where
}
}
#[cfg(test)]
#[cfg(all(test, feature = "registry"))]
mod tests {
use crate::{
layer::{Context, Layer},

View File

@ -1,3 +1,4 @@
#![cfg(all(feature = "env-filter", feature = "fmt"))]
mod support;
use tracing::{self, subscriber::with_default, Span};
use tracing_subscriber::{filter::EnvFilter, FmtSubscriber};

View File

@ -1,3 +1,4 @@
#![cfg(feature = "env-filter")]
mod support;
use self::support::*;
use tracing::{self, subscriber::with_default, Level};

View File

@ -1,3 +1,5 @@
#![cfg(feature = "env-filter")]
mod support;
use self::support::*;
use tracing::{self, subscriber::with_default, Level};

View File

@ -1,3 +1,4 @@
#![cfg(all(feature = "env-filter", feature = "tracing-log"))]
mod support;
use self::support::*;
use tracing::{self, Level};

View File

@ -1,3 +1,4 @@
#![cfg(feature = "fmt")]
use tracing_subscriber::filter::LevelFilter;
#[test]

View File

@ -1,3 +1,4 @@
#![cfg(all(feature = "registry", feature = "fmt"))]
use tracing_subscriber::{filter::LevelFilter, prelude::*};
#[test]

View File

@ -1,3 +1,4 @@
#![cfg(feature = "registry")]
use tracing_futures::{Instrument, WithSubscriber};
use tracing_subscriber::prelude::*;

View File

@ -1,3 +1,4 @@
#![cfg(feature = "reload")]
use std::sync::atomic::{AtomicUsize, Ordering};
use tracing_core::{
span::{Attributes, Id, Record},

View File

@ -1,6 +1,6 @@
// These tests include field filters with no targets, so they have to go in a
// separate file.
#![cfg(feature = "env-filter")]
mod support;
use self::support::*;
use tracing::{self, subscriber::with_default, Level};

View File

@ -19,6 +19,7 @@ fn init_ext_works() {
}
#[test]
#[cfg(feature = "fmt")]
fn builders_are_init_ext() {
tracing_subscriber::fmt().set_default();
let _ = tracing_subscriber::fmt()
@ -28,6 +29,7 @@ fn builders_are_init_ext() {
}
#[test]
#[cfg(all(feature = "fmt", feature = "env-filter"))]
fn layered_is_init_ext() {
tracing_subscriber::registry()
.with(tracing_subscriber::fmt::layer())