1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
//! Utilities for Aldrin server and client tests
//!
//! This crate provides a simple way to quickly setup a complete Aldrin bus with a broker and
//! multiple clients and is intended to be used in unit tests.
//!
//! If you are using Tokio, it is strongly recommended to enable this crate's `tokio` feature and
//! use the types in the `tokio` module instead of the crate-level types.
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(rustdoc::broken_intra_doc_links)]
#[cfg(test)]
mod test;
mod transport;
#[cfg(feature = "tokio")]
pub mod tokio;
use aldrin::{Client, Handle};
use aldrin_broker::{Broker, BrokerHandle, Connection, ConnectionHandle};
use aldrin_core::channel;
use futures_util::future;
use std::ops::{Deref, DerefMut};
// For tests directly in aldrin_broker and aldrin.
#[doc(hidden)]
pub use {aldrin, aldrin_broker};
pub use transport::TestTransport;
/// Broker for use in tests.
///
/// This type is a simple wrapper around [`aldrin_broker::Broker`] and
/// [`aldrin_broker::BrokerHandle`]. All method of [`BrokerHandle`] can be called on this type as
/// well due to its [`Deref`] implementation.
///
/// The underlying [`Broker`] is not automatically started. Users must
/// [take the `broker`](TestBroker::take_broker) and [run](Broker::run) it manually.
///
/// See the [crate-level documentation](crate) for usage examples.
#[derive(Debug)]
pub struct TestBroker {
/// Handle to the broker.
pub handle: BrokerHandle,
broker: Option<Broker>,
}
impl TestBroker {
/// Creates a new broker.
pub fn new() -> Self {
let broker = Broker::new();
let handle = broker.handle().clone();
TestBroker {
handle,
broker: Some(broker),
}
}
/// Takes the broker out of this struct.
///
/// After creating a [`TestBroker`], the actual [`Broker`] must be taken out and
/// [run](Broker::run).
///
/// # Panics
///
/// This function panics when the [`Broker`] has already been taken out. It must be called only
/// once.
pub fn take_broker(&mut self) -> Broker {
self.broker.take().expect("broker already taken")
}
/// Creates a new `ClientBuilder`.
///
/// Use of this function is recommended only if non-default settings are required for the
/// [`Client`] or its [`Connection`]. A default [`Client`] can be added directly with
/// [`add_client`](TestBroker::add_client).
pub fn client_builder(&self) -> ClientBuilder {
ClientBuilder::new(self.handle.clone())
}
/// Creates a default `Client`.
///
/// If you need more control over the [`Client`] and [`Connection`] settings, then use
/// [`client_builder`](TestBroker::client_builder) instead.
pub async fn add_client(&self) -> TestClient {
self.client_builder().build().await
}
}
impl Default for TestBroker {
fn default() -> Self {
TestBroker::new()
}
}
impl Deref for TestBroker {
type Target = BrokerHandle;
fn deref(&self) -> &BrokerHandle {
&self.handle
}
}
impl DerefMut for TestBroker {
fn deref_mut(&mut self) -> &mut BrokerHandle {
&mut self.handle
}
}
/// Builder struct for a new `Client`.
///
/// A [`ClientBuilder`] allows for more control over how [`Client`] and [`Connection`] are setup,
/// specifically what kind of channel is used as the transport. If you do not require any special
/// settings, it is recommended to use [`TestBroker::add_client`] instead.
#[derive(Debug, Clone)]
pub struct ClientBuilder {
broker: BrokerHandle,
channel: Option<usize>,
}
impl ClientBuilder {
/// Creates a new `ClientBuilder`.
///
/// The default [`ClientBuilder`] is configured to use an unbounded channel between [`Broker`]
/// and [`Client`].
pub fn new(broker: BrokerHandle) -> Self {
ClientBuilder {
broker,
channel: None,
}
}
/// Creates a new `TestClient` with the current settings.
pub async fn build(mut self) -> TestClient {
let (t1, t2): (Box<dyn TestTransport>, Box<dyn TestTransport>) = match self.channel {
Some(fifo_size) => {
let (t1, t2) = channel::bounded(fifo_size);
(Box::new(t1), Box::new(t2))
}
None => {
let (t1, t2) = channel::unbounded();
(Box::new(t1), Box::new(t2))
}
};
let client = Client::connect(t1);
let conn = self.broker.connect(t2);
let (client, conn) = future::join(client, conn).await;
let client = client.expect("client failed to connect");
let handle = client.handle().clone();
let conn = conn.expect("connection failed to establish");
let connection_handle = conn.handle().clone();
TestClient {
handle,
connection_handle,
client: Some(client),
conn: Some(conn),
}
}
/// Uses an unbounded channel as the transport between `Broker` and `Client`.
///
/// This is the default after creating a new [`ClientBuilder`].
#[must_use = "this method follows the builder pattern and returns a new `ClientBuilder`"]
pub fn unbounded_channel(mut self) -> Self {
self.channel = None;
self
}
/// Uses a bounded channel as the transport between `Broker` and `Client`.
///
/// See [`aldrin_core::channel::bounded`] for more information on the `fifo_size` parameter.
#[must_use = "this method follows the builder pattern and returns a new `ClientBuilder`"]
pub fn bounded_channel(mut self, fifo_size: usize) -> Self {
self.channel = Some(fifo_size);
self
}
}
/// Client for use in tests.
///
/// [`TestClient`s](TestClient) with default settings can be created using
/// [`TestBroker::add_client`], or alternatively with a [`ClientBuilder`] if more control over the
/// settings is required.
///
/// After creating a [`TestClient`], it is fully connected to the [`TestBroker`], but neither the
/// underlying [`Client`] nor the [`Connection`] are running. This must be done manually by taking
/// both parts out and calling their respective `run` methods (see
/// [`take_client`](Self::take_client) and [`take_connection`](Self::take_connection).
///
/// [`TestClient`] dereferences to [`aldrin::Handle`] and thus all methods on [`Handle`] can
/// be called on [`TestClient`] as well.
#[derive(Debug)]
pub struct TestClient {
/// `Handle` to the `Client`.
pub handle: Handle,
/// `ConnectionHandle` to the `Connection`.
pub connection_handle: ConnectionHandle,
client: Option<Client<Box<dyn TestTransport>>>,
conn: Option<Connection<Box<dyn TestTransport>>>,
}
impl TestClient {
/// Creates a new `ClientBuilder`.
pub fn builder(broker: BrokerHandle) -> ClientBuilder {
ClientBuilder::new(broker)
}
/// Takes the `Client` out of this struct.
///
/// After creating a [`TestClient`], the actual [`Client`] must be taken out and
/// [run](Client::run).
///
/// # Panics
///
/// This function panics when the [`Client`] has already been taken out. It must be called only
/// once.
pub fn take_client(&mut self) -> Client<Box<dyn TestTransport>> {
self.client.take().expect("client already taken")
}
/// Takes the `Connection` out of this struct.
///
/// After creating a [`TestClient`], the actual [`Connection`] must be taken out and
/// [run](Connection::run).
///
/// # Panics
///
/// This function panics when the [`Connection`] has already been taken out. It must be called
/// only once.
pub fn take_connection(&mut self) -> Connection<Box<dyn TestTransport>> {
self.conn.take().expect("connection already taken")
}
}
impl Deref for TestClient {
type Target = Handle;
fn deref(&self) -> &Handle {
&self.handle
}
}