Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
208 changes: 208 additions & 0 deletions tests-integration/tests/pool_acquire_cancelled_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,208 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

use std::future::Future;
use std::future::poll_fn;
use std::pin::pin;
use std::sync::Arc;
use std::sync::atomic::AtomicBool;
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
use std::task::Context;
use std::task::Poll;
use std::task::Wake;
use std::task::Waker;

use asyncband::pool::ManageObject;
use asyncband::pool::ObjectStatus;
use asyncband::pool::bounded::Pool;
use asyncband::pool::bounded::PoolConfig;

struct Manager {
create_calls: Arc<AtomicUsize>,
create_ready: Arc<AtomicBool>,
}

impl ManageObject for Manager {
type Object = usize;
type Error = ();

async fn create(&self) -> Result<Self::Object, Self::Error> {
let id = self.create_calls.fetch_add(1, Ordering::Relaxed);
// Tests explicitly poll again after changing this gate; no executor drives it.
poll_fn(|_| {
if self.create_ready.load(Ordering::Acquire) {
Poll::Ready(Ok(id))
} else {
Poll::Pending
}
})
.await
}

async fn is_recyclable(
&self,
_object: &mut Self::Object,
_status: &ObjectStatus,
) -> Result<(), Self::Error> {
Ok(())
}
}

#[derive(Default)]
struct WakeCount(AtomicUsize);

impl Wake for WakeCount {
fn wake(self: Arc<Self>) {
self.0.fetch_add(1, Ordering::Relaxed);
}
}

fn ready<T>(future: impl Future<Output = Result<T, ()>>) -> T {
ready_after_wake(future, &Arc::new(WakeCount(AtomicUsize::new(1))))
}

fn ready_after_wake<T>(future: impl Future<Output = Result<T, ()>>, wakes: &Arc<WakeCount>) -> T {
let mut future = pin!(future);
let waker = Waker::from(wakes.clone());
// Allow cooperative yields, but never poll away a missing notification or spin forever.
for _ in 0..32 {
assert!(wakes.0.swap(0, Ordering::Relaxed) > 0, "missing wake");
match future.as_mut().poll(&mut Context::from_waker(&waker)) {
Poll::Ready(Ok(value)) => return value,
Poll::Ready(Err(())) => panic!("operation should succeed"),
Poll::Pending => {}
}
}
panic!("operation did not finish within the test's poll budget");
}

fn cancel_waiter(return_before_cancel: bool) {
let create_calls = Arc::new(AtomicUsize::new(0));
let pool = Pool::new(
PoolConfig::new(1),
Manager {
create_calls: create_calls.clone(),
create_ready: Arc::new(AtomicBool::new(true)),
},
);
let held = ready(pool.get());
let mut first_wakes = Arc::new(WakeCount::default());
let mut next_wakes = Arc::new(WakeCount::default());
let first_waker = Waker::from(first_wakes.clone());
let next_waker = Waker::from(next_wakes.clone());
let mut first = Box::pin(pool.get());
let mut next = Box::pin(pool.get());
assert!(
first
.as_mut()
.poll(&mut Context::from_waker(&first_waker))
.is_pending()
);
assert!(
next.as_mut()
.poll(&mut Context::from_waker(&next_waker))
.is_pending()
);
assert_eq!(create_calls.load(Ordering::Relaxed), 1);

if return_before_cancel {
drop(held);
// Cancel a notified waiter without requiring FIFO notification order.
if first_wakes.0.load(Ordering::Relaxed) == 0 {
std::mem::swap(&mut first, &mut next);
std::mem::swap(&mut first_wakes, &mut next_wakes);
}
assert!(first_wakes.0.load(Ordering::Relaxed) > 0);
// Cancel the notified future without polling it to retrieve its permit.
drop(first);
} else {
drop(first);
drop(held);
}

// A notification from returning the object is just as valid as one from cancellation.
let object = ready_after_wake(next.as_mut(), &next_wakes);
assert_eq!(*object, 0);
assert_eq!(create_calls.load(Ordering::Relaxed), 1);
assert_eq!(pool.status().current_size, 1);
assert_eq!(pool.status().idle_count, 0);

let mut extra = Box::pin(pool.get());
assert!(tests_integration::poll_once(extra.as_mut()).is_pending());
assert_eq!(create_calls.load(Ordering::Relaxed), 1);
drop(extra);
drop(object);
assert_eq!(pool.status().idle_count, 1);
assert_eq!(*ready(pool.get()), 0);
}

#[test]
fn cancelling_queued_get_preserves_follower_progress() {
cancel_waiter(false);
}

#[test]
fn cancelling_notified_get_preserves_follower_progress() {
cancel_waiter(true);
}

#[test]
fn cancelling_create_restores_capacity_for_waiting_get() {
let create_calls = Arc::new(AtomicUsize::new(0));
let create_ready = Arc::new(AtomicBool::new(false));
let pool = Pool::new(
PoolConfig::new(1),
Manager {
create_calls: create_calls.clone(),
create_ready: create_ready.clone(),
},
);
let mut creating = Box::pin(pool.get());
assert!(tests_integration::poll_once(creating.as_mut()).is_pending());
assert_eq!(create_calls.load(Ordering::Relaxed), 1);
assert_eq!(pool.status().current_size, 0);

let wakes = Arc::new(WakeCount::default());
let waker = Waker::from(wakes.clone());
let mut next = Box::pin(pool.get());
assert!(
next.as_mut()
.poll(&mut Context::from_waker(&waker))
.is_pending()
);
assert_eq!(create_calls.load(Ordering::Relaxed), 1);
drop(creating);
assert!(wakes.0.load(Ordering::Relaxed) > 0);
assert_eq!(pool.status().current_size, 0);
assert_eq!(pool.status().idle_count, 0);

create_ready.store(true, Ordering::Release);
let object = ready_after_wake(next.as_mut(), &wakes);
assert_eq!(*object, 1);
assert_eq!(create_calls.load(Ordering::Relaxed), 2);
assert_eq!(pool.status().current_size, 1);
assert_eq!(pool.status().idle_count, 0);
let mut extra = Box::pin(pool.get());
assert!(tests_integration::poll_once(extra.as_mut()).is_pending());
assert_eq!(create_calls.load(Ordering::Relaxed), 2);
drop(extra);
drop(object);
assert_eq!(pool.status().idle_count, 1);
assert_eq!(*ready(pool.get()), 1);
assert_eq!(create_calls.load(Ordering::Relaxed), 2);
}