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

154 lines
4.1 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() {
2021-12-27 18:27:54 +00:00
/// let srv = TestServer::start(|| 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;
2021-12-27 18:27:54 +00:00
/// Test server handle.
pub struct TestServerHandle {
2019-09-17 16:04:20 +06:00
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 {
2021-12-27 18:27:54 +00:00
/// Start new `TestServer` using application factory and default server config.
pub fn start(factory: impl ServerServiceFactory<TcpStream>) -> TestServerHandle {
Self::start_with_builder(Server::build(), factory)
2019-09-17 16:04:20 +06:00
}
2021-12-27 18:27:54 +00:00
/// Start new `TestServer` using application factory and server builder.
pub fn start_with_builder(
server_builder: ServerBuilder,
factory: impl ServerServiceFactory<TcpStream>,
) -> TestServerHandle {
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 || {
2021-12-27 18:27:54 +00:00
let lst = net::TcpListener::bind("127.0.0.1:0").unwrap();
let local_addr = lst.local_addr().unwrap();
2019-09-17 16:04:20 +06:00
2021-12-27 18:27:54 +00:00
System::new().block_on(async {
let server = server_builder
.listen("test", lst, 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();
2021-12-27 18:27:54 +00:00
TestServerHandle {
2019-09-17 16:04:20 +06:00
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-12-27 18:27:54 +00:00
let domain = Domain::for_address(addr);
let socket = Socket::new(domain, Type::STREAM, Some(Protocol::TCP)).unwrap();
2021-11-15 18:48:37 +00:00
socket.set_reuse_address(true).unwrap();
socket.set_nonblocking(true).unwrap();
socket.bind(&addr.into()).unwrap();
socket.listen(1024).unwrap();
2021-12-27 18:27:54 +00:00
2021-11-15 18:48:37 +00:00
net::TcpListener::from(socket).local_addr().unwrap()
2019-09-17 16:04:20 +06:00
}
}
2021-12-27 18:27:54 +00:00
impl TestServerHandle {
/// 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) {
2023-04-01 05:24:00 +01:00
drop(self.server_handle.stop(false));
2021-11-04 20:30:43 +00:00
self.thread_handle.take().unwrap().join().unwrap().unwrap();
2019-09-17 16:04:20 +06:00
}
/// Connect to server, returning a Tokio `TcpStream`.
2021-12-27 18:27:54 +00:00
pub fn connect(&self) -> 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
}
}
2021-12-27 18:27:54 +00:00
impl Drop for TestServerHandle {
2019-09-17 16:04:20 +06:00
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]
2021-12-27 18:27:54 +00:00
async fn connect_in_tokio_runtime() {
let srv = TestServer::start(|| fn_service(|_sock| async move { Ok::<_, ()>(()) }));
assert!(srv.connect().is_ok());
}
#[actix_rt::test]
async fn connect_in_actix_runtime() {
let srv = TestServer::start(|| fn_service(|_sock| async move { Ok::<_, ()>(()) }));
2021-11-14 19:45:15 +00:00
assert!(srv.connect().is_ok());
}
}