-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial testing utilities #1176
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ members = [ | |
"futures-io", | ||
"futures-sink", | ||
"futures-util", | ||
"futures-test", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
cargo-features = ["edition"] | ||
|
||
[package] | ||
name = "futures-test-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.3" | ||
authors = ["Wim Looman <wim@nemo157.com>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.3/futures_test" | ||
description = """ | ||
Common utilities for testing components built off futures-rs. | ||
""" | ||
|
||
[lib] | ||
name = "futures_test" | ||
|
||
[dependencies] | ||
futures-core-preview = { version = "0.3.0-alpha.2", path = "../futures-core", default-features = false } | ||
futures-util-preview = { version = "0.3.0-alpha.2", path = "../futures-util", default-features = false } | ||
futures-executor-preview = { version = "0.3.0-alpha.2", path = "../futures-executor", default-features = false } | ||
pin-utils = { version = "0.1.0-alpha.1", default-features = false } | ||
|
||
[dev-dependencies] | ||
futures-preview = { version = "0.3.0-alpha.2", path = "../futures", default-features = false, features = ["std"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE-APACHE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE-MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
use futures_core::stream::Stream; | ||
use std::marker::Unpin; | ||
|
||
#[doc(hidden)] | ||
pub fn assert_is_unpin_stream<S: Stream + Unpin>(_: &mut S) {} | ||
|
||
/// Assert that the next poll to the provided stream will return | ||
/// [`Poll::Pending`](futures_core::task::Poll::Pending). | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::stream; | ||
/// use futures_test::future::FutureTestExt; | ||
/// use futures_test::{ | ||
/// assert_stream_pending, assert_stream_next, assert_stream_done, | ||
/// }; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let mut stream = stream::once((async { 5 }).delay()); | ||
/// pin_mut!(stream); | ||
/// | ||
/// assert_stream_pending!(stream); | ||
/// assert_stream_next!(stream, 5); | ||
/// assert_stream_done!(stream); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! assert_stream_pending { | ||
($stream:expr) => {{ | ||
let mut stream = &mut $stream; | ||
$crate::assert::assert_is_unpin_stream(stream); | ||
let stream = $crate::std_reexport::mem::PinMut::new(stream); | ||
let cx = &mut $crate::task::no_spawn_context(); | ||
let poll = $crate::futures_core_reexport::stream::Stream::poll_next( | ||
stream, cx, | ||
); | ||
if poll.is_ready() { | ||
panic!("assertion failed: stream is not pending"); | ||
} | ||
}}; | ||
} | ||
|
||
/// Assert that the next poll to the provided stream will return | ||
/// [`Poll::Ready`](futures_core::task::Poll::Ready) with the provided item. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::stream; | ||
/// use futures_test::future::FutureTestExt; | ||
/// use futures_test::{ | ||
/// assert_stream_pending, assert_stream_next, assert_stream_done, | ||
/// }; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let mut stream = stream::once((async { 5 }).delay()); | ||
/// pin_mut!(stream); | ||
/// | ||
/// assert_stream_pending!(stream); | ||
/// assert_stream_next!(stream, 5); | ||
/// assert_stream_done!(stream); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! assert_stream_next { | ||
($stream:expr, $item:expr) => {{ | ||
let mut stream = &mut $stream; | ||
$crate::assert::assert_is_unpin_stream(stream); | ||
let stream = $crate::std_reexport::mem::PinMut::new(stream); | ||
let cx = &mut $crate::task::no_spawn_context(); | ||
match $crate::futures_core_reexport::stream::Stream::poll_next(stream, cx) { | ||
$crate::futures_core_reexport::task::Poll::Ready(Some(x)) => { | ||
assert_eq!(x, $item); | ||
} | ||
$crate::futures_core_reexport::task::Poll::Ready(None) => { | ||
panic!("assertion failed: expected stream to provide item but stream is at its end"); | ||
} | ||
$crate::futures_core_reexport::task::Poll::Pending => { | ||
panic!("assertion failed: expected stream to provide item but stream wasn't ready"); | ||
} | ||
} | ||
}} | ||
} | ||
|
||
/// Assert that the next poll to the provided stream will return an empty | ||
/// [`Poll::Ready`](futures_core::task::Poll::Ready) signalling the | ||
/// completion of the stream. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::stream; | ||
/// use futures_test::future::FutureTestExt; | ||
/// use futures_test::{ | ||
/// assert_stream_pending, assert_stream_next, assert_stream_done, | ||
/// }; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let mut stream = stream::once((async { 5 }).delay()); | ||
/// pin_mut!(stream); | ||
/// | ||
/// assert_stream_pending!(stream); | ||
/// assert_stream_next!(stream, 5); | ||
/// assert_stream_done!(stream); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! assert_stream_done { | ||
($stream:expr) => {{ | ||
let mut stream = &mut $stream; | ||
$crate::assert::assert_is_unpin_stream(stream); | ||
let stream = $crate::std_reexport::mem::PinMut::new(stream); | ||
let cx = &mut $crate::task::no_spawn_context(); | ||
match $crate::futures_core_reexport::stream::Stream::poll_next(stream, cx) { | ||
$crate::futures_core_reexport::task::Poll::Ready(Some(_)) => { | ||
panic!("assertion failed: expected stream to be done but had more elements"); | ||
} | ||
$crate::futures_core_reexport::task::Poll::Ready(None) => {} | ||
$crate::futures_core_reexport::task::Poll::Pending => { | ||
panic!("assertion failed: expected stream to be done but was pending"); | ||
} | ||
} | ||
}} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
use futures_core::future::Future; | ||
use futures_core::task::{self, Poll}; | ||
use std::mem::PinMut; | ||
use pin_utils::{unsafe_pinned, unsafe_unpinned}; | ||
|
||
/// Combinator that guarantees one [`Poll::Pending`] before polling its inner | ||
/// future. | ||
/// | ||
/// This is created by the [`FutureTestExt::delay`](super::FutureTestExt::delay) | ||
/// method. | ||
#[derive(Debug)] | ||
#[must_use = "futures do nothing unless polled"] | ||
pub struct Delayed<Fut: Future> { | ||
future: Fut, | ||
polled_before: bool, | ||
} | ||
|
||
impl<Fut: Future> Delayed<Fut> { | ||
unsafe_pinned!(future: Fut); | ||
unsafe_unpinned!(polled_before: bool); | ||
|
||
pub(super) fn new(future: Fut) -> Self { | ||
Self { | ||
future, | ||
polled_before: false, | ||
} | ||
} | ||
} | ||
|
||
impl<Fut: Future> Future for Delayed<Fut> { | ||
type Output = Fut::Output; | ||
|
||
fn poll( | ||
mut self: PinMut<Self>, | ||
cx: &mut task::Context, | ||
) -> Poll<Self::Output> { | ||
if *self.polled_before() { | ||
self.future().poll(cx) | ||
} else { | ||
*self.polled_before() = true; | ||
cx.waker().wake(); | ||
Poll::Pending | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
//! Additional combinators for testing futures. | ||
|
||
mod delay; | ||
|
||
use self::delay::Delayed; | ||
use futures_core::future::Future; | ||
use futures_executor; | ||
use std::thread; | ||
|
||
/// Additional combinators for testing futures. | ||
pub trait FutureTestExt: Future { | ||
/// Introduces one [`Poll::Pending`](futures_core::task::Poll::Pending) | ||
/// before polling the given future | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::task::Poll; | ||
/// use futures::future::FutureExt; | ||
/// use futures_test::task; | ||
/// use futures_test::future::FutureTestExt; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let future = (async { 5 }).delay(); | ||
/// pin_mut!(future); | ||
/// | ||
/// let cx = &mut task::no_spawn_context(); | ||
/// | ||
/// assert_eq!(future.poll_unpin(cx), Poll::Pending); | ||
/// assert_eq!(future.poll_unpin(cx), Poll::Ready(5)); | ||
/// ``` | ||
fn delay(self) -> Delayed<Self> | ||
where | ||
Self: Sized, | ||
{ | ||
delay::Delayed::new(self) | ||
} | ||
|
||
/// Runs this future on a dedicated executor running in a background thread. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::channel::oneshot; | ||
/// use futures::executor::block_on; | ||
/// use futures_test::future::FutureTestExt; | ||
/// | ||
/// let (tx, rx) = oneshot::channel::<i32>(); | ||
/// | ||
/// (async { tx.send(5).unwrap() }).run_in_background(); | ||
/// | ||
/// assert_eq!(block_on(rx), Ok(5)); | ||
/// ``` | ||
fn run_in_background(self) | ||
where | ||
Self: Sized + Send + 'static, | ||
Self::Output: Send, | ||
{ | ||
thread::spawn(|| futures_executor::block_on(self)); | ||
} | ||
} | ||
|
||
impl<Fut> FutureTestExt for Fut where Fut: Future {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//! Utilities to make testing [`Future`s](futures_core::Future) easier | ||
|
||
#![feature( | ||
arbitrary_self_types, | ||
async_await, | ||
await_macro, | ||
futures_api, | ||
pin, | ||
)] | ||
#![warn(missing_docs, missing_debug_implementations)] | ||
#![deny(bare_trait_objects)] | ||
#![doc( | ||
html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.3/futures_test" | ||
)] | ||
|
||
#[doc(hidden)] | ||
pub use std as std_reexport; | ||
|
||
#[doc(hidden)] | ||
pub extern crate futures_core as futures_core_reexport; | ||
|
||
#[macro_use] | ||
#[doc(hidden)] | ||
pub mod assert; | ||
|
||
pub mod task; | ||
|
||
pub mod future; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use crate::task::{spawn, wake}; | ||
use futures_core::task::Context; | ||
|
||
/// Create a new [`task::Context`](futures_core::task::Context) where both | ||
/// the [`waker`](futures_core::task::Context::waker) and | ||
/// [`spawner`](futures_core::task::Context::spawner) will panic if used. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ```should_panic | ||
/// #![feature(futures_api)] | ||
/// use futures_test::task; | ||
/// | ||
/// let cx = task::panic_context(); | ||
/// cx.waker().wake(); // Will panic | ||
/// ``` | ||
pub fn panic_context() -> Context<'static> { | ||
Context::new(wake::panic_local_waker_ref(), spawn::panic_mut()) | ||
} | ||
|
||
/// Create a new [`task::Context`](futures_core::task::Context) where the | ||
/// [`waker`](futures_core::task::Context::waker) will ignore any calls to | ||
/// `wake` while the [`spawner`](futures_core::task::Context::spawner) will | ||
/// panic if used. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::future::Future; | ||
/// use futures::task::Poll; | ||
/// use futures_test::task::no_spawn_context; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let mut future = async { 5 }; | ||
/// pin_mut!(future); | ||
/// | ||
/// assert_eq!(future.poll(&mut no_spawn_context()), Poll::Ready(5)); | ||
/// ``` | ||
pub fn no_spawn_context() -> Context<'static> { | ||
Context::new(wake::noop_local_waker_ref(), spawn::panic_mut()) | ||
} | ||
|
||
/// Create a new [`task::Context`](futures_core::task::Context) where the | ||
/// [`waker`](futures_core::task::Context::waker) and | ||
/// [`spawner`](futures_core::task::Context::spawner) will both ignore any | ||
/// uses. | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(async_await, futures_api, pin)] | ||
/// use futures::future::Future; | ||
/// use futures::task::Poll; | ||
/// use futures_test::task::noop_context; | ||
/// use pin_utils::pin_mut; | ||
/// | ||
/// let mut future = async { 5 }; | ||
/// pin_mut!(future); | ||
/// | ||
/// assert_eq!(future.poll(&mut noop_context()), Poll::Ready(5)); | ||
/// ``` | ||
pub fn noop_context() -> Context<'static> { | ||
Context::new(wake::noop_local_waker_ref(), spawn::noop_mut()) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as resolved.
Sorry, something went wrong.