1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-08 20:58:26 +00:00
actix-web/src/test.rs

496 lines
14 KiB
Rust
Raw Normal View History

//! Various helpers for Actix applications to use during testing.
use std::{net, thread};
2017-12-27 03:48:02 +00:00
use std::rc::Rc;
use std::sync::mpsc;
2017-12-27 03:48:02 +00:00
use std::str::FromStr;
2018-02-12 09:13:06 +00:00
use actix::{Arbiter, Addr, Syn, System, SystemRunner, msgs};
2017-12-27 03:48:02 +00:00
use cookie::Cookie;
use http::{Uri, Method, Version, HeaderMap, HttpTryFrom};
2018-03-06 08:43:25 +00:00
use http::header::HeaderName;
2017-12-27 03:48:02 +00:00
use futures::Future;
use tokio_core::net::TcpListener;
2017-12-27 03:48:02 +00:00
use tokio_core::reactor::Core;
2017-12-27 19:22:27 +00:00
use net2::TcpBuilder;
use ws;
2018-02-20 04:03:57 +00:00
use body::Binary;
2017-12-27 03:48:02 +00:00
use error::Error;
2018-03-06 08:43:25 +00:00
use header::{Header, IntoHeaderValue};
2017-12-27 03:48:02 +00:00
use handler::{Handler, Responder, ReplyItem};
2017-12-27 03:59:41 +00:00
use middleware::Middleware;
use application::{Application, HttpApplication};
2017-12-27 03:48:02 +00:00
use param::Params;
use router::Router;
use payload::Payload;
use httprequest::HttpRequest;
use httpresponse::HttpResponse;
2018-02-10 19:01:54 +00:00
use server::{HttpServer, IntoHttpHandler, ServerSettings};
2018-02-19 21:18:18 +00:00
use client::{ClientRequest, ClientRequestBuilder};
/// The `TestServer` type.
///
/// `TestServer` is very simple test server that simplify process of writing
2018-01-15 21:47:25 +00:00
/// integration tests cases for actix web applications.
///
/// # Examples
///
/// ```rust
/// # extern crate actix;
/// # extern crate actix_web;
/// # use actix_web::*;
/// #
/// # fn my_handler(req: HttpRequest) -> HttpResponse {
2018-03-02 03:12:59 +00:00
/// # httpcodes::HttpOk.into()
/// # }
/// #
/// # fn main() {
/// use actix_web::test::TestServer;
///
2018-02-19 21:18:18 +00:00
/// let mut srv = TestServer::new(|app| app.handler(my_handler));
///
2018-02-19 21:18:18 +00:00
/// let req = srv.get().finish().unwrap();
/// let response = srv.execute(req.send()).unwrap();
/// assert!(response.status().is_success());
/// # }
/// ```
pub struct TestServer {
addr: net::SocketAddr,
thread: Option<thread::JoinHandle<()>>,
2018-01-30 23:13:33 +00:00
system: SystemRunner,
2018-02-13 00:08:04 +00:00
server_sys: Addr<Syn, System>,
}
impl TestServer {
/// Start new test server
///
2018-01-15 21:47:25 +00:00
/// This method accepts configuration method. You can add
/// middlewares or set handlers for test application.
pub fn new<F>(config: F) -> Self
where F: Sync + Send + 'static + Fn(&mut TestApp<()>),
{
TestServer::with_state(||(), config)
}
/// Start new test server with application factory
2018-02-10 19:01:54 +00:00
pub fn with_factory<F, U, H>(factory: F) -> Self
where F: Fn() -> U + Sync + Send + 'static,
U: IntoIterator<Item=H> + 'static,
H: IntoHttpHandler + 'static,
{
let (tx, rx) = mpsc::channel();
// run server in separate thread
let join = thread::spawn(move || {
let sys = System::new("actix-test-server");
2017-12-27 04:07:31 +00:00
let tcp = net::TcpListener::bind("127.0.0.1:0").unwrap();
let local_addr = tcp.local_addr().unwrap();
2018-03-16 15:48:44 +00:00
let tcp = TcpListener::from_listener(
tcp, &local_addr, Arbiter::handle()).unwrap();
2018-03-16 15:48:44 +00:00
HttpServer::new(factory)
.disable_signals()
.start_incoming(tcp.incoming(), false);
tx.send((Arbiter::system(), local_addr)).unwrap();
let _ = sys.run();
});
2018-02-26 22:33:56 +00:00
let (server_sys, addr) = rx.recv().unwrap();
TestServer {
2018-02-26 22:33:56 +00:00
addr,
thread: Some(join),
2018-01-30 23:13:33 +00:00
system: System::new("actix-test"),
2018-02-26 22:33:56 +00:00
server_sys,
}
}
/// Start new test server with custom application state
///
2018-01-15 21:47:25 +00:00
/// This method accepts state factory and configuration method.
pub fn with_state<S, FS, F>(state: FS, config: F) -> Self
where S: 'static,
FS: Sync + Send + 'static + Fn() -> S,
F: Sync + Send + 'static + Fn(&mut TestApp<S>),
{
let (tx, rx) = mpsc::channel();
// run server in separate thread
let join = thread::spawn(move || {
let sys = System::new("actix-test-server");
2017-12-27 04:07:31 +00:00
let tcp = net::TcpListener::bind("127.0.0.1:0").unwrap();
let local_addr = tcp.local_addr().unwrap();
let tcp = TcpListener::from_listener(tcp, &local_addr, Arbiter::handle()).unwrap();
HttpServer::new(move || {
let mut app = TestApp::new(state());
config(&mut app);
2018-02-10 19:01:54 +00:00
vec![app]}
).disable_signals().start_incoming(tcp.incoming(), false);
tx.send((Arbiter::system(), local_addr)).unwrap();
let _ = sys.run();
});
2018-02-26 22:33:56 +00:00
let (server_sys, addr) = rx.recv().unwrap();
TestServer {
2018-02-26 22:33:56 +00:00
addr,
server_sys,
thread: Some(join),
2018-01-30 23:13:33 +00:00
system: System::new("actix-test"),
}
}
2017-12-27 04:07:31 +00:00
/// Get firat available unused address
pub fn unused_addr() -> net::SocketAddr {
let addr: net::SocketAddr = "127.0.0.1:0".parse().unwrap();
2017-12-27 19:22:27 +00:00
let socket = TcpBuilder::new_v4().unwrap();
socket.bind(&addr).unwrap();
socket.reuse_address(true).unwrap();
let tcp = socket.to_tcp_listener().unwrap();
2017-12-27 04:07:31 +00:00
tcp.local_addr().unwrap()
}
2018-01-09 20:49:46 +00:00
/// Construct test server url
pub fn addr(&self) -> net::SocketAddr {
self.addr
}
/// Construct test server url
pub fn url(&self, uri: &str) -> String {
if uri.starts_with('/') {
format!("http://{}{}", self.addr, uri)
} else {
format!("http://{}/{}", self.addr, uri)
}
}
/// Stop http server
fn stop(&mut self) {
if let Some(handle) = self.thread.take() {
2018-02-13 06:56:47 +00:00
self.server_sys.do_send(msgs::SystemExit(0));
let _ = handle.join();
}
}
2018-01-30 23:13:33 +00:00
/// Execute future on current core
pub fn execute<F, I, E>(&mut self, fut: F) -> Result<I, E>
where F: Future<Item=I, Error=E>
{
self.system.run_until_complete(fut)
}
/// Connect to websocket server
pub fn ws(&mut self) -> Result<(ws::ClientReader, ws::ClientWriter), ws::ClientError> {
2018-01-30 23:13:33 +00:00
let url = self.url("/");
self.system.run_until_complete(ws::Client::new(url).connect())
2018-01-30 23:13:33 +00:00
}
2018-02-19 21:18:18 +00:00
/// Create `GET` request
pub fn get(&self) -> ClientRequestBuilder {
ClientRequest::get(self.url("/").as_str())
}
/// Create `POST` request
pub fn post(&self) -> ClientRequestBuilder {
ClientRequest::get(self.url("/").as_str())
}
/// Create `HEAD` request
pub fn head(&self) -> ClientRequestBuilder {
ClientRequest::head(self.url("/").as_str())
}
/// Connect to test http server
pub fn client(&self, meth: Method, path: &str) -> ClientRequestBuilder {
ClientRequest::build()
.method(meth)
.uri(self.url(path).as_str()).take()
}
}
impl Drop for TestServer {
fn drop(&mut self) {
self.stop()
}
}
/// Test application helper for testing request handlers.
pub struct TestApp<S=()> {
app: Option<Application<S>>,
}
impl<S: 'static> TestApp<S> {
fn new(state: S) -> TestApp<S> {
let app = Application::with_state(state);
TestApp{app: Some(app)}
}
/// Register handler for "/"
pub fn handler<H: Handler<S>>(&mut self, handler: H) {
self.app = Some(self.app.take().unwrap().resource("/", |r| r.h(handler)));
}
2018-01-10 04:00:18 +00:00
/// Register handler for "/" with resource middleware
pub fn handler2<H, M>(&mut self, handler: H, mw: M)
where H: Handler<S>, M: Middleware<S>
{
self.app = Some(self.app.take().unwrap()
.resource("/", |r| {
r.middleware(mw);
r.h(handler)}));
}
/// Register middleware
pub fn middleware<T>(&mut self, mw: T) -> &mut TestApp<S>
where T: Middleware<S> + 'static
{
self.app = Some(self.app.take().unwrap().middleware(mw));
self
}
}
impl<S: 'static> IntoHttpHandler for TestApp<S> {
type Handler = HttpApplication<S>;
2017-12-29 19:33:04 +00:00
fn into_handler(mut self, settings: ServerSettings) -> HttpApplication<S> {
self.app.take().unwrap().into_handler(settings)
}
}
#[doc(hidden)]
impl<S: 'static> Iterator for TestApp<S> {
type Item = HttpApplication<S>;
fn next(&mut self) -> Option<Self::Item> {
if let Some(mut app) = self.app.take() {
Some(app.finish())
} else {
None
}
}
}
2017-12-27 03:48:02 +00:00
/// Test `HttpRequest` builder
///
/// ```rust
/// # extern crate http;
/// # extern crate actix_web;
/// # use http::{header, StatusCode};
/// # use actix_web::*;
/// use actix_web::test::TestRequest;
///
/// fn index(req: HttpRequest) -> HttpResponse {
/// if let Some(hdr) = req.headers().get(header::CONTENT_TYPE) {
2018-03-02 03:12:59 +00:00
/// httpcodes::HttpOk.into()
2017-12-27 03:48:02 +00:00
/// } else {
2018-03-02 03:12:59 +00:00
/// httpcodes::HttpBadRequest.into()
2017-12-27 03:48:02 +00:00
/// }
/// }
///
/// fn main() {
/// let resp = TestRequest::with_header("content-type", "text/plain")
/// .run(index).unwrap();
/// assert_eq!(resp.status(), StatusCode::OK);
///
/// let resp = TestRequest::default()
/// .run(index).unwrap();
/// assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
/// }
/// ```
pub struct TestRequest<S> {
state: S,
version: Version,
method: Method,
uri: Uri,
headers: HeaderMap,
params: Params<'static>,
cookies: Option<Vec<Cookie<'static>>>,
payload: Option<Payload>,
}
impl Default for TestRequest<()> {
fn default() -> TestRequest<()> {
TestRequest {
state: (),
method: Method::GET,
uri: Uri::from_str("/").unwrap(),
version: Version::HTTP_11,
headers: HeaderMap::new(),
2017-12-28 03:19:28 +00:00
params: Params::new(),
2017-12-27 03:48:02 +00:00
cookies: None,
payload: None,
}
}
}
impl TestRequest<()> {
2018-01-15 21:47:25 +00:00
/// Create TestRequest and set request uri
2017-12-27 03:48:02 +00:00
pub fn with_uri(path: &str) -> TestRequest<()> {
TestRequest::default().uri(path)
}
2018-03-06 03:28:42 +00:00
/// Create TestRequest and set header
pub fn with_hdr<H: Header>(hdr: H) -> TestRequest<()>
{
TestRequest::default().set(hdr)
}
2018-01-15 21:47:25 +00:00
/// Create TestRequest and set header
2017-12-27 03:48:02 +00:00
pub fn with_header<K, V>(key: K, value: V) -> TestRequest<()>
2018-03-06 08:43:25 +00:00
where HeaderName: HttpTryFrom<K>, V: IntoHeaderValue,
2017-12-27 03:48:02 +00:00
{
TestRequest::default().header(key, value)
}
}
impl<S> TestRequest<S> {
/// Start HttpRequest build process with application state
pub fn with_state(state: S) -> TestRequest<S> {
TestRequest {
2018-02-26 22:33:56 +00:00
state,
2017-12-27 03:48:02 +00:00
method: Method::GET,
uri: Uri::from_str("/").unwrap(),
version: Version::HTTP_11,
headers: HeaderMap::new(),
2017-12-28 03:19:28 +00:00
params: Params::new(),
2017-12-27 03:48:02 +00:00
cookies: None,
payload: None,
}
}
/// Set HTTP version of this request
pub fn version(mut self, ver: Version) -> Self {
self.version = ver;
self
}
/// Set HTTP method of this request
pub fn method(mut self, meth: Method) -> Self {
self.method = meth;
self
}
/// Set HTTP Uri of this request
pub fn uri(mut self, path: &str) -> Self {
self.uri = Uri::from_str(path).unwrap();
self
}
2018-03-06 03:28:42 +00:00
/// Set a header
pub fn set<H: Header>(mut self, hdr: H) -> Self
{
if let Ok(value) = hdr.try_into() {
self.headers.append(H::name(), value);
return self
}
panic!("Can not set header");
}
2017-12-27 03:48:02 +00:00
/// Set a header
pub fn header<K, V>(mut self, key: K, value: V) -> Self
2018-03-06 08:43:25 +00:00
where HeaderName: HttpTryFrom<K>, V: IntoHeaderValue
2017-12-27 03:48:02 +00:00
{
if let Ok(key) = HeaderName::try_from(key) {
2018-03-06 08:43:25 +00:00
if let Ok(value) = value.try_into() {
2017-12-27 03:48:02 +00:00
self.headers.append(key, value);
return self
}
}
panic!("Can not create header");
}
/// Set request path pattern parameter
pub fn param(mut self, name: &'static str, value: &'static str) -> Self {
self.params.add(name, value);
self
}
2018-02-20 04:01:38 +00:00
/// Set request payload
2018-02-20 04:03:57 +00:00
pub fn set_payload<B: Into<Binary>>(mut self, data: B) -> Self {
let mut data = data.into();
2018-02-20 04:01:38 +00:00
let mut payload = Payload::empty();
2018-02-20 04:03:57 +00:00
payload.unread_data(data.take());
2018-02-20 04:01:38 +00:00
self.payload = Some(payload);
self
}
2018-03-02 03:12:59 +00:00
2017-12-27 03:48:02 +00:00
/// Complete request creation and generate `HttpRequest` instance
pub fn finish(self) -> HttpRequest<S> {
let TestRequest { state, method, uri, version, headers, params, cookies, payload } = self;
let req = HttpRequest::new(method, uri, version, headers, payload);
req.as_mut().cookies = cookies;
req.as_mut().params = params;
2018-02-22 13:48:18 +00:00
let (router, _) = Router::new::<S>("/", ServerSettings::default(), Vec::new());
2017-12-27 03:48:02 +00:00
req.with_state(Rc::new(state), router)
}
2018-01-03 18:57:57 +00:00
#[cfg(test)]
/// Complete request creation and generate `HttpRequest` instance
2018-03-07 22:56:53 +00:00
pub(crate) fn finish_with_router(self, router: Router) -> HttpRequest<S> {
let TestRequest { state, method, uri,
version, headers, params, cookies, payload } = self;
2018-01-03 18:57:57 +00:00
let req = HttpRequest::new(method, uri, version, headers, payload);
req.as_mut().cookies = cookies;
req.as_mut().params = params;
2018-03-07 22:56:53 +00:00
req.with_state(Rc::new(state), router)
2018-01-03 18:57:57 +00:00
}
2017-12-27 03:48:02 +00:00
/// This method generates `HttpRequest` instance and runs handler
/// with generated request.
///
/// This method panics is handler returns actor or async result.
pub fn run<H: Handler<S>>(self, mut h: H) ->
Result<HttpResponse, <<H as Handler<S>>::Result as Responder>::Error>
{
let req = self.finish();
let resp = h.handle(req.clone());
2018-02-26 22:33:56 +00:00
match resp.respond_to(req.without_state()) {
2017-12-27 03:48:02 +00:00
Ok(resp) => {
match resp.into().into() {
ReplyItem::Message(resp) => Ok(resp),
ReplyItem::Future(_) => panic!("Async handler is not supported."),
}
},
Err(err) => Err(err),
}
}
/// This method generates `HttpRequest` instance and runs handler
/// with generated request.
///
/// This method panics is handler returns actor.
pub fn run_async<H, R, F, E>(self, h: H) -> Result<HttpResponse, E>
where H: Fn(HttpRequest<S>) -> F + 'static,
F: Future<Item=R, Error=E> + 'static,
R: Responder<Error=E> + 'static,
E: Into<Error> + 'static
{
let req = self.finish();
let fut = h(req.clone());
let mut core = Core::new().unwrap();
match core.run(fut) {
Ok(r) => {
2018-02-26 22:33:56 +00:00
match r.respond_to(req.without_state()) {
2017-12-27 03:48:02 +00:00
Ok(reply) => match reply.into().into() {
ReplyItem::Message(resp) => Ok(resp),
_ => panic!("Nested async replies are not supported"),
},
Err(e) => Err(e),
}
},
Err(err) => Err(err),
}
}
}