[][src]Trait futures_test::sink::SinkTestExt

pub trait SinkTestExt<Item>: Sink<Item> {
    pub fn assert_unmoved_sink(self) -> AssertUnmoved<Self>

Notable traits for AssertUnmoved<Fut>

impl<Fut: Future> Future for AssertUnmoved<Fut> type Output = Fut::Output;

    where
        Self: Sized
, { ... }
pub fn interleave_pending_sink(self) -> InterleavePending<Self>

Notable traits for InterleavePending<Fut>

impl<Fut: Future> Future for InterleavePending<Fut> type Output = Fut::Output;

    where
        Self: Sized
, { ... }
pub fn track_closed(self) -> TrackClosed<Self>
    where
        Self: Sized
, { ... } }

Additional combinators for testing sinks.

Provided methods

pub fn assert_unmoved_sink(self) -> AssertUnmoved<Self>

Notable traits for AssertUnmoved<Fut>

impl<Fut: Future> Future for AssertUnmoved<Fut> type Output = Fut::Output;
where
    Self: Sized
[src]

Asserts that the given is not moved after being polled.

A check for movement is performed each time the sink is polled and when Drop is called.

Aside from keeping track of the location at which the sink was first polled and providing assertions, this sink adds no runtime behavior and simply delegates to the child sink.

pub fn interleave_pending_sink(self) -> InterleavePending<Self>

Notable traits for InterleavePending<Fut>

impl<Fut: Future> Future for InterleavePending<Fut> type Output = Fut::Output;
where
    Self: Sized
[src]

Introduces an extra Poll::Pending in between each operation on the sink.

pub fn track_closed(self) -> TrackClosed<Self> where
    Self: Sized
[src]

Track whether this sink has been closed and panics if it is used after closing.

Examples

use futures::sink::{SinkExt, drain};
use futures_test::sink::SinkTestExt;

let mut sink = drain::<i32>().track_closed();

sink.send(1).await?;
assert!(!sink.is_closed());
sink.close().await?;
assert!(sink.is_closed());

Note: Unlike AsyncWriteTestExt::track_closed when used as a sink the adaptor will panic if closed too early as there's no easy way to integrate as an error.

use std::panic::AssertUnwindSafe;
use futures::{sink::{SinkExt, drain}, future::FutureExt};
use futures_test::sink::SinkTestExt;

let mut sink = drain::<i32>().track_closed();

sink.close().await?;
assert!(AssertUnwindSafe(sink.send(1)).catch_unwind().await.is_err());
Loading content...

Implementors

impl<Item, W> SinkTestExt<Item> for W where
    W: Sink<Item>, 
[src]

Loading content...