1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-07 23:44:22 +01:00
actix-net/actix-server/src/test_server.rs

166 lines
4.4 KiB
Rust
Raw Normal View History

2021-11-15 18:48:37 +00:00
use std::{io, net, sync::mpsc, thread};
2019-09-17 16:04:20 +06:00
2019-12-02 11:49:42 +06:00
use actix_rt::{net::TcpStream, System};
2019-09-17 16:04:20 +06:00
2021-12-26 22:32:35 +00:00
use crate::{Server, ServerBuilder, ServerHandle, ServerServiceFactory};
2019-09-17 16:04:20 +06:00
/// A testing server.
2019-09-17 16:04:20 +06:00
///
/// `TestServer` is very simple test server that simplify process of writing integration tests for
/// network applications.
2019-09-17 16:04:20 +06:00
///
/// # Examples
/// ```
2019-12-08 19:05:05 +06:00
/// use actix_service::fn_service;
/// use actix_server::TestServer;
2019-09-17 16:04:20 +06:00
///
2019-12-05 16:40:24 +06:00
/// #[actix_rt::main]
/// async fn main() {
2019-12-08 19:05:05 +06:00
/// let srv = TestServer::with(|| fn_service(
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
2019-11-14 18:38:24 +06:00
/// |sock| async move {
2019-09-17 16:04:20 +06:00
/// println!("New connection: {:?}", sock);
/// Ok::<_, ()>(())
/// }
/// ));
///
/// println!("SOCKET: {:?}", srv.connect());
/// }
/// ```
pub struct TestServer;
2020-09-19 22:12:41 +08:00
/// Test server runtime
2019-09-17 16:04:20 +06:00
pub struct TestServerRuntime {
addr: net::SocketAddr,
host: String,
port: u16,
2021-11-04 20:30:43 +00:00
server_handle: ServerHandle,
thread_handle: Option<thread::JoinHandle<io::Result<()>>>,
2019-09-17 16:04:20 +06:00
}
impl TestServer {
/// Start new server with server builder.
2019-12-02 22:30:09 +06:00
pub fn start<F>(mut factory: F) -> TestServerRuntime
2019-09-17 16:04:20 +06:00
where
F: FnMut(ServerBuilder) -> ServerBuilder + Send + 'static,
{
let (tx, rx) = mpsc::channel();
// run server in separate thread
2021-11-04 20:30:43 +00:00
let thread_handle = thread::spawn(move || {
System::new().block_on(async {
let server = factory(Server::build()).workers(1).disable_signals().run();
tx.send(server.handle()).unwrap();
server.await
})
2019-09-17 16:04:20 +06:00
});
2021-11-04 20:30:43 +00:00
let server_handle = rx.recv().unwrap();
2019-09-17 16:04:20 +06:00
TestServerRuntime {
addr: "127.0.0.1:0".parse().unwrap(),
host: "127.0.0.1".to_string(),
port: 0,
2021-11-04 20:30:43 +00:00
server_handle,
thread_handle: Some(thread_handle),
2019-09-17 16:04:20 +06:00
}
}
/// Start new test server with application factory.
2021-12-26 22:32:35 +00:00
pub fn with<F: ServerServiceFactory<TcpStream>>(factory: F) -> TestServerRuntime {
2019-09-17 16:04:20 +06:00
let (tx, rx) = mpsc::channel();
// run server in separate thread
2021-11-04 20:30:43 +00:00
let thread_handle = thread::spawn(move || {
let sys = System::new();
2019-09-17 16:04:20 +06:00
let tcp = net::TcpListener::bind("127.0.0.1:0").unwrap();
let local_addr = tcp.local_addr().unwrap();
sys.block_on(async {
2021-11-04 20:30:43 +00:00
let server = Server::build()
.listen("test", tcp, factory)
.unwrap()
.workers(1)
.disable_signals()
.run();
2021-11-04 20:30:43 +00:00
tx.send((server.handle(), local_addr)).unwrap();
server.await
})
2019-09-17 16:04:20 +06:00
});
2021-11-04 20:30:43 +00:00
let (server_handle, addr) = rx.recv().unwrap();
2019-09-17 16:04:20 +06:00
let host = format!("{}", addr.ip());
let port = addr.port();
TestServerRuntime {
addr,
host,
port,
2021-11-04 20:30:43 +00:00
server_handle,
thread_handle: Some(thread_handle),
2019-09-17 16:04:20 +06:00
}
}
/// Get first available unused local address.
2019-09-17 16:04:20 +06:00
pub fn unused_addr() -> net::SocketAddr {
2021-11-15 18:48:37 +00:00
use socket2::{Domain, Protocol, Socket, Type};
2019-09-17 16:04:20 +06:00
let addr: net::SocketAddr = "127.0.0.1:0".parse().unwrap();
2021-11-15 18:48:37 +00:00
let socket =
Socket::new(Domain::for_address(addr), Type::STREAM, Some(Protocol::TCP)).unwrap();
socket.set_reuse_address(true).unwrap();
socket.set_nonblocking(true).unwrap();
socket.bind(&addr.into()).unwrap();
socket.listen(1024).unwrap();
net::TcpListener::from(socket).local_addr().unwrap()
2019-09-17 16:04:20 +06:00
}
}
impl TestServerRuntime {
/// Test server host.
2019-09-17 16:04:20 +06:00
pub fn host(&self) -> &str {
&self.host
}
/// Test server port.
2019-09-17 16:04:20 +06:00
pub fn port(&self) -> u16 {
self.port
}
/// Get test server address.
2019-09-17 16:04:20 +06:00
pub fn addr(&self) -> net::SocketAddr {
self.addr
}
/// Stop server.
2019-09-17 16:04:20 +06:00
fn stop(&mut self) {
2021-11-04 20:30:43 +00:00
let _ = self.server_handle.stop(false);
self.thread_handle.take().unwrap().join().unwrap().unwrap();
2019-09-17 16:04:20 +06:00
}
/// Connect to server, returning a Tokio `TcpStream`.
2019-09-17 16:04:20 +06:00
pub fn connect(&self) -> std::io::Result<TcpStream> {
2019-12-05 16:40:24 +06:00
TcpStream::from_std(net::TcpStream::connect(self.addr)?)
2019-09-17 16:04:20 +06:00
}
}
impl Drop for TestServerRuntime {
fn drop(&mut self) {
self.stop()
}
}
2021-11-14 19:45:15 +00:00
#[cfg(test)]
mod tests {
use actix_service::fn_service;
use super::*;
#[tokio::test]
async fn plain_tokio_runtime() {
let srv = TestServer::with(|| fn_service(|_sock| async move { Ok::<_, ()>(()) }));
assert!(srv.connect().is_ok());
}
}