2019-03-26 18:54:35 +00:00
|
|
|
//! Test Various helpers for Actix applications to use during testing.
|
2019-03-30 04:13:39 +00:00
|
|
|
use std::fmt::Write as FmtWrite;
|
2019-04-11 02:43:09 +00:00
|
|
|
use std::io;
|
2019-03-26 18:54:35 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
2019-04-11 02:43:09 +00:00
|
|
|
use actix_codec::{AsyncRead, AsyncWrite};
|
2019-04-16 16:54:02 +00:00
|
|
|
use actix_server_config::IoStream;
|
2019-04-11 02:43:09 +00:00
|
|
|
use bytes::{Buf, Bytes, BytesMut};
|
|
|
|
use futures::{Async, Poll};
|
2019-03-30 04:13:39 +00:00
|
|
|
use http::header::{self, HeaderName, HeaderValue};
|
2019-04-06 22:02:02 +00:00
|
|
|
use http::{HttpTryFrom, Method, Uri, Version};
|
2019-08-13 17:48:11 +00:00
|
|
|
use percent_encoding::percent_encode;
|
2019-03-26 18:54:35 +00:00
|
|
|
|
2019-08-13 17:48:11 +00:00
|
|
|
use crate::cookie::{Cookie, CookieJar, USERINFO};
|
2019-04-06 22:02:02 +00:00
|
|
|
use crate::header::HeaderMap;
|
2019-03-26 18:54:35 +00:00
|
|
|
use crate::header::{Header, IntoHeaderValue};
|
|
|
|
use crate::payload::Payload;
|
|
|
|
use crate::Request;
|
|
|
|
|
|
|
|
/// Test `Request` builder
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// # extern crate http;
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// # use http::{header, StatusCode};
|
|
|
|
/// # use actix_web::*;
|
|
|
|
/// use actix_web::test::TestRequest;
|
|
|
|
///
|
|
|
|
/// fn index(req: &HttpRequest) -> Response {
|
|
|
|
/// if let Some(hdr) = req.headers().get(header::CONTENT_TYPE) {
|
|
|
|
/// Response::Ok().into()
|
|
|
|
/// } else {
|
|
|
|
/// Response::BadRequest().into()
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// 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(Option<Inner>);
|
|
|
|
|
|
|
|
struct Inner {
|
|
|
|
version: Version,
|
|
|
|
method: Method,
|
|
|
|
uri: Uri,
|
|
|
|
headers: HeaderMap,
|
|
|
|
cookies: CookieJar,
|
|
|
|
payload: Option<Payload>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for TestRequest {
|
|
|
|
fn default() -> TestRequest {
|
|
|
|
TestRequest(Some(Inner {
|
|
|
|
method: Method::GET,
|
|
|
|
uri: Uri::from_str("/").unwrap(),
|
|
|
|
version: Version::HTTP_11,
|
|
|
|
headers: HeaderMap::new(),
|
|
|
|
cookies: CookieJar::new(),
|
|
|
|
payload: None,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestRequest {
|
|
|
|
/// Create TestRequest and set request uri
|
|
|
|
pub fn with_uri(path: &str) -> TestRequest {
|
|
|
|
TestRequest::default().uri(path).take()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create TestRequest and set header
|
|
|
|
pub fn with_hdr<H: Header>(hdr: H) -> TestRequest {
|
|
|
|
TestRequest::default().set(hdr).take()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create TestRequest and set header
|
|
|
|
pub fn with_header<K, V>(key: K, value: V) -> TestRequest
|
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
|
|
|
{
|
|
|
|
TestRequest::default().header(key, value).take()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set HTTP version of this request
|
|
|
|
pub fn version(&mut self, ver: Version) -> &mut Self {
|
|
|
|
parts(&mut self.0).version = ver;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set HTTP method of this request
|
|
|
|
pub fn method(&mut self, meth: Method) -> &mut Self {
|
|
|
|
parts(&mut self.0).method = meth;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set HTTP Uri of this request
|
|
|
|
pub fn uri(&mut self, path: &str) -> &mut Self {
|
|
|
|
parts(&mut self.0).uri = Uri::from_str(path).unwrap();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a header
|
|
|
|
pub fn set<H: Header>(&mut self, hdr: H) -> &mut Self {
|
|
|
|
if let Ok(value) = hdr.try_into() {
|
|
|
|
parts(&mut self.0).headers.append(H::name(), value);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
panic!("Can not set header");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a header
|
|
|
|
pub fn header<K, V>(&mut self, key: K, value: V) -> &mut Self
|
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
|
|
|
{
|
|
|
|
if let Ok(key) = HeaderName::try_from(key) {
|
|
|
|
if let Ok(value) = value.try_into() {
|
|
|
|
parts(&mut self.0).headers.append(key, value);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panic!("Can not create header");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set cookie for this request
|
|
|
|
pub fn cookie<'a>(&mut self, cookie: Cookie<'a>) -> &mut Self {
|
|
|
|
parts(&mut self.0).cookies.add(cookie.into_owned());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set request payload
|
|
|
|
pub fn set_payload<B: Into<Bytes>>(&mut self, data: B) -> &mut Self {
|
|
|
|
let mut payload = crate::h1::Payload::empty();
|
|
|
|
payload.unread_data(data.into());
|
|
|
|
parts(&mut self.0).payload = Some(payload.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn take(&mut self) -> TestRequest {
|
|
|
|
TestRequest(self.0.take())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Complete request creation and generate `Request` instance
|
|
|
|
pub fn finish(&mut self) -> Request {
|
|
|
|
let inner = self.0.take().expect("cannot reuse test request builder");;
|
|
|
|
|
|
|
|
let mut req = if let Some(pl) = inner.payload {
|
|
|
|
Request::with_payload(pl)
|
|
|
|
} else {
|
|
|
|
Request::with_payload(crate::h1::Payload::empty().into())
|
|
|
|
};
|
|
|
|
|
|
|
|
let head = req.head_mut();
|
|
|
|
head.uri = inner.uri;
|
|
|
|
head.method = inner.method;
|
|
|
|
head.version = inner.version;
|
|
|
|
head.headers = inner.headers;
|
|
|
|
|
2019-03-30 04:13:39 +00:00
|
|
|
let mut cookie = String::new();
|
|
|
|
for c in inner.cookies.delta() {
|
2019-08-13 17:48:11 +00:00
|
|
|
let name = percent_encode(c.name().as_bytes(), USERINFO);
|
|
|
|
let value = percent_encode(c.value().as_bytes(), USERINFO);
|
2019-03-30 04:13:39 +00:00
|
|
|
let _ = write!(&mut cookie, "; {}={}", name, value);
|
|
|
|
}
|
|
|
|
if !cookie.is_empty() {
|
|
|
|
head.headers.insert(
|
|
|
|
header::COOKIE,
|
|
|
|
HeaderValue::from_str(&cookie.as_str()[2..]).unwrap(),
|
|
|
|
);
|
2019-03-26 18:54:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
req
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-04-08 06:06:21 +00:00
|
|
|
fn parts(parts: &mut Option<Inner>) -> &mut Inner {
|
2019-03-26 18:54:35 +00:00
|
|
|
parts.as_mut().expect("cannot reuse test request builder")
|
|
|
|
}
|
2019-04-11 02:43:09 +00:00
|
|
|
|
|
|
|
/// Async io buffer
|
|
|
|
pub struct TestBuffer {
|
|
|
|
pub read_buf: BytesMut,
|
|
|
|
pub write_buf: BytesMut,
|
|
|
|
pub err: Option<io::Error>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TestBuffer {
|
|
|
|
/// Create new TestBuffer instance
|
|
|
|
pub fn new<T>(data: T) -> TestBuffer
|
|
|
|
where
|
|
|
|
BytesMut: From<T>,
|
|
|
|
{
|
|
|
|
TestBuffer {
|
|
|
|
read_buf: BytesMut::from(data),
|
|
|
|
write_buf: BytesMut::new(),
|
|
|
|
err: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-11 02:57:34 +00:00
|
|
|
/// Create new empty TestBuffer instance
|
|
|
|
pub fn empty() -> TestBuffer {
|
|
|
|
TestBuffer::new("")
|
|
|
|
}
|
|
|
|
|
2019-04-11 02:43:09 +00:00
|
|
|
/// Add extra data to read buffer.
|
|
|
|
pub fn extend_read_buf<T: AsRef<[u8]>>(&mut self, data: T) {
|
|
|
|
self.read_buf.extend_from_slice(data.as_ref())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl io::Read for TestBuffer {
|
|
|
|
fn read(&mut self, dst: &mut [u8]) -> Result<usize, io::Error> {
|
|
|
|
if self.read_buf.is_empty() {
|
|
|
|
if self.err.is_some() {
|
|
|
|
Err(self.err.take().unwrap())
|
|
|
|
} else {
|
|
|
|
Err(io::Error::new(io::ErrorKind::WouldBlock, ""))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let size = std::cmp::min(self.read_buf.len(), dst.len());
|
|
|
|
let b = self.read_buf.split_to(size);
|
|
|
|
dst[..size].copy_from_slice(&b);
|
|
|
|
Ok(size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl io::Write for TestBuffer {
|
|
|
|
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
|
|
|
|
self.write_buf.extend(buf);
|
|
|
|
Ok(buf.len())
|
|
|
|
}
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsyncRead for TestBuffer {}
|
|
|
|
|
|
|
|
impl AsyncWrite for TestBuffer {
|
|
|
|
fn shutdown(&mut self) -> Poll<(), io::Error> {
|
|
|
|
Ok(Async::Ready(()))
|
|
|
|
}
|
|
|
|
fn write_buf<B: Buf>(&mut self, _: &mut B) -> Poll<usize, io::Error> {
|
|
|
|
Ok(Async::NotReady)
|
|
|
|
}
|
|
|
|
}
|
2019-04-16 16:54:02 +00:00
|
|
|
|
|
|
|
impl IoStream for TestBuffer {
|
|
|
|
fn set_nodelay(&mut self, _nodelay: bool) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_linger(&mut self, _dur: Option<std::time::Duration>) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_keepalive(&mut self, _dur: Option<std::time::Duration>) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|