Skip to content

Commit

Permalink
test: add tracing-test crate for non-publishable test utils (#2466)
Browse files Browse the repository at this point in the history
There has been interest around publishing tracing-mock to crates.io
for some time. In order to make this possible, it needs to be cleaned up.

There are some test utils in the `tracing-mock` crate which wouldn't
make sense to publish. They provide test futures that are needed in
multiple `tracing-*` crates, but would likely not be needed outside that
context.

This change moves that functionality into a separate `tracing-test`
crate, which should never be published to crates.io.

Refs: #539

Co-authored-by: David Barsky <[email protected]>
  • Loading branch information
hds and davidbarsky committed Nov 7, 2024
1 parent 00809ea commit a87faa3
Show file tree
Hide file tree
Showing 16 changed files with 204 additions and 77 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ members = [
"tracing-mock",
"tracing-subscriber",
"tracing-serde",
"tracing-test",
"tracing-appender",
"tracing-journald",
"examples"
Expand Down
17 changes: 14 additions & 3 deletions tracing-attributes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,25 @@ async-await = []

[dependencies]
proc-macro2 = "1.0.60"
syn = { version = "2.0", default-features = false, features = ["full", "parsing", "printing", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
syn = { version = "2.0", default-features = false, features = [
"full",
"parsing",
"printing",
"visit-mut",
"clone-impls",
"extra-traits",
"proc-macro",
] }
quote = "1.0.20"

[dev-dependencies]
tracing = { path = "../tracing", version = "0.1.35" }
tracing-mock = { path = "../tracing-mock", features = ["tokio-test"] }
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", features = ["env-filter"] }
tracing-mock = { path = "../tracing-mock" }
tokio-test = "0.4.2"
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", features = [
"env-filter",
] }
tracing-test = { path = "../tracing-test" }
async-trait = "0.1.67"
trybuild = "1.0.64"
rustversion = "1.0.9"
Expand Down
5 changes: 3 additions & 2 deletions tracing-attributes/tests/async_fn.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
use tracing_mock::*;

use std::convert::Infallible;
use std::{future::Future, pin::Pin, sync::Arc};

use tracing::subscriber::with_default;
use tracing_attributes::instrument;
use tracing_mock::{expect, subscriber};
use tracing_test::{block_on_future, PollN};

#[instrument]
async fn test_async_fn(polls: usize) -> Result<(), ()> {
Expand Down
1 change: 1 addition & 0 deletions tracing-attributes/tests/err.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use tracing_attributes::instrument;
use tracing_mock::*;
use tracing_subscriber::filter::EnvFilter;
use tracing_subscriber::layer::SubscriberExt;
use tracing_test::{block_on_future, PollN};

use std::convert::TryFrom;
use std::num::TryFromIntError;
Expand Down
3 changes: 2 additions & 1 deletion tracing-attributes/tests/follows_from.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use tracing::{subscriber::with_default, Id, Level, Span};
use tracing_attributes::instrument;
use tracing_mock::*;
use tracing_mock::{expect, subscriber};
use tracing_test::block_on_future;

#[instrument(follows_from = causes, skip(causes))]
fn with_follows_from_sync(causes: impl IntoIterator<Item = impl Into<Option<Id>>>) {}
Expand Down
3 changes: 2 additions & 1 deletion tracing-attributes/tests/ret.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
use std::convert::TryFrom;
use std::num::TryFromIntError;
use tracing_mock::*;

use tracing::{subscriber::with_default, Level};
use tracing_attributes::instrument;
use tracing_mock::{expect, subscriber};
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::EnvFilter;
use tracing_test::block_on_future;

#[instrument(ret)]
fn ret() -> i32 {
Expand Down
3 changes: 2 additions & 1 deletion tracing-futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ mio = { version = "0.6.23", optional = true }
futures = "0.3.21"
tokio-test = "0.4.2"
tracing-core = { path = "../tracing-core", version = "0.1.28" }
tracing-mock = { path = "../tracing-mock", features = ["tokio-test"] }
tracing-mock = { path = "../tracing-mock" }
tracing-test = { path = "../tracing-test" }

[badges]
maintenance = { status = "actively-developed" }
Expand Down
3 changes: 2 additions & 1 deletion tracing-futures/tests/std_future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ use std::{future::Future, pin::Pin, task};
use futures::FutureExt as _;
use tracing::Instrument;
use tracing::{subscriber::with_default, Level};
use tracing_mock::*;
use tracing_mock::{expect, subscriber};
use tracing_test::{block_on_future, PollN};

#[test]
fn enter_exit_is_reasonable() {
Expand Down
1 change: 0 additions & 1 deletion tracing-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ publish = false
tracing = { path = "../tracing", version = "0.1.35", features = ["std", "attributes"], default-features = false }
tracing-core = { path = "../tracing-core", version = "0.1.28", default-features = false }
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry"], optional = true }
tokio-test = { version = "0.4.2", optional = true }

# Fix minimal-versions; tokio-test fails with otherwise acceptable 0.1.0
tokio-stream = { version = "0.1.9", optional = true }
Expand Down
65 changes: 0 additions & 65 deletions tracing-mock/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
#![doc = include_str!("../README.md")]
use std::{
pin::Pin,
task::{Context, Poll},
};

pub mod event;
pub mod expect;
pub mod field;
Expand All @@ -22,12 +17,6 @@ pub enum Parent {
Explicit(String),
}

pub struct PollN<T, E> {
and_return: Option<Result<T, E>>,
finish_at: usize,
polls: usize,
}

impl Parent {
pub fn check_parent_name(
&self,
Expand Down Expand Up @@ -104,57 +93,3 @@ impl Parent {
}
}
}

impl<T, E> std::future::Future for PollN<T, E>
where
T: Unpin,
E: Unpin,
{
type Output = Result<T, E>;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();

this.polls += 1;
if this.polls == this.finish_at {
let value = this.and_return.take().expect("polled after ready");

Poll::Ready(value)
} else {
cx.waker().wake_by_ref();
Poll::Pending
}
}
}

impl PollN<(), ()> {
pub fn new_ok(finish_at: usize) -> Self {
Self {
and_return: Some(Ok(())),
finish_at,
polls: 0,
}
}

pub fn new_err(finish_at: usize) -> Self {
Self {
and_return: Some(Err(())),
finish_at,
polls: 0,
}
}
}

#[cfg(feature = "tokio-test")]
pub fn block_on_future<F>(future: F) -> F::Output
where
F: std::future::Future,
{
use tokio_test::task;

let mut task = task::spawn(future);
loop {
if let Poll::Ready(v) = task.poll() {
break v;
}
}
}
26 changes: 26 additions & 0 deletions tracing-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## BIG SCARY NOTE
# This crate is internal and to be used for testing only. It should not
# be published to crates.io ever. If the functionality is needed outside
# the tracing project, it should be moved back to tracing-mock.

[package]
name = "tracing-test"
version = "0.1.0"
authors = [
"Eliza Weisman <[email protected]>",
"Tokio Contributors <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"
edition = "2018"
rust-version = "1.49.0"
publish = false

[dependencies]
tokio-test = "0.4.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
25 changes: 25 additions & 0 deletions tracing-test/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Copyright (c) 2019 Tokio Contributors

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the
Software without restriction, including without
limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice
shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
58 changes: 58 additions & 0 deletions tracing-test/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
![Tracing — Structured, application-level diagnostics][splash]

[splash]: https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/splash.svg

# tracing-test

Utilities for testing [`tracing`][tracing] and crates that uses it.

[![Documentation (master)][docs-master-badge]][docs-master-url]
[![MIT licensed][mit-badge]][mit-url]
[![Build Status][actions-badge]][actions-url]
[![Discord chat][discord-badge]][discord-url]

[Documentation][docs-master-url] | [Chat][discord-url]

[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_mock
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
[mit-url]: https://github.com/tokio-rs/tracing/blob/master/tracing-test/LICENSE
[actions-badge]: https://github.com/tokio-rs/tracing/workflows/CI/badge.svg
[actions-url]:https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI
[discord-badge]: https://img.shields.io/discord/500028886025895936?logo=discord&label=discord&logoColor=white
[discord-url]: https://discord.gg/EeF3cQw

## Overview

[`tracing`] is a framework for instrumenting Rust programs to collect
structured, event-based diagnostic information. `tracing-test` provides
some reusable tools to aid in testing, but that are only intended for
internal use. For mocks and expectations, see [`tracing-mock`].

*Compiler support: [requires `rustc` 1.56+][msrv]*

[msrv]: #supported-rust-versions

## Supported Rust Versions

Tracing is built against the latest stable release. The minimum supported
version is 1.56. The current Tracing version is not guaranteed to build on Rust
versions earlier than the minimum supported version.

Tracing follows the same compiler support policies as the rest of the Tokio
project. The current stable Rust compiler and the three most recent minor
versions before it will always be supported. For example, if the current stable
compiler version is 1.45, the minimum supported version will not be increased
past 1.42, three minor versions prior. Increasing the minimum supported compiler
version is not considered a semver breaking change as long as doing so complies
with this policy.

## License

This project is licensed under the [MIT license][mit-url].

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in Tracing by you, shall be licensed as MIT, without any additional
terms or conditions.
65 changes: 65 additions & 0 deletions tracing-test/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
use std::{
pin::Pin,
task::{Context, Poll},
};

#[allow(missing_docs)]

pub struct PollN<T, E> {
and_return: Option<Result<T, E>>,
finish_at: usize,
polls: usize,
}

impl<T, E> std::future::Future for PollN<T, E>
where
T: Unpin,
E: Unpin,
{
type Output = Result<T, E>;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.get_mut();

this.polls += 1;
if this.polls == this.finish_at {
let value = this.and_return.take().expect("polled after ready");

Poll::Ready(value)
} else {
cx.waker().wake_by_ref();
Poll::Pending
}
}
}

impl PollN<(), ()> {
pub fn new_ok(finish_at: usize) -> Self {
Self {
and_return: Some(Ok(())),
finish_at,
polls: 0,
}
}

pub fn new_err(finish_at: usize) -> Self {
Self {
and_return: Some(Err(())),
finish_at,
polls: 0,
}
}
}

pub fn block_on_future<F>(future: F) -> F::Output
where
F: std::future::Future,
{
use tokio_test::task;

let mut task = task::spawn(future);
loop {
if let Poll::Ready(v) = task.poll() {
break v;
}
}
}
2 changes: 1 addition & 1 deletion tracing/test_static_max_level_features/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ features = ["max_level_debug", "release_max_level_info"]

[dev-dependencies]
tokio-test = "0.2.0"
tracing-mock = { path = "../../tracing-mock", features = ["tokio-test"] }
tracing-test = { path = "../../tracing-test" }
3 changes: 2 additions & 1 deletion tracing/test_static_max_level_features/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use tracing::span::{Attributes, Record};
use tracing::{
debug, error, info, instrument, span, trace, warn, Subscriber, Event, Id, Level, Metadata,
};
use tracing_mock::*;
use tracing_core::span::Current;
use tracing_test::block_on_future;

struct State {
last_level: Mutex<Option<Level>>,
Expand Down

0 comments on commit a87faa3

Please sign in to comment.