rust/tests/ui/async-await/async-await.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

219 lines
4.7 KiB
Rust
Raw Normal View History

//@ run-pass
//@ revisions: default nomiropt
//@[nomiropt]compile-flags: -Z mir-opt-level=0
#![allow(unused)]
//@ edition: 2018
2019-02-06 04:32:35 +00:00
//@ aux-build:arc_wake.rs
2018-06-06 22:50:59 +00:00
2019-02-06 04:32:35 +00:00
extern crate arc_wake;
use std::pin::Pin;
2018-06-06 22:50:59 +00:00
use std::future::Future;
use std::sync::{
Arc,
atomic::{self, AtomicUsize},
};
2019-03-11 23:56:00 +00:00
use std::task::{Context, Poll};
2019-02-06 04:32:35 +00:00
use arc_wake::ArcWake;
2019-02-03 20:59:51 +00:00
2018-06-06 22:50:59 +00:00
struct Counter {
wakes: AtomicUsize,
}
2019-02-03 20:59:51 +00:00
impl ArcWake for Counter {
fn wake(self: Arc<Self>) {
Self::wake_by_ref(&self)
}
fn wake_by_ref(arc_self: &Arc<Self>) {
2019-02-03 20:59:51 +00:00
arc_self.wakes.fetch_add(1, atomic::Ordering::SeqCst);
2018-06-06 22:50:59 +00:00
}
}
struct WakeOnceThenComplete(bool);
fn wake_and_yield_once() -> WakeOnceThenComplete { WakeOnceThenComplete(false) }
impl Future for WakeOnceThenComplete {
type Output = ();
2019-03-11 23:56:00 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
2018-06-06 22:50:59 +00:00
if self.0 {
Poll::Ready(())
} else {
cx.waker().wake_by_ref();
2018-06-06 22:50:59 +00:00
self.0 = true;
Poll::Pending
}
}
}
fn async_block(x: u8) -> impl Future<Output = u8> {
async move {
wake_and_yield_once().await;
2018-06-06 22:50:59 +00:00
x
}
}
fn async_block_with_borrow_named_lifetime<'a>(x: &'a u8) -> impl Future<Output = u8> + 'a {
async move {
wake_and_yield_once().await;
*x
2018-09-06 21:18:39 +00:00
}
}
2018-06-06 22:50:59 +00:00
fn async_nonmove_block(x: u8) -> impl Future<Output = u8> {
async move {
let future = async {
wake_and_yield_once().await;
2018-06-06 22:50:59 +00:00
x
};
future.await
2018-06-06 22:50:59 +00:00
}
}
// see async-closure.rs for async_closure + async_closure_in_unsafe_block
2018-06-06 22:50:59 +00:00
async fn async_fn(x: u8) -> u8 {
wake_and_yield_once().await;
2018-06-06 22:50:59 +00:00
x
}
async fn generic_async_fn<T>(x: T) -> T {
wake_and_yield_once().await;
x
}
2018-06-06 22:50:59 +00:00
async fn async_fn_with_borrow(x: &u8) -> u8 {
wake_and_yield_once().await;
2018-06-06 22:50:59 +00:00
*x
}
async fn async_fn_with_borrow_named_lifetime<'a>(x: &'a u8) -> u8 {
wake_and_yield_once().await;
*x
}
fn async_fn_with_impl_future_named_lifetime<'a>(x: &'a u8) -> impl Future<Output = u8> + 'a {
async move {
wake_and_yield_once().await;
*x
}
}
async fn async_fn_multiple_args(x: &u8, _y: &u8) -> u8 {
2019-08-02 00:14:33 +00:00
wake_and_yield_once().await;
*x
}
async fn async_fn_multiple_args_named_lifetime<'a>(x: &'a u8, _y: &'a u8) -> u8 {
wake_and_yield_once().await;
2018-09-06 21:18:39 +00:00
*x
}
2018-06-06 22:50:59 +00:00
fn async_fn_with_internal_borrow(y: u8) -> impl Future<Output = u8> {
async move {
async_fn_with_borrow_named_lifetime(&y).await
2018-06-06 22:50:59 +00:00
}
}
async unsafe fn unsafe_async_fn(x: u8) -> u8 {
wake_and_yield_once().await;
x
}
unsafe fn unsafe_fn(x: u8) -> u8 {
x
}
fn async_block_in_unsafe_block(x: u8) -> impl Future<Output = u8> {
unsafe {
async move {
unsafe_fn(unsafe_async_fn(x).await)
}
}
}
2018-06-19 04:18:10 +00:00
struct Foo;
trait Bar {
fn foo() {}
}
impl Foo {
async fn async_assoc_item(x: u8) -> u8 {
unsafe {
unsafe_async_fn(x).await
}
}
async unsafe fn async_unsafe_assoc_item(x: u8) -> u8 {
unsafe_async_fn(x).await
}
}
2018-06-06 22:50:59 +00:00
fn test_future_yields_once_then_returns<F, Fut>(f: F)
where
F: FnOnce(u8) -> Fut,
Fut: Future<Output = u8>,
{
2018-12-18 18:25:02 +00:00
let mut fut = Box::pin(f(9));
2018-06-06 22:50:59 +00:00
let counter = Arc::new(Counter { wakes: AtomicUsize::new(0) });
2019-02-03 20:59:51 +00:00
let waker = ArcWake::into_waker(counter.clone());
2019-03-11 23:56:00 +00:00
let mut cx = Context::from_waker(&waker);
2018-06-06 22:50:59 +00:00
assert_eq!(0, counter.wakes.load(atomic::Ordering::SeqCst));
2019-03-11 23:56:00 +00:00
assert_eq!(Poll::Pending, fut.as_mut().poll(&mut cx));
2018-06-06 22:50:59 +00:00
assert_eq!(1, counter.wakes.load(atomic::Ordering::SeqCst));
2019-03-11 23:56:00 +00:00
assert_eq!(Poll::Ready(9), fut.as_mut().poll(&mut cx));
2018-06-06 22:50:59 +00:00
}
fn main() {
macro_rules! test {
($($fn_name:expr,)*) => { $(
2018-06-06 22:50:59 +00:00
test_future_yields_once_then_returns($fn_name);
)* }
}
macro_rules! test_with_borrow {
($($fn_name:expr,)*) => { $(
2018-09-06 21:18:39 +00:00
test_future_yields_once_then_returns(|x| {
async move {
$fn_name(&x).await
}
});
)* }
}
2018-06-06 22:50:59 +00:00
test! {
async_block,
async_nonmove_block,
async_fn,
generic_async_fn,
2018-06-06 22:50:59 +00:00
async_fn_with_internal_borrow,
async_block_in_unsafe_block,
Foo::async_assoc_item,
2018-09-06 21:18:39 +00:00
|x| {
async move {
unsafe { unsafe_async_fn(x).await }
2018-09-06 21:18:39 +00:00
}
},
|x| {
async move {
unsafe { Foo::async_unsafe_assoc_item(x).await }
}
},
}
test_with_borrow! {
async_block_with_borrow_named_lifetime,
async_fn_with_borrow,
async_fn_with_borrow_named_lifetime,
async_fn_with_impl_future_named_lifetime,
2018-09-06 21:18:39 +00:00
|x| {
async move {
async_fn_multiple_args_named_lifetime(x, x).await
}
},
2018-06-06 22:50:59 +00:00
}
}