1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 09:23:54 +00:00
actix-web/src/test.rs

218 lines
6.4 KiB
Rust
Raw Normal View History

//! Various helpers for Actix applications to use during testing.
use std::cell::RefCell;
2019-03-03 00:24:14 +00:00
use std::rc::Rc;
2019-03-02 06:51:32 +00:00
use actix_http::http::header::{Header, HeaderName, IntoHeaderValue};
2019-03-03 00:24:14 +00:00
use actix_http::http::{HttpTryFrom, Method, Version};
2019-03-03 06:03:45 +00:00
use actix_http::test::TestRequest as HttpTestRequest;
2019-03-04 05:02:01 +00:00
use actix_http::{Extensions, PayloadStream, Request};
2019-03-02 06:51:32 +00:00
use actix_router::{Path, Url};
use actix_rt::Runtime;
2019-03-03 00:24:14 +00:00
use bytes::Bytes;
use futures::Future;
2019-03-03 00:24:14 +00:00
use crate::request::HttpRequest;
2019-03-03 08:57:48 +00:00
use crate::service::{ServiceFromRequest, ServiceRequest};
2018-03-20 18:23:35 +00:00
thread_local! {
static RT: RefCell<Runtime> = {
RefCell::new(Runtime::new().unwrap())
};
}
/// Runs the provided future, blocking the current thread until the future
/// completes.
///
/// This function can be used to synchronously block the current thread
/// until the provided `future` has resolved either successfully or with an
/// error. The result of the future is then returned from this function
/// call.
///
/// Note that this function is intended to be used only for testing purpose.
/// This function panics on nested call.
pub fn block_on<F>(f: F) -> Result<F::Item, F::Error>
where
F: Future,
{
RT.with(move |rt| rt.borrow_mut().block_on(f))
}
/// Test `Request` builder.
///
/// For unit testing, actix provides a request builder type and a simple handler runner. TestRequest implements a builder-like pattern.
/// You can generate various types of request via TestRequest's methods:
/// * `TestRequest::to_request` creates `actix_http::Request` instance.
/// * `TestRequest::to_service` creates `ServiceRequest` instance, which is used for testing middlewares and chain adapters.
/// * `TestRequest::to_from` creates `ServiceFromRequest` instance, which is used for testing extractors.
/// * `TestRequest::to_http_request` creates `HttpRequest` instance, which is used for testing handlers.
2018-03-29 04:49:50 +00:00
///
2019-03-02 06:51:32 +00:00
/// ```rust,ignore
/// use actix_web::test;
2017-12-27 03:48:02 +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) {
/// HttpResponse::Ok().into()
2017-12-27 03:48:02 +00:00
/// } else {
/// HttpResponse::BadRequest().into()
2017-12-27 03:48:02 +00:00
/// }
/// }
///
/// fn main() {
/// let req = test::TestRequest::with_header("content-type", "text/plain")
/// .to_http_request();
///
/// let resp = test::block_on(index(req));
2017-12-27 03:48:02 +00:00
/// assert_eq!(resp.status(), StatusCode::OK);
///
/// let req = test::TestRequest::default().to_http_request();
/// let resp = test::block_on(index(req));
2017-12-27 03:48:02 +00:00
/// assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
/// }
/// ```
2019-03-03 06:03:45 +00:00
pub struct TestRequest {
req: HttpTestRequest,
2019-03-03 00:24:14 +00:00
extensions: Extensions,
2017-12-27 03:48:02 +00:00
}
2019-03-03 06:03:45 +00:00
impl Default for TestRequest {
fn default() -> TestRequest {
TestRequest {
req: HttpTestRequest::default(),
2019-03-03 00:24:14 +00:00
extensions: Extensions::new(),
2017-12-27 03:48:02 +00:00
}
}
}
2019-03-03 06:03:45 +00:00
impl TestRequest {
2018-01-15 21:47:25 +00:00
/// Create TestRequest and set request uri
2019-03-03 06:03:45 +00:00
pub fn with_uri(path: &str) -> TestRequest {
TestRequest {
req: HttpTestRequest::default().uri(path).take(),
2019-03-03 00:24:14 +00:00
extensions: Extensions::new(),
}
2017-12-27 03:48:02 +00:00
}
2018-03-06 03:28:42 +00:00
/// Create TestRequest and set header
2019-03-03 06:03:45 +00:00
pub fn with_hdr<H: Header>(hdr: H) -> TestRequest {
TestRequest {
req: HttpTestRequest::default().set(hdr).take(),
2019-03-03 00:24:14 +00:00
extensions: Extensions::new(),
}
2018-03-06 03:28:42 +00:00
}
2018-01-15 21:47:25 +00:00
/// Create TestRequest and set header
2019-03-03 06:03:45 +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
{
2019-03-03 06:03:45 +00:00
TestRequest {
req: HttpTestRequest::default().header(key, value).take(),
2019-03-03 00:24:14 +00:00
extensions: Extensions::new(),
2017-12-27 03:48:02 +00:00
}
}
/// Set HTTP version of this request
pub fn version(mut self, ver: Version) -> Self {
2019-03-03 00:24:14 +00:00
self.req.version(ver);
2017-12-27 03:48:02 +00:00
self
}
/// Set HTTP method of this request
pub fn method(mut self, meth: Method) -> Self {
2019-03-03 00:24:14 +00:00
self.req.method(meth);
2017-12-27 03:48:02 +00:00
self
}
/// Set HTTP Uri of this request
pub fn uri(mut self, path: &str) -> Self {
2019-03-03 00:24:14 +00:00
self.req.uri(path);
2017-12-27 03:48:02 +00:00
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 {
2019-03-03 00:24:14 +00:00
self.req.set(hdr);
self
2018-03-06 03:28:42 +00:00
}
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
{
2019-03-03 00:24:14 +00:00
self.req.header(key, value);
2017-12-27 03:48:02 +00:00
self
}
2018-02-20 04:01:38 +00:00
/// Set request payload
2019-03-02 06:51:32 +00:00
pub fn set_payload<B: Into<Bytes>>(mut self, data: B) -> Self {
2019-03-03 00:24:14 +00:00
self.req.set_payload(data);
2018-02-20 04:01:38 +00:00
self
}
2018-03-02 03:12:59 +00:00
2019-03-03 23:32:47 +00:00
/// Set request config
pub fn config<T: 'static>(mut self, data: T) -> Self {
self.extensions.insert(data);
self
}
2019-03-03 00:24:14 +00:00
/// Complete request creation and generate `ServiceRequest` instance
pub fn to_service(mut self) -> ServiceRequest<PayloadStream> {
2019-03-03 00:24:14 +00:00
let req = self.req.finish();
ServiceRequest::new(
Path::new(Url::new(req.uri().clone())),
req,
Rc::new(self.extensions),
)
}
2019-03-04 05:02:01 +00:00
/// Complete request creation and generate `Request` instance
pub fn to_request(mut self) -> Request<PayloadStream> {
self.req.finish()
}
2017-12-27 03:48:02 +00:00
/// Complete request creation and generate `HttpRequest` instance
2019-03-04 05:02:01 +00:00
pub fn to_http_request(mut self) -> HttpRequest {
2019-03-03 00:24:14 +00:00
let req = self.req.finish();
ServiceRequest::new(
Path::new(Url::new(req.uri().clone())),
req,
Rc::new(self.extensions),
)
.into_request()
}
2019-03-03 08:57:48 +00:00
/// Complete request creation and generate `ServiceFromRequest` instance
pub fn to_from(mut self) -> ServiceFromRequest<PayloadStream> {
let req = self.req.finish();
let req = ServiceRequest::new(
Path::new(Url::new(req.uri().clone())),
req,
Rc::new(self.extensions),
);
ServiceFromRequest::new(req, None)
}
/// Runs the provided future, blocking the current thread until the future
/// completes.
///
/// This function can be used to synchronously block the current thread
/// until the provided `future` has resolved either successfully or with an
/// error. The result of the future is then returned from this function
/// call.
///
/// Note that this function is intended to be used only for testing purpose.
/// This function panics on nested call.
pub fn block_on<F>(f: F) -> Result<F::Item, F::Error>
where
F: Future,
{
block_on(f)
}
2019-03-03 00:24:14 +00:00
}