use std::time::Duration;
use pin_project_lite::pin_project;
use serial_test::serial;
use tokio::time::{Sleep, sleep};
use tracing::instrument;
use crate::{
TimeoutElapsed,
tests::{insta_trace_filters, run_with_tracing},
};
#[tokio::test]
#[serial]
async fn with_custom_future() {
let result = run_with_tracing(Duration::from_millis(100), do_sleep()).await;
assert!(matches!(result, Err(TimeoutElapsed { .. })));
assert_eq!(result.as_ref().err().unwrap().active_traces.len(), 1);
assert!(
result
.as_ref()
.err()
.unwrap()
.active_traces
.iter()
.any(|e| e.stack_trace.to_string().contains("do_sleep"))
);
insta::with_settings!({
filters => insta_trace_filters()
}, {
insta::assert_debug_snapshot!(result);
});
}
#[instrument]
async fn do_sleep() {
CustomFut::new(Duration::from_secs(1)).await;
}
pin_project! {
struct CustomFut {
#[pin]
inner: Sleep,
}
}
impl CustomFut {
fn new(duration: Duration) -> Self {
Self {
inner: sleep(duration),
}
}
}
impl Future for CustomFut {
type Output = ();
fn poll(
self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Self::Output> {
_ = cx.waker().clone();
self.project().inner.poll(cx)
}
}