2019-11-20 17:33:22 +00:00
|
|
|
use std::future::Future;
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::task::{Context, Poll};
|
|
|
|
|
2019-03-06 03:41:50 +00:00
|
|
|
use actix_http::error::InternalError;
|
2019-04-24 17:25:46 +00:00
|
|
|
use actix_http::http::{
|
|
|
|
header::IntoHeaderValue, Error as HttpError, HeaderMap, HeaderName, HttpTryFrom,
|
|
|
|
StatusCode,
|
|
|
|
};
|
|
|
|
use actix_http::{Error, Response, ResponseBuilder};
|
2019-03-02 06:51:32 +00:00
|
|
|
use bytes::{Bytes, BytesMut};
|
2019-11-20 17:33:22 +00:00
|
|
|
use futures::future::{err, ok, Either as EitherFuture, LocalBoxFuture, Ready};
|
|
|
|
use futures::ready;
|
|
|
|
use pin_project::{pin_project, project};
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
use crate::request::HttpRequest;
|
|
|
|
|
2019-03-02 17:05:07 +00:00
|
|
|
/// Trait implemented by types that can be converted to a http response.
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
|
|
|
/// Types that implement this trait can be used as the return type of a handler.
|
|
|
|
pub trait Responder {
|
|
|
|
/// The associated error which can be returned.
|
|
|
|
type Error: Into<Error>;
|
|
|
|
|
|
|
|
/// The future response value.
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future: Future<Output = Result<Response, Self::Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
/// Convert itself to `AsyncResult` or `Error`.
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future;
|
2019-04-24 17:25:46 +00:00
|
|
|
|
2019-04-24 20:21:42 +00:00
|
|
|
/// Override a status code for a Responder.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{HttpRequest, Responder, http::StatusCode};
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// "Welcome!".with_status(StatusCode::OK)
|
|
|
|
/// }
|
|
|
|
/// # fn main() {}
|
|
|
|
/// ```
|
|
|
|
fn with_status(self, status: StatusCode) -> CustomResponder<Self>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
CustomResponder::new(self).with_status(status)
|
|
|
|
}
|
|
|
|
|
2019-04-24 20:21:42 +00:00
|
|
|
/// Add header to the Responder's response.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, HttpRequest, Responder};
|
|
|
|
/// use serde::Serialize;
|
|
|
|
///
|
|
|
|
/// #[derive(Serialize)]
|
|
|
|
/// struct MyObj {
|
|
|
|
/// name: String,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// web::Json(
|
|
|
|
/// MyObj{name: "Name".to_string()}
|
|
|
|
/// )
|
|
|
|
/// .with_header("x-version", "1.2.3")
|
|
|
|
/// }
|
|
|
|
/// # fn main() {}
|
|
|
|
/// ```
|
|
|
|
fn with_header<K, V>(self, key: K, value: V) -> CustomResponder<Self>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
|
|
|
{
|
|
|
|
CustomResponder::new(self).with_header(key, value)
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for Response {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Responder for Option<T>
|
|
|
|
where
|
|
|
|
T: Responder,
|
|
|
|
{
|
|
|
|
type Error = T::Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = EitherFuture<T::Future, Ready<Result<Response, T::Error>>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future {
|
|
|
|
match self {
|
2019-11-20 17:33:22 +00:00
|
|
|
Some(t) => EitherFuture::Left(t.respond_to(req)),
|
|
|
|
None => {
|
|
|
|
EitherFuture::Right(ok(Response::build(StatusCode::NOT_FOUND).finish()))
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, E> Responder for Result<T, E>
|
|
|
|
where
|
|
|
|
T: Responder,
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
|
|
|
type Error = Error;
|
2019-03-03 21:53:31 +00:00
|
|
|
type Future = EitherFuture<
|
2019-11-20 17:33:22 +00:00
|
|
|
ResponseFuture<T::Future, T::Error>,
|
|
|
|
Ready<Result<Response, Error>>,
|
2019-03-03 21:53:31 +00:00
|
|
|
>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future {
|
|
|
|
match self {
|
2019-11-20 17:33:22 +00:00
|
|
|
Ok(val) => EitherFuture::Left(ResponseFuture::new(val.respond_to(req))),
|
|
|
|
Err(e) => EitherFuture::Right(err(e.into())),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for ResponseBuilder {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn respond_to(mut self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(self.finish())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 08:42:58 +00:00
|
|
|
impl<T> Responder for (T, StatusCode)
|
|
|
|
where
|
|
|
|
T: Responder,
|
|
|
|
{
|
|
|
|
type Error = T::Error;
|
|
|
|
type Future = CustomResponderFut<T>;
|
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future {
|
|
|
|
CustomResponderFut {
|
2019-11-20 17:33:22 +00:00
|
|
|
fut: self.0.respond_to(req),
|
2019-07-11 08:42:58 +00:00
|
|
|
status: Some(self.1),
|
|
|
|
headers: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
impl Responder for &'static str {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for &'static [u8] {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for String {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Responder for &'a String {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("text/plain; charset=utf-8")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for Bytes {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for BytesMut {
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
|
|
|
ok(Response::build(StatusCode::OK)
|
|
|
|
.content_type("application/octet-stream")
|
|
|
|
.body(self))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-24 17:25:46 +00:00
|
|
|
/// Allows to override status code and headers for a responder.
|
|
|
|
pub struct CustomResponder<T> {
|
|
|
|
responder: T,
|
|
|
|
status: Option<StatusCode>,
|
|
|
|
headers: Option<HeaderMap>,
|
|
|
|
error: Option<HttpError>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Responder> CustomResponder<T> {
|
|
|
|
fn new(responder: T) -> Self {
|
|
|
|
CustomResponder {
|
|
|
|
responder,
|
|
|
|
status: None,
|
|
|
|
headers: None,
|
|
|
|
error: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-24 20:21:42 +00:00
|
|
|
/// Override a status code for the Responder's response.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{HttpRequest, Responder, http::StatusCode};
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// "Welcome!".with_status(StatusCode::OK)
|
|
|
|
/// }
|
|
|
|
/// # fn main() {}
|
|
|
|
/// ```
|
|
|
|
pub fn with_status(mut self, status: StatusCode) -> Self {
|
|
|
|
self.status = Some(status);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-04-24 20:21:42 +00:00
|
|
|
/// Add header to the Responder's response.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, HttpRequest, Responder};
|
|
|
|
/// use serde::Serialize;
|
|
|
|
///
|
|
|
|
/// #[derive(Serialize)]
|
|
|
|
/// struct MyObj {
|
|
|
|
/// name: String,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// web::Json(
|
|
|
|
/// MyObj{name: "Name".to_string()}
|
|
|
|
/// )
|
|
|
|
/// .with_header("x-version", "1.2.3")
|
|
|
|
/// }
|
|
|
|
/// # fn main() {}
|
|
|
|
/// ```
|
|
|
|
pub fn with_header<K, V>(mut self, key: K, value: V) -> Self
|
|
|
|
where
|
|
|
|
HeaderName: HttpTryFrom<K>,
|
|
|
|
V: IntoHeaderValue,
|
|
|
|
{
|
|
|
|
if self.headers.is_none() {
|
|
|
|
self.headers = Some(HeaderMap::new());
|
|
|
|
}
|
|
|
|
|
|
|
|
match HeaderName::try_from(key) {
|
|
|
|
Ok(key) => match value.try_into() {
|
|
|
|
Ok(value) => {
|
|
|
|
self.headers.as_mut().unwrap().append(key, value);
|
|
|
|
}
|
|
|
|
Err(e) => self.error = Some(e.into()),
|
|
|
|
},
|
|
|
|
Err(e) => self.error = Some(e.into()),
|
|
|
|
};
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Responder> Responder for CustomResponder<T> {
|
|
|
|
type Error = T::Error;
|
|
|
|
type Future = CustomResponderFut<T>;
|
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future {
|
|
|
|
CustomResponderFut {
|
2019-11-20 17:33:22 +00:00
|
|
|
fut: self.responder.respond_to(req),
|
2019-04-24 17:25:46 +00:00
|
|
|
status: self.status,
|
|
|
|
headers: self.headers,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
#[pin_project]
|
2019-04-24 17:25:46 +00:00
|
|
|
pub struct CustomResponderFut<T: Responder> {
|
2019-11-20 17:33:22 +00:00
|
|
|
#[pin]
|
|
|
|
fut: T::Future,
|
2019-04-24 17:25:46 +00:00
|
|
|
status: Option<StatusCode>,
|
|
|
|
headers: Option<HeaderMap>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Responder> Future for CustomResponderFut<T> {
|
2019-11-20 17:33:22 +00:00
|
|
|
type Output = Result<Response, T::Error>;
|
2019-04-24 17:25:46 +00:00
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
|
|
|
|
|
|
|
let mut res = match ready!(this.fut.poll(cx)) {
|
|
|
|
Ok(res) => res,
|
|
|
|
Err(e) => return Poll::Ready(Err(e)),
|
|
|
|
};
|
|
|
|
if let Some(status) = this.status.take() {
|
2019-04-24 17:25:46 +00:00
|
|
|
*res.status_mut() = status;
|
|
|
|
}
|
2019-11-20 17:33:22 +00:00
|
|
|
if let Some(ref headers) = this.headers {
|
2019-04-24 17:25:46 +00:00
|
|
|
for (k, v) in headers {
|
|
|
|
res.headers_mut().insert(k.clone(), v.clone());
|
|
|
|
}
|
|
|
|
}
|
2019-11-20 17:33:22 +00:00
|
|
|
Poll::Ready(Ok(res))
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
/// Combines two different responder types into a single type
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{Either, Error, HttpResponse};
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
2019-11-20 17:33:22 +00:00
|
|
|
/// type RegisterResult = Either<HttpResponse, Result<HttpResponse, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// fn index() -> RegisterResult {
|
2019-03-02 06:51:32 +00:00
|
|
|
/// if is_a_variant() {
|
2019-03-03 21:53:31 +00:00
|
|
|
/// // <- choose left variant
|
|
|
|
/// Either::A(HttpResponse::BadRequest().body("Bad data"))
|
2019-03-02 06:51:32 +00:00
|
|
|
/// } else {
|
|
|
|
/// Either::B(
|
2019-03-03 21:53:31 +00:00
|
|
|
/// // <- Right variant
|
2019-11-20 17:33:22 +00:00
|
|
|
/// Ok(HttpResponse::Ok()
|
2019-03-02 06:51:32 +00:00
|
|
|
/// .content_type("text/html")
|
2019-11-20 17:33:22 +00:00
|
|
|
/// .body("Hello!"))
|
2019-03-02 06:51:32 +00:00
|
|
|
/// )
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// # fn is_a_variant() -> bool { true }
|
|
|
|
/// # fn main() {}
|
|
|
|
/// ```
|
2019-03-03 21:53:31 +00:00
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub enum Either<A, B> {
|
|
|
|
/// First branch of the type
|
|
|
|
A(A),
|
|
|
|
/// Second branch of the type
|
|
|
|
B(B),
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
impl<A, B> Responder for Either<A, B>
|
|
|
|
where
|
|
|
|
A: Responder,
|
|
|
|
B: Responder,
|
|
|
|
{
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = EitherResponder<A, B>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> Self::Future {
|
|
|
|
match self {
|
2019-11-20 17:33:22 +00:00
|
|
|
Either::A(a) => EitherResponder::A(a.respond_to(req)),
|
|
|
|
Either::B(b) => EitherResponder::B(b.respond_to(req)),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
#[pin_project]
|
2019-03-02 06:51:32 +00:00
|
|
|
pub enum EitherResponder<A, B>
|
|
|
|
where
|
2019-11-20 17:33:22 +00:00
|
|
|
A: Responder,
|
|
|
|
B: Responder,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-11-20 17:33:22 +00:00
|
|
|
A(#[pin] A::Future),
|
|
|
|
B(#[pin] B::Future),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, B> Future for EitherResponder<A, B>
|
|
|
|
where
|
2019-11-20 17:33:22 +00:00
|
|
|
A: Responder,
|
|
|
|
B: Responder,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-11-20 17:33:22 +00:00
|
|
|
type Output = Result<Response, Error>;
|
|
|
|
|
|
|
|
#[project]
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
#[project]
|
|
|
|
match self.project() {
|
|
|
|
EitherResponder::A(fut) => {
|
|
|
|
Poll::Ready(ready!(fut.poll(cx)).map_err(|e| e.into()))
|
|
|
|
}
|
|
|
|
EitherResponder::B(fut) => {
|
|
|
|
Poll::Ready(ready!(fut.poll(cx).map_err(|e| e.into())))
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:41:50 +00:00
|
|
|
impl<T> Responder for InternalError<T>
|
|
|
|
where
|
|
|
|
T: std::fmt::Debug + std::fmt::Display + 'static,
|
|
|
|
{
|
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Response, Error>>;
|
2019-03-06 03:41:50 +00:00
|
|
|
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> Self::Future {
|
2019-03-13 05:57:09 +00:00
|
|
|
let err: Error = self.into();
|
2019-11-20 17:33:22 +00:00
|
|
|
ok(err.into())
|
2019-03-06 03:41:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
#[pin_project]
|
|
|
|
pub struct ResponseFuture<T, E> {
|
|
|
|
#[pin]
|
|
|
|
fut: T,
|
|
|
|
_t: PhantomData<E>,
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
impl<T, E> ResponseFuture<T, E> {
|
2019-03-02 06:51:32 +00:00
|
|
|
pub fn new(fut: T) -> Self {
|
2019-11-20 17:33:22 +00:00
|
|
|
ResponseFuture {
|
|
|
|
fut,
|
|
|
|
_t: PhantomData,
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
impl<T, E> Future for ResponseFuture<T, E>
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
2019-11-20 17:33:22 +00:00
|
|
|
T: Future<Output = Result<Response, E>>,
|
|
|
|
E: Into<Error>,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-11-20 17:33:22 +00:00
|
|
|
type Output = Result<Response, Error>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
Poll::Ready(ready!(self.project().fut.poll(cx)).map_err(|e| e.into()))
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-04 05:40:03 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
2019-03-17 16:52:41 +00:00
|
|
|
pub(crate) mod tests {
|
2019-03-06 23:47:15 +00:00
|
|
|
use actix_service::Service;
|
2019-03-13 05:57:09 +00:00
|
|
|
use bytes::{Bytes, BytesMut};
|
2019-03-04 05:40:03 +00:00
|
|
|
|
2019-03-13 05:57:09 +00:00
|
|
|
use super::*;
|
2019-03-07 23:51:24 +00:00
|
|
|
use crate::dev::{Body, ResponseBody};
|
2019-03-13 05:57:09 +00:00
|
|
|
use crate::http::{header::CONTENT_TYPE, HeaderValue, StatusCode};
|
|
|
|
use crate::test::{block_on, init_service, TestRequest};
|
|
|
|
use crate::{error, web, App, HttpResponse};
|
2019-03-04 05:40:03 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_option_responder() {
|
2019-11-20 17:33:22 +00:00
|
|
|
block_on(async {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.service(
|
2019-11-21 15:34:04 +00:00
|
|
|
web::resource("/none")
|
|
|
|
.to(|| async { Option::<&'static str>::None }),
|
2019-11-20 17:33:22 +00:00
|
|
|
)
|
2019-11-21 15:34:04 +00:00
|
|
|
.service(web::resource("/some").to(|| async { Some("some") })),
|
2019-11-20 17:33:22 +00:00
|
|
|
)
|
|
|
|
.await;
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/none").to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/some").to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
match resp.response().body() {
|
|
|
|
ResponseBody::Body(Body::Bytes(ref b)) => {
|
|
|
|
let bytes: Bytes = b.clone().into();
|
|
|
|
assert_eq!(bytes, Bytes::from_static(b"some"));
|
|
|
|
}
|
|
|
|
_ => panic!(),
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|
2019-11-20 17:33:22 +00:00
|
|
|
})
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|
2019-03-13 05:57:09 +00:00
|
|
|
|
2019-03-17 16:52:41 +00:00
|
|
|
pub(crate) trait BodyTest {
|
2019-03-13 05:57:09 +00:00
|
|
|
fn bin_ref(&self) -> &[u8];
|
|
|
|
fn body(&self) -> &Body;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BodyTest for ResponseBody<Body> {
|
|
|
|
fn bin_ref(&self) -> &[u8] {
|
|
|
|
match self {
|
|
|
|
ResponseBody::Body(ref b) => match b {
|
|
|
|
Body::Bytes(ref bin) => &bin,
|
|
|
|
_ => panic!(),
|
|
|
|
},
|
|
|
|
ResponseBody::Other(ref b) => match b {
|
|
|
|
Body::Bytes(ref bin) => &bin,
|
|
|
|
_ => panic!(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn body(&self) -> &Body {
|
|
|
|
match self {
|
|
|
|
ResponseBody::Body(ref b) => b,
|
|
|
|
ResponseBody::Other(ref b) => b,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_responder() {
|
2019-11-20 17:33:22 +00:00
|
|
|
block_on(async {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
|
|
|
|
let resp: HttpResponse = "test".respond_to(&req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
|
|
|
let resp: HttpResponse = b"test".respond_to(&req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
|
|
|
|
|
|
|
let resp: HttpResponse = "test".to_string().respond_to(&req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
|
|
|
let resp: HttpResponse =
|
|
|
|
(&"test".to_string()).respond_to(&req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
|
|
|
let resp: HttpResponse =
|
|
|
|
Bytes::from_static(b"test").respond_to(&req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
|
|
|
|
|
|
|
let resp: HttpResponse = BytesMut::from(b"test".as_ref())
|
2019-03-13 05:57:09 +00:00
|
|
|
.respond_to(&req)
|
2019-11-20 17:33:22 +00:00
|
|
|
.await
|
2019-03-13 05:57:09 +00:00
|
|
|
.unwrap();
|
2019-11-20 17:33:22 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("application/octet-stream")
|
|
|
|
);
|
|
|
|
|
|
|
|
// InternalError
|
|
|
|
let resp: HttpResponse =
|
|
|
|
error::InternalError::new("err", StatusCode::BAD_REQUEST)
|
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
|
|
|
})
|
2019-03-13 05:57:09 +00:00
|
|
|
}
|
2019-03-17 17:11:10 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_result_responder() {
|
2019-11-20 17:33:22 +00:00
|
|
|
block_on(async {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
|
|
|
|
// Result<I, E>
|
|
|
|
let resp: HttpResponse = Ok::<_, Error>("test".to_string())
|
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(resp.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
|
|
|
let res = Err::<String, _>(error::InternalError::new(
|
|
|
|
"err",
|
|
|
|
StatusCode::BAD_REQUEST,
|
|
|
|
))
|
|
|
|
.respond_to(&req)
|
|
|
|
.await;
|
|
|
|
assert!(res.is_err());
|
|
|
|
})
|
2019-03-17 17:11:10 +00:00
|
|
|
}
|
2019-04-24 17:25:46 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_custom_responder() {
|
2019-11-20 17:33:22 +00:00
|
|
|
block_on(async {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = "test"
|
2019-04-24 17:25:46 +00:00
|
|
|
.to_string()
|
|
|
|
.with_status(StatusCode::BAD_REQUEST)
|
2019-11-20 17:33:22 +00:00
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
|
|
|
|
let res = "test"
|
2019-04-24 17:25:46 +00:00
|
|
|
.to_string()
|
|
|
|
.with_header("content-type", "json")
|
2019-11-20 17:33:22 +00:00
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
res.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("json")
|
|
|
|
);
|
|
|
|
})
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
2019-07-11 08:42:58 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tuple_responder_with_status_code() {
|
2019-11-20 17:33:22 +00:00
|
|
|
block_on(async {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = ("test".to_string(), StatusCode::BAD_REQUEST)
|
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
2019-07-16 04:21:52 +00:00
|
|
|
.unwrap();
|
2019-11-20 17:33:22 +00:00
|
|
|
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
2019-07-11 08:42:58 +00:00
|
|
|
|
2019-11-20 17:33:22 +00:00
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = ("test".to_string(), StatusCode::OK)
|
2019-07-11 08:42:58 +00:00
|
|
|
.with_header("content-type", "json")
|
2019-11-20 17:33:22 +00:00
|
|
|
.respond_to(&req)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
res.headers().get(CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("json")
|
|
|
|
);
|
|
|
|
})
|
2019-07-11 08:42:58 +00:00
|
|
|
}
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|