2019-01-27 19:59:07 +01:00
|
|
|
//! Test Various helpers for Actix applications to use during testing.
|
2017-12-27 04:48:02 +01:00
|
|
|
use std::str::FromStr;
|
2018-06-01 18:36:16 +02:00
|
|
|
|
2018-11-18 22:48:42 +01:00
|
|
|
use bytes::Bytes;
|
2017-12-27 04:48:02 +01:00
|
|
|
use cookie::Cookie;
|
2018-04-14 01:02:01 +02:00
|
|
|
use http::header::HeaderName;
|
|
|
|
use http::{HeaderMap, HttpTryFrom, Method, Uri, Version};
|
2017-12-27 01:35:00 +01:00
|
|
|
|
2019-02-07 20:06:05 +01:00
|
|
|
use crate::h1::Payload;
|
2018-12-06 23:32:52 +01:00
|
|
|
use crate::header::{Header, IntoHeaderValue};
|
2019-01-27 19:59:07 +01:00
|
|
|
use crate::Request;
|
2017-12-27 04:48:02 +01:00
|
|
|
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Test `Request` builder
|
2017-12-27 04:48:02 +01:00
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// ```rust,ignore
|
2017-12-27 04:48:02 +01:00
|
|
|
/// # extern crate http;
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// # use http::{header, StatusCode};
|
|
|
|
/// # use actix_web::*;
|
|
|
|
/// use actix_web::test::TestRequest;
|
|
|
|
///
|
2018-10-05 20:04:59 +02:00
|
|
|
/// fn index(req: &HttpRequest) -> Response {
|
2017-12-27 04:48:02 +01:00
|
|
|
/// if let Some(hdr) = req.headers().get(header::CONTENT_TYPE) {
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Response::Ok().into()
|
2017-12-27 04:48:02 +01:00
|
|
|
/// } else {
|
2018-10-05 20:04:59 +02:00
|
|
|
/// Response::BadRequest().into()
|
2017-12-27 04:48:02 +01:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let resp = TestRequest::with_header("content-type", "text/plain")
|
2018-06-21 19:21:28 +02:00
|
|
|
/// .run(&index)
|
2018-06-01 18:36:16 +02:00
|
|
|
/// .unwrap();
|
2017-12-27 04:48:02 +01:00
|
|
|
/// assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
///
|
2018-06-21 19:21:28 +02:00
|
|
|
/// let resp = TestRequest::default().run(&index).unwrap();
|
2017-12-27 04:48:02 +01:00
|
|
|
/// assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-10-05 06:14:18 +02:00
|
|
|
pub struct TestRequest {
|
2017-12-27 04:48:02 +01:00
|
|
|
version: Version,
|
|
|
|
method: Method,
|
|
|
|
uri: Uri,
|
|
|
|
headers: HeaderMap,
|
2018-10-05 06:14:18 +02:00
|
|
|
_cookies: Option<Vec<Cookie<'static>>>,
|
2017-12-27 04:48:02 +01:00
|
|
|
payload: Option<Payload>,
|
2018-07-15 12:24:22 +02:00
|
|
|
prefix: u16,
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
impl Default for TestRequest {
|
|
|
|
fn default() -> TestRequest {
|
2017-12-27 04:48:02 +01:00
|
|
|
TestRequest {
|
|
|
|
method: Method::GET,
|
|
|
|
uri: Uri::from_str("/").unwrap(),
|
|
|
|
version: Version::HTTP_11,
|
|
|
|
headers: HeaderMap::new(),
|
2018-10-05 06:14:18 +02:00
|
|
|
_cookies: None,
|
2017-12-27 04:48:02 +01:00
|
|
|
payload: None,
|
2018-07-15 12:24:22 +02:00
|
|
|
prefix: 0,
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
impl TestRequest {
|
2018-01-15 22:47:25 +01:00
|
|
|
/// Create TestRequest and set request uri
|
2018-10-05 06:14:18 +02:00
|
|
|
pub fn with_uri(path: &str) -> TestRequest {
|
2017-12-27 04:48:02 +01:00
|
|
|
TestRequest::default().uri(path)
|
|
|
|
}
|
|
|
|
|
2018-03-06 04:28:42 +01:00
|
|
|
/// Create TestRequest and set header
|
2018-10-05 06:14:18 +02:00
|
|
|
pub fn with_hdr<H: Header>(hdr: H) -> TestRequest {
|
2018-03-06 04:28:42 +01:00
|
|
|
TestRequest::default().set(hdr)
|
|
|
|
}
|
|
|
|
|
2018-01-15 22:47:25 +01:00
|
|
|
/// Create TestRequest and set header
|
2018-10-05 06:14:18 +02:00
|
|
|
pub fn with_header<K, V>(key: K, value: V) -> TestRequest
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
2017-12-27 04:48:02 +01:00
|
|
|
{
|
|
|
|
TestRequest::default().header(key, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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 04:28:42 +01:00
|
|
|
/// Set a header
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn set<H: Header>(mut self, hdr: H) -> Self {
|
2018-03-06 04:28:42 +01:00
|
|
|
if let Ok(value) = hdr.try_into() {
|
|
|
|
self.headers.append(H::name(), value);
|
2018-04-14 01:02:01 +02:00
|
|
|
return self;
|
2018-03-06 04:28:42 +01:00
|
|
|
}
|
|
|
|
panic!("Can not set header");
|
|
|
|
}
|
|
|
|
|
2017-12-27 04:48:02 +01:00
|
|
|
/// Set a header
|
|
|
|
pub fn header<K, V>(mut self, key: K, value: V) -> Self
|
2018-04-14 01:02:01 +02:00
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
2017-12-27 04:48:02 +01:00
|
|
|
{
|
|
|
|
if let Ok(key) = HeaderName::try_from(key) {
|
2018-03-06 09:43:25 +01:00
|
|
|
if let Ok(value) = value.try_into() {
|
2017-12-27 04:48:02 +01:00
|
|
|
self.headers.append(key, value);
|
2018-04-14 01:02:01 +02:00
|
|
|
return self;
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!("Can not create header");
|
|
|
|
}
|
|
|
|
|
2018-02-20 05:01:38 +01:00
|
|
|
/// Set request payload
|
2018-11-18 22:48:42 +01:00
|
|
|
pub fn set_payload<B: Into<Bytes>>(mut self, data: B) -> Self {
|
2018-02-20 05:01:38 +01:00
|
|
|
let mut payload = Payload::empty();
|
2018-11-18 22:48:42 +01:00
|
|
|
payload.unread_data(data.into());
|
2018-02-20 05:01:38 +01:00
|
|
|
self.payload = Some(payload);
|
|
|
|
self
|
|
|
|
}
|
2018-03-02 04:12:59 +01:00
|
|
|
|
2018-07-15 12:24:22 +02:00
|
|
|
/// Set request's prefix
|
|
|
|
pub fn prefix(mut self, prefix: u16) -> Self {
|
|
|
|
self.prefix = prefix;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
/// Complete request creation and generate `Request` instance
|
|
|
|
pub fn finish(self) -> Request {
|
2018-04-14 01:02:01 +02:00
|
|
|
let TestRequest {
|
|
|
|
method,
|
|
|
|
uri,
|
|
|
|
version,
|
|
|
|
headers,
|
|
|
|
payload,
|
2019-01-29 19:14:00 +01:00
|
|
|
..
|
2018-04-14 01:02:01 +02:00
|
|
|
} = self;
|
2018-03-07 23:56:53 +01:00
|
|
|
|
2019-02-06 20:44:15 +01:00
|
|
|
let mut req = if let Some(pl) = payload {
|
|
|
|
Request::with_payload(pl)
|
|
|
|
} else {
|
|
|
|
Request::with_payload(Payload::empty())
|
|
|
|
};
|
|
|
|
|
|
|
|
let inner = req.inner_mut();
|
|
|
|
inner.head.uri = uri;
|
|
|
|
inner.head.method = method;
|
|
|
|
inner.head.version = version;
|
|
|
|
inner.head.headers = headers;
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
// req.set_cookies(cookies);
|
2018-06-25 06:58:04 +02:00
|
|
|
req
|
|
|
|
}
|
|
|
|
|
2018-10-05 06:14:18 +02:00
|
|
|
// /// This method generates `HttpRequest` instance and runs handler
|
|
|
|
// /// with generated request.
|
2018-10-05 20:04:59 +02:00
|
|
|
// pub fn run<H: Handler<S>>(self, h: &H) -> Result<Response, Error> {
|
2018-10-05 06:14:18 +02:00
|
|
|
// let req = self.finish();
|
|
|
|
// let resp = h.handle(&req);
|
|
|
|
|
|
|
|
// match resp.respond_to(&req) {
|
|
|
|
// Ok(resp) => match resp.into().into() {
|
|
|
|
// AsyncResultItem::Ok(resp) => Ok(resp),
|
|
|
|
// AsyncResultItem::Err(err) => Err(err),
|
|
|
|
// AsyncResultItem::Future(fut) => {
|
|
|
|
// let mut sys = System::new("test");
|
|
|
|
// sys.block_on(fut)
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// Err(err) => Err(err.into()),
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// /// This method generates `HttpRequest` instance and runs handler
|
|
|
|
// /// with generated request.
|
|
|
|
// ///
|
|
|
|
// /// This method panics is handler returns actor.
|
2018-10-05 20:04:59 +02:00
|
|
|
// pub fn run_async<H, R, F, E>(self, h: H) -> Result<Response, E>
|
2018-10-05 06:14:18 +02:00
|
|
|
// 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 sys = System::new("test");
|
|
|
|
// match sys.block_on(fut) {
|
|
|
|
// Ok(r) => match r.respond_to(&req) {
|
|
|
|
// Ok(reply) => match reply.into().into() {
|
|
|
|
// AsyncResultItem::Ok(resp) => Ok(resp),
|
|
|
|
// _ => panic!("Nested async replies are not supported"),
|
|
|
|
// },
|
|
|
|
// Err(e) => Err(e),
|
|
|
|
// },
|
|
|
|
// Err(err) => Err(err),
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// /// This method generates `HttpRequest` instance and executes handler
|
|
|
|
// pub fn run_async_result<F, R, I, E>(self, f: F) -> Result<I, E>
|
|
|
|
// where
|
|
|
|
// F: FnOnce(&HttpRequest<S>) -> R,
|
|
|
|
// R: Into<AsyncResult<I, E>>,
|
|
|
|
// {
|
|
|
|
// let req = self.finish();
|
|
|
|
// let res = f(&req);
|
|
|
|
|
|
|
|
// match res.into().into() {
|
|
|
|
// AsyncResultItem::Ok(resp) => Ok(resp),
|
|
|
|
// AsyncResultItem::Err(err) => Err(err),
|
|
|
|
// AsyncResultItem::Future(fut) => {
|
|
|
|
// let mut sys = System::new("test");
|
|
|
|
// sys.block_on(fut)
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// /// This method generates `HttpRequest` instance and executes handler
|
2018-10-05 20:04:59 +02:00
|
|
|
// pub fn execute<F, R>(self, f: F) -> Result<Response, Error>
|
2018-10-05 06:14:18 +02:00
|
|
|
// where
|
|
|
|
// F: FnOnce(&HttpRequest<S>) -> R,
|
|
|
|
// R: Responder + 'static,
|
|
|
|
// {
|
|
|
|
// let req = self.finish();
|
|
|
|
// let resp = f(&req);
|
|
|
|
|
|
|
|
// match resp.respond_to(&req) {
|
|
|
|
// Ok(resp) => match resp.into().into() {
|
|
|
|
// AsyncResultItem::Ok(resp) => Ok(resp),
|
|
|
|
// AsyncResultItem::Err(err) => Err(err),
|
|
|
|
// AsyncResultItem::Future(fut) => {
|
|
|
|
// let mut sys = System::new("test");
|
|
|
|
// sys.block_on(fut)
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// Err(err) => Err(err.into()),
|
|
|
|
// }
|
|
|
|
// }
|
2017-12-27 04:48:02 +01:00
|
|
|
}
|