2017-12-27 00:35:00 +00:00
|
|
|
//! Various helpers for Actix applications to use during testing.
|
2017-12-27 03:48:02 +00:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::str::FromStr;
|
2018-04-13 23:02:01 +00:00
|
|
|
use std::sync::mpsc;
|
|
|
|
use std::{net, thread};
|
2017-12-27 00:35:00 +00:00
|
|
|
|
2018-06-14 06:37:19 +00:00
|
|
|
use actix_inner::{Actor, Addr, System};
|
2018-06-01 16:36:16 +00:00
|
|
|
|
2017-12-27 03:48:02 +00:00
|
|
|
use cookie::Cookie;
|
|
|
|
use futures::Future;
|
2018-04-13 23:02:01 +00:00
|
|
|
use http::header::HeaderName;
|
|
|
|
use http::{HeaderMap, HttpTryFrom, Method, Uri, Version};
|
|
|
|
use net2::TcpBuilder;
|
2018-05-25 04:03:16 +00:00
|
|
|
use tokio::runtime::current_thread::Runtime;
|
2017-12-27 00:35:00 +00:00
|
|
|
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-05-29 17:59:24 +00:00
|
|
|
use openssl::ssl::SslAcceptorBuilder;
|
2018-03-20 18:23:35 +00:00
|
|
|
|
2018-04-13 23:02:01 +00:00
|
|
|
use application::{App, HttpApplication};
|
2018-02-20 04:03:57 +00:00
|
|
|
use body::Binary;
|
2018-04-13 23:02:01 +00:00
|
|
|
use client::{ClientConnector, ClientRequest, ClientRequestBuilder};
|
2017-12-27 03:48:02 +00:00
|
|
|
use error::Error;
|
2018-05-03 23:22:08 +00:00
|
|
|
use handler::{AsyncResultItem, Handler, Responder};
|
2018-03-06 08:43:25 +00:00
|
|
|
use header::{Header, IntoHeaderValue};
|
2018-07-04 15:01:27 +00:00
|
|
|
use httprequest::HttpRequest;
|
2018-04-13 23:02:01 +00:00
|
|
|
use httpresponse::HttpResponse;
|
2017-12-27 03:59:41 +00:00
|
|
|
use middleware::Middleware;
|
2017-12-27 03:48:02 +00:00
|
|
|
use param::Params;
|
|
|
|
use payload::Payload;
|
2018-04-02 00:37:22 +00:00
|
|
|
use resource::ResourceHandler;
|
2018-04-13 23:02:01 +00:00
|
|
|
use router::Router;
|
2018-07-04 16:52:49 +00:00
|
|
|
use server::message::{Request, RequestPool};
|
|
|
|
use server::{HttpServer, IntoHttpHandler, ServerSettings};
|
2018-06-25 04:58:04 +00:00
|
|
|
use uri::Url as InnerUrl;
|
2018-04-13 23:02:01 +00:00
|
|
|
use ws;
|
2017-12-27 00:35:00 +00:00
|
|
|
|
|
|
|
/// 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.
|
2017-12-27 00:35:00 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// # use actix_web::*;
|
|
|
|
/// #
|
2018-06-25 04:58:04 +00:00
|
|
|
/// # fn my_handler(req: &HttpRequest) -> HttpResponse {
|
2018-03-31 06:07:33 +00:00
|
|
|
/// # HttpResponse::Ok().into()
|
2017-12-27 00:35:00 +00:00
|
|
|
/// # }
|
|
|
|
/// #
|
|
|
|
/// # 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));
|
2017-12-27 00:35:00 +00:00
|
|
|
///
|
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());
|
2017-12-27 00:35:00 +00:00
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
pub struct TestServer {
|
|
|
|
addr: net::SocketAddr,
|
2018-03-20 18:23:35 +00:00
|
|
|
ssl: bool,
|
2018-05-27 12:02:49 +00:00
|
|
|
conn: Addr<ClientConnector>,
|
2018-05-29 17:31:37 +00:00
|
|
|
rt: Runtime,
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TestServer {
|
|
|
|
/// Start new test server
|
|
|
|
///
|
2018-01-15 21:47:25 +00:00
|
|
|
/// This method accepts configuration method. You can add
|
2017-12-27 00:35:00 +00:00
|
|
|
/// middlewares or set handlers for test application.
|
|
|
|
pub fn new<F>(config: F) -> Self
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Sync + Send + 'static + Fn(&mut TestApp<()>),
|
2018-03-20 18:23:35 +00:00
|
|
|
{
|
2018-04-13 23:02:01 +00:00
|
|
|
TestServerBuilder::new(|| ()).start(config)
|
2018-03-20 18:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create test server builder
|
|
|
|
pub fn build() -> TestServerBuilder<()> {
|
2018-04-13 23:02:01 +00:00
|
|
|
TestServerBuilder::new(|| ())
|
2018-03-20 18:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create test server builder with specific state factory
|
|
|
|
///
|
|
|
|
/// This method can be used for constructing application state.
|
2018-05-06 16:07:30 +00:00
|
|
|
/// Also it can be used for external dependency initialization,
|
2018-03-20 18:23:35 +00:00
|
|
|
/// like creating sync actors for diesel integration.
|
|
|
|
pub fn build_with_state<F, S>(state: F) -> TestServerBuilder<S>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> S + Sync + Send + 'static,
|
|
|
|
S: 'static,
|
2017-12-27 00:35:00 +00:00
|
|
|
{
|
2018-03-20 18:23:35 +00:00
|
|
|
TestServerBuilder::new(state)
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
2017-12-27 00:47:55 +00:00
|
|
|
/// 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
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> U + Sync + Send + 'static,
|
|
|
|
U: IntoIterator<Item = H> + 'static,
|
|
|
|
H: IntoHttpHandler + 'static,
|
2017-12-27 00:47:55 +00:00
|
|
|
{
|
|
|
|
let (tx, rx) = mpsc::channel();
|
|
|
|
|
|
|
|
// run server in separate thread
|
2018-05-29 23:32:39 +00:00
|
|
|
thread::spawn(move || {
|
2017-12-27 00:47:55 +00:00
|
|
|
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();
|
2017-12-27 00:47:55 +00:00
|
|
|
let local_addr = tcp.local_addr().unwrap();
|
|
|
|
|
2018-06-16 20:58:56 +00:00
|
|
|
HttpServer::new(factory)
|
|
|
|
.disable_signals()
|
|
|
|
.listen(tcp)
|
|
|
|
.start();
|
|
|
|
|
|
|
|
tx.send((System::current(), local_addr, TestServer::get_conn()))
|
|
|
|
.unwrap();
|
|
|
|
sys.run();
|
2017-12-27 00:47:55 +00:00
|
|
|
});
|
|
|
|
|
2018-06-14 06:37:19 +00:00
|
|
|
let (system, addr, conn) = rx.recv().unwrap();
|
|
|
|
System::set_current(system);
|
2017-12-27 00:47:55 +00:00
|
|
|
TestServer {
|
2018-02-26 22:33:56 +00:00
|
|
|
addr,
|
2018-05-29 17:31:37 +00:00
|
|
|
conn,
|
2018-03-20 18:23:35 +00:00
|
|
|
ssl: false,
|
2018-05-29 17:31:37 +00:00
|
|
|
rt: Runtime::new().unwrap(),
|
2017-12-27 00:47:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-27 12:02:49 +00:00
|
|
|
fn get_conn() -> Addr<ClientConnector> {
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-03-20 18:23:35 +00:00
|
|
|
{
|
2018-04-13 23:02:01 +00:00
|
|
|
use openssl::ssl::{SslConnector, SslMethod, SslVerifyMode};
|
2018-03-20 18:23:35 +00:00
|
|
|
|
|
|
|
let mut builder = SslConnector::builder(SslMethod::tls()).unwrap();
|
|
|
|
builder.set_verify(SslVerifyMode::NONE);
|
|
|
|
ClientConnector::with_connector(builder.build()).start()
|
|
|
|
}
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(not(feature = "alpn"))]
|
2018-03-20 18:23:35 +00:00
|
|
|
{
|
|
|
|
ClientConnector::default().start()
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-27 04:07:31 +00:00
|
|
|
/// Get firat available unused address
|
|
|
|
pub fn unused_addr() -> net::SocketAddr {
|
2017-12-27 04:52:21 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-12-27 00:35:00 +00:00
|
|
|
/// Construct test server url
|
|
|
|
pub fn url(&self, uri: &str) -> String {
|
|
|
|
if uri.starts_with('/') {
|
2018-04-13 23:02:01 +00:00
|
|
|
format!(
|
|
|
|
"{}://{}{}",
|
2018-04-29 16:09:08 +00:00
|
|
|
if self.ssl { "https" } else { "http" },
|
2018-04-13 23:02:01 +00:00
|
|
|
self.addr,
|
|
|
|
uri
|
|
|
|
)
|
2017-12-27 00:35:00 +00:00
|
|
|
} else {
|
2018-04-13 23:02:01 +00:00
|
|
|
format!(
|
|
|
|
"{}://{}/{}",
|
2018-04-29 16:09:08 +00:00
|
|
|
if self.ssl { "https" } else { "http" },
|
2018-04-13 23:02:01 +00:00
|
|
|
self.addr,
|
|
|
|
uri
|
|
|
|
)
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Stop http server
|
|
|
|
fn stop(&mut self) {
|
2018-06-14 06:37:19 +00:00
|
|
|
System::current().stop();
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
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>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Future<Item = I, Error = E>,
|
2018-01-30 23:13:33 +00:00
|
|
|
{
|
2018-05-29 17:31:37 +00:00
|
|
|
self.rt.block_on(fut)
|
2018-01-30 23:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Connect to websocket server
|
2018-04-13 23:02:01 +00:00
|
|
|
pub fn ws(
|
2018-04-29 05:55:47 +00:00
|
|
|
&mut self,
|
2018-04-13 23:02:01 +00:00
|
|
|
) -> Result<(ws::ClientReader, ws::ClientWriter), ws::ClientError> {
|
2018-01-30 23:13:33 +00:00
|
|
|
let url = self.url("/");
|
2018-05-29 17:31:37 +00:00
|
|
|
self.rt
|
|
|
|
.block_on(ws::Client::with_connector(url, self.conn.clone()).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 {
|
2018-05-23 16:07:42 +00:00
|
|
|
ClientRequest::post(self.url("/").as_str())
|
2018-02-19 21:18:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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)
|
2018-03-20 18:23:35 +00:00
|
|
|
.uri(self.url(path).as_str())
|
|
|
|
.with_connector(self.conn.clone())
|
|
|
|
.take()
|
2018-02-19 21:18:18 +00:00
|
|
|
}
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for TestServer {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-29 04:49:50 +00:00
|
|
|
/// An `TestServer` builder
|
|
|
|
///
|
|
|
|
/// This type can be used to construct an instance of `TestServer` through a
|
|
|
|
/// builder-like pattern.
|
2018-03-20 18:23:35 +00:00
|
|
|
pub struct TestServerBuilder<S> {
|
|
|
|
state: Box<Fn() -> S + Sync + Send + 'static>,
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-05-29 17:59:24 +00:00
|
|
|
ssl: Option<SslAcceptorBuilder>,
|
2018-03-20 18:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: 'static> TestServerBuilder<S> {
|
2018-06-02 13:51:58 +00:00
|
|
|
/// Create a new test server
|
2018-03-20 18:23:35 +00:00
|
|
|
pub fn new<F>(state: F) -> TestServerBuilder<S>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> S + Sync + Send + 'static,
|
2018-03-20 18:23:35 +00:00
|
|
|
{
|
|
|
|
TestServerBuilder {
|
|
|
|
state: Box::new(state),
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-03-20 18:23:35 +00:00
|
|
|
ssl: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-03-20 18:23:35 +00:00
|
|
|
/// Create ssl server
|
2018-05-29 17:59:24 +00:00
|
|
|
pub fn ssl(mut self, ssl: SslAcceptorBuilder) -> Self {
|
2018-03-20 18:23:35 +00:00
|
|
|
self.ssl = Some(ssl);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
/// Configure test application and run test server
|
|
|
|
pub fn start<F>(mut self, config: F) -> TestServer
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: Sync + Send + 'static + Fn(&mut TestApp<S>),
|
2018-03-20 18:23:35 +00:00
|
|
|
{
|
|
|
|
let (tx, rx) = mpsc::channel();
|
|
|
|
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(feature = "alpn")]
|
2018-03-20 18:23:35 +00:00
|
|
|
let ssl = self.ssl.is_some();
|
2018-04-13 23:02:01 +00:00
|
|
|
#[cfg(not(feature = "alpn"))]
|
2018-03-20 18:23:35 +00:00
|
|
|
let ssl = false;
|
|
|
|
|
|
|
|
// run server in separate thread
|
2018-05-29 23:32:39 +00:00
|
|
|
thread::spawn(move || {
|
2018-03-20 18:23:35 +00:00
|
|
|
let tcp = net::TcpListener::bind("127.0.0.1:0").unwrap();
|
|
|
|
let local_addr = tcp.local_addr().unwrap();
|
|
|
|
|
2018-06-16 20:58:56 +00:00
|
|
|
let sys = System::new("actix-test-server");
|
|
|
|
let state = self.state;
|
|
|
|
let srv = HttpServer::new(move || {
|
|
|
|
let mut app = TestApp::new(state());
|
|
|
|
config(&mut app);
|
|
|
|
vec![app]
|
|
|
|
}).workers(1)
|
|
|
|
.disable_signals();
|
|
|
|
|
|
|
|
tx.send((System::current(), local_addr, TestServer::get_conn()))
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
#[cfg(feature = "alpn")]
|
|
|
|
{
|
|
|
|
let ssl = self.ssl.take();
|
|
|
|
if let Some(ssl) = ssl {
|
|
|
|
srv.listen_ssl(tcp, ssl).unwrap().start();
|
|
|
|
} else {
|
|
|
|
srv.listen(tcp).start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[cfg(not(feature = "alpn"))]
|
|
|
|
{
|
|
|
|
srv.listen(tcp).start();
|
|
|
|
}
|
|
|
|
sys.run();
|
2018-03-20 18:23:35 +00:00
|
|
|
});
|
|
|
|
|
2018-06-14 06:37:19 +00:00
|
|
|
let (system, addr, conn) = rx.recv().unwrap();
|
|
|
|
System::set_current(system);
|
2018-03-20 18:23:35 +00:00
|
|
|
TestServer {
|
|
|
|
addr,
|
|
|
|
ssl,
|
2018-05-29 17:31:37 +00:00
|
|
|
conn,
|
|
|
|
rt: Runtime::new().unwrap(),
|
2018-03-20 18:23:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-27 00:35:00 +00:00
|
|
|
|
|
|
|
/// Test application helper for testing request handlers.
|
2018-04-13 23:02:01 +00:00
|
|
|
pub struct TestApp<S = ()> {
|
2018-03-31 07:16:55 +00:00
|
|
|
app: Option<App<S>>,
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: 'static> TestApp<S> {
|
|
|
|
fn new(state: S) -> TestApp<S> {
|
2018-03-31 07:16:55 +00:00
|
|
|
let app = App::with_state(state);
|
2018-04-29 16:09:08 +00:00
|
|
|
TestApp { app: Some(app) }
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Register handler for "/"
|
2018-06-25 04:58:04 +00:00
|
|
|
pub fn handler<F, R>(&mut self, handler: F)
|
|
|
|
where
|
|
|
|
F: Fn(&HttpRequest<S>) -> R + 'static,
|
|
|
|
R: Responder + 'static,
|
|
|
|
{
|
|
|
|
self.app = Some(self.app.take().unwrap().resource("/", |r| r.f(handler)));
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Register middleware
|
|
|
|
pub fn middleware<T>(&mut self, mw: T) -> &mut TestApp<S>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
T: Middleware<S> + 'static,
|
2017-12-27 00:35:00 +00:00
|
|
|
{
|
|
|
|
self.app = Some(self.app.take().unwrap().middleware(mw));
|
|
|
|
self
|
|
|
|
}
|
2018-03-28 21:24:32 +00:00
|
|
|
|
|
|
|
/// Register resource. This method is similar
|
2018-03-31 07:16:55 +00:00
|
|
|
/// to `App::resource()` method.
|
2018-04-04 05:06:18 +00:00
|
|
|
pub fn resource<F, R>(&mut self, path: &str, f: F) -> &mut TestApp<S>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
F: FnOnce(&mut ResourceHandler<S>) -> R + 'static,
|
2018-03-28 21:24:32 +00:00
|
|
|
{
|
|
|
|
self.app = Some(self.app.take().unwrap().resource(path, f));
|
|
|
|
self
|
|
|
|
}
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: 'static> IntoHttpHandler for TestApp<S> {
|
|
|
|
type Handler = HttpApplication<S>;
|
|
|
|
|
2018-06-25 04:58:04 +00:00
|
|
|
fn into_handler(mut self) -> HttpApplication<S> {
|
|
|
|
self.app.take().unwrap().into_handler()
|
2017-12-27 00:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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;
|
|
|
|
///
|
2018-06-25 04:58:04 +00:00
|
|
|
/// fn index(req: &HttpRequest) -> HttpResponse {
|
2017-12-27 03:48:02 +00:00
|
|
|
/// if let Some(hdr) = req.headers().get(header::CONTENT_TYPE) {
|
2018-03-31 06:07:33 +00:00
|
|
|
/// HttpResponse::Ok().into()
|
2017-12-27 03:48:02 +00:00
|
|
|
/// } else {
|
2018-03-31 06:07:33 +00:00
|
|
|
/// HttpResponse::BadRequest().into()
|
2017-12-27 03:48:02 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let resp = TestRequest::with_header("content-type", "text/plain")
|
2018-06-21 17:21:28 +00:00
|
|
|
/// .run(&index)
|
2018-06-01 16:36:16 +00:00
|
|
|
/// .unwrap();
|
2017-12-27 03:48:02 +00:00
|
|
|
/// assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
///
|
2018-06-21 17:21:28 +00:00
|
|
|
/// let resp = TestRequest::default().run(&index).unwrap();
|
2017-12-27 03:48:02 +00:00
|
|
|
/// assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub struct TestRequest<S> {
|
|
|
|
state: S,
|
|
|
|
version: Version,
|
|
|
|
method: Method,
|
|
|
|
uri: Uri,
|
|
|
|
headers: HeaderMap,
|
2018-06-19 10:45:26 +00:00
|
|
|
params: Params,
|
2017-12-27 03:48:02 +00:00
|
|
|
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
|
2018-04-13 23:02:01 +00:00
|
|
|
pub fn with_hdr<H: Header>(hdr: H) -> TestRequest<()> {
|
2018-03-06 03:28:42 +00:00
|
|
|
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-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
2017-12-27 03:48:02 +00:00
|
|
|
{
|
|
|
|
TestRequest::default().header(key, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-04 18:44:22 +00:00
|
|
|
impl<S: 'static> TestRequest<S> {
|
2017-12-27 03:48:02 +00:00
|
|
|
/// 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
|
2018-04-13 23:02:01 +00:00
|
|
|
pub fn set<H: Header>(mut self, hdr: H) -> Self {
|
2018-03-06 03:28:42 +00:00
|
|
|
if let Ok(value) = hdr.try_into() {
|
|
|
|
self.headers.append(H::name(), value);
|
2018-04-13 23:02:01 +00:00
|
|
|
return self;
|
2018-03-06 03:28:42 +00:00
|
|
|
}
|
|
|
|
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-04-13 23:02:01 +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);
|
2018-04-13 23:02:01 +00:00
|
|
|
return self;
|
2017-12-27 03:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!("Can not create header");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set request path pattern parameter
|
|
|
|
pub fn param(mut self, name: &'static str, value: &'static str) -> Self {
|
2018-06-19 10:45:26 +00:00
|
|
|
self.params.add_static(name, value);
|
2017-12-27 03:48:02 +00:00
|
|
|
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> {
|
2018-04-13 23:02:01 +00:00
|
|
|
let TestRequest {
|
|
|
|
state,
|
|
|
|
method,
|
|
|
|
uri,
|
|
|
|
version,
|
|
|
|
headers,
|
|
|
|
params,
|
|
|
|
cookies,
|
|
|
|
payload,
|
|
|
|
} = self;
|
2018-06-25 04:58:04 +00:00
|
|
|
let (router, _) = Router::new::<S>("/", Vec::new());
|
|
|
|
|
2018-07-04 16:52:49 +00:00
|
|
|
let pool = RequestPool::pool(ServerSettings::default());
|
|
|
|
let mut req = RequestPool::get(pool);
|
|
|
|
{
|
|
|
|
let inner = req.inner_mut();
|
|
|
|
inner.method = method;
|
|
|
|
inner.url = InnerUrl::new(uri);
|
|
|
|
inner.version = version;
|
|
|
|
inner.headers = headers;
|
|
|
|
*inner.payload.borrow_mut() = payload;
|
|
|
|
}
|
2018-06-25 04:58:04 +00:00
|
|
|
|
|
|
|
let mut req =
|
2018-07-04 15:01:27 +00:00
|
|
|
HttpRequest::new(req, Rc::new(state), router.route_info_params(params));
|
2018-05-15 17:09:48 +00:00
|
|
|
req.set_cookies(cookies);
|
2018-06-25 04:58:04 +00:00
|
|
|
req
|
2017-12-27 03:48:02 +00:00
|
|
|
}
|
|
|
|
|
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> {
|
2018-04-13 23:02:01 +00:00
|
|
|
let TestRequest {
|
|
|
|
state,
|
|
|
|
method,
|
|
|
|
uri,
|
|
|
|
version,
|
|
|
|
headers,
|
|
|
|
params,
|
|
|
|
cookies,
|
|
|
|
payload,
|
|
|
|
} = self;
|
2018-03-07 22:56:53 +00:00
|
|
|
|
2018-07-04 16:52:49 +00:00
|
|
|
let pool = RequestPool::pool(ServerSettings::default());
|
|
|
|
let mut req = RequestPool::get(pool);
|
|
|
|
{
|
|
|
|
let inner = req.inner_mut();
|
|
|
|
inner.method = method;
|
|
|
|
inner.url = InnerUrl::new(uri);
|
|
|
|
inner.version = version;
|
|
|
|
inner.headers = headers;
|
|
|
|
*inner.payload.borrow_mut() = payload;
|
|
|
|
}
|
2018-06-25 04:58:04 +00:00
|
|
|
let mut req =
|
2018-07-04 15:01:27 +00:00
|
|
|
HttpRequest::new(req, Rc::new(state), router.route_info_params(params));
|
2018-05-15 17:09:48 +00:00
|
|
|
req.set_cookies(cookies);
|
2018-06-25 04:58:04 +00:00
|
|
|
req
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Complete request creation and generate server `Request` instance
|
|
|
|
pub fn request(self) -> Request {
|
|
|
|
let TestRequest {
|
|
|
|
method,
|
|
|
|
uri,
|
|
|
|
version,
|
|
|
|
headers,
|
|
|
|
payload,
|
2018-07-04 15:01:27 +00:00
|
|
|
..
|
2018-06-25 04:58:04 +00:00
|
|
|
} = self;
|
2018-07-04 16:52:49 +00:00
|
|
|
|
|
|
|
let pool = RequestPool::pool(ServerSettings::default());
|
|
|
|
let mut req = RequestPool::get(pool);
|
|
|
|
{
|
|
|
|
let inner = req.inner_mut();
|
|
|
|
inner.method = method;
|
|
|
|
inner.url = InnerUrl::new(uri);
|
|
|
|
inner.version = version;
|
|
|
|
inner.headers = headers;
|
|
|
|
*inner.payload.borrow_mut() = payload;
|
|
|
|
}
|
2018-06-25 04:58:04 +00:00
|
|
|
req
|
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.
|
2018-06-21 17:06:23 +00:00
|
|
|
pub fn run<H: Handler<S>>(self, h: &H) -> Result<HttpResponse, Error> {
|
2017-12-27 03:48:02 +00:00
|
|
|
let req = self.finish();
|
2018-06-25 04:58:04 +00:00
|
|
|
let resp = h.handle(&req);
|
2017-12-27 03:48:02 +00:00
|
|
|
|
2018-05-04 18:44:22 +00:00
|
|
|
match resp.respond_to(&req) {
|
2018-04-13 23:02:01 +00:00
|
|
|
Ok(resp) => match resp.into().into() {
|
2018-05-03 23:22:08 +00:00
|
|
|
AsyncResultItem::Ok(resp) => Ok(resp),
|
|
|
|
AsyncResultItem::Err(err) => Err(err),
|
|
|
|
AsyncResultItem::Future(_) => panic!("Async handler is not supported."),
|
2017-12-27 03:48:02 +00:00
|
|
|
},
|
2018-05-03 23:22:08 +00:00
|
|
|
Err(err) => Err(err.into()),
|
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.
|
|
|
|
pub fn run_async<H, R, F, E>(self, h: H) -> Result<HttpResponse, E>
|
2018-04-13 23:02:01 +00:00
|
|
|
where
|
|
|
|
H: Fn(HttpRequest<S>) -> F + 'static,
|
|
|
|
F: Future<Item = R, Error = E> + 'static,
|
|
|
|
R: Responder<Error = E> + 'static,
|
|
|
|
E: Into<Error> + 'static,
|
2017-12-27 03:48:02 +00:00
|
|
|
{
|
|
|
|
let req = self.finish();
|
|
|
|
let fut = h(req.clone());
|
|
|
|
|
2018-05-25 04:03:16 +00:00
|
|
|
let mut core = Runtime::new().unwrap();
|
|
|
|
match core.block_on(fut) {
|
2018-05-04 18:44:22 +00:00
|
|
|
Ok(r) => match r.respond_to(&req) {
|
2018-04-13 23:02:01 +00:00
|
|
|
Ok(reply) => match reply.into().into() {
|
2018-05-03 23:22:08 +00:00
|
|
|
AsyncResultItem::Ok(resp) => Ok(resp),
|
2018-04-13 23:02:01 +00:00
|
|
|
_ => panic!("Nested async replies are not supported"),
|
|
|
|
},
|
|
|
|
Err(e) => Err(e),
|
2017-12-27 03:48:02 +00:00
|
|
|
},
|
|
|
|
Err(err) => Err(err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|