2021-01-15 02:11:10 +00:00
|
|
|
use std::fmt;
|
2019-11-20 17:33:22 +00:00
|
|
|
|
2021-01-15 02:11:10 +00:00
|
|
|
use actix_http::{
|
2021-04-13 10:16:12 +00:00
|
|
|
body::Body,
|
2021-01-15 02:11:10 +00:00
|
|
|
error::InternalError,
|
|
|
|
http::{header::IntoHeaderPair, Error as HttpError, HeaderMap, StatusCode},
|
2019-04-24 17:25:46 +00:00
|
|
|
};
|
2019-03-02 06:51:32 +00:00
|
|
|
use bytes::{Bytes, BytesMut};
|
|
|
|
|
2021-04-09 17:07:10 +00:00
|
|
|
use crate::{Error, HttpRequest, HttpResponse, HttpResponseBuilder};
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2021-01-15 02:11:10 +00:00
|
|
|
/// Trait implemented by types that can be converted to an HTTP response.
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
2021-01-15 02:11:10 +00:00
|
|
|
/// Any types that implement this trait can be used in the return type of a handler.
|
2019-03-02 06:51:32 +00:00
|
|
|
pub trait Responder {
|
2021-01-09 13:17:19 +00:00
|
|
|
/// Convert self to `HttpResponse`.
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse;
|
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
|
|
|
///
|
2021-03-25 08:45:52 +00:00
|
|
|
/// ```
|
2021-01-15 02:11:10 +00:00
|
|
|
/// use actix_web::{http::StatusCode, HttpRequest, Responder};
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// "Welcome!".with_status(StatusCode::OK)
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
fn with_status(self, status: StatusCode) -> CustomResponder<Self>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
CustomResponder::new(self).with_status(status)
|
|
|
|
}
|
|
|
|
|
2021-01-15 02:11:10 +00:00
|
|
|
/// Insert header to the final response.
|
|
|
|
///
|
|
|
|
/// Overrides other headers with the same name.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
2021-03-25 08:45:52 +00:00
|
|
|
/// ```
|
2019-04-24 17:25:46 +00:00
|
|
|
/// use actix_web::{web, HttpRequest, Responder};
|
|
|
|
/// use serde::Serialize;
|
|
|
|
///
|
|
|
|
/// #[derive(Serialize)]
|
|
|
|
/// struct MyObj {
|
|
|
|
/// name: String,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
2021-01-15 02:11:10 +00:00
|
|
|
/// web::Json(MyObj { name: "Name".to_owned() })
|
|
|
|
/// .with_header(("x-version", "1.2.3"))
|
2019-04-24 17:25:46 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2021-01-15 02:11:10 +00:00
|
|
|
fn with_header<H>(self, header: H) -> CustomResponder<Self>
|
2019-04-24 17:25:46 +00:00
|
|
|
where
|
|
|
|
Self: Sized,
|
2021-01-15 02:11:10 +00:00
|
|
|
H: IntoHeaderPair,
|
2019-04-24 17:25:46 +00:00
|
|
|
{
|
2021-01-15 02:11:10 +00:00
|
|
|
CustomResponder::new(self).with_header(header)
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2021-01-09 13:17:19 +00:00
|
|
|
impl Responder for HttpResponse {
|
2019-03-02 06:51:32 +00:00
|
|
|
#[inline]
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
2021-01-08 22:17:19 +00:00
|
|
|
self
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-13 10:16:12 +00:00
|
|
|
impl Responder for actix_http::Response<Body> {
|
2021-04-09 17:07:10 +00:00
|
|
|
#[inline]
|
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::from(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for HttpResponseBuilder {
|
|
|
|
#[inline]
|
|
|
|
fn respond_to(mut self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
self.finish()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for actix_http::ResponseBuilder {
|
|
|
|
#[inline]
|
|
|
|
fn respond_to(mut self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::from(self.finish())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
impl<T: Responder> Responder for Option<T> {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
|
2019-03-02 06:51:32 +00:00
|
|
|
match self {
|
2021-04-09 17:07:10 +00:00
|
|
|
Some(val) => val.respond_to(req),
|
|
|
|
None => HttpResponse::new(StatusCode::NOT_FOUND),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, E> Responder for Result<T, E>
|
|
|
|
where
|
|
|
|
T: Responder,
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
|
2019-03-02 06:51:32 +00:00
|
|
|
match self {
|
2021-01-08 22:17:19 +00:00
|
|
|
Ok(val) => val.respond_to(req),
|
2021-01-09 13:17:19 +00:00
|
|
|
Err(e) => HttpResponse::from_error(e.into()),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
impl<T: Responder> Responder for (T, StatusCode) {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
|
2021-01-08 22:17:19 +00:00
|
|
|
let mut res = self.0.respond_to(req);
|
|
|
|
*res.status_mut() = self.1;
|
|
|
|
res
|
2019-07-11 08:42:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
impl Responder for &'static str {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::TEXT_PLAIN_UTF_8)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for &'static [u8] {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::APPLICATION_OCTET_STREAM)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for String {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::TEXT_PLAIN_UTF_8)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Responder for &'a String {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::TEXT_PLAIN_UTF_8)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for Bytes {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::APPLICATION_OCTET_STREAM)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Responder for BytesMut {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type(mime::APPLICATION_OCTET_STREAM)
|
2021-01-08 22:17:19 +00:00
|
|
|
.body(self)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-15 02:11:10 +00:00
|
|
|
/// Allows overriding status code and headers for a responder.
|
2019-04-24 17:25:46 +00:00
|
|
|
pub struct CustomResponder<T> {
|
|
|
|
responder: T,
|
|
|
|
status: Option<StatusCode>,
|
2021-03-20 05:18:06 +00:00
|
|
|
headers: Result<HeaderMap, HttpError>,
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Responder> CustomResponder<T> {
|
|
|
|
fn new(responder: T) -> Self {
|
|
|
|
CustomResponder {
|
|
|
|
responder,
|
|
|
|
status: None,
|
2021-03-20 05:18:06 +00:00
|
|
|
headers: Ok(HeaderMap::new()),
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
///
|
2021-03-25 08:45:52 +00:00
|
|
|
/// ```
|
2019-04-24 17:25:46 +00:00
|
|
|
/// use actix_web::{HttpRequest, Responder, http::StatusCode};
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
|
|
|
/// "Welcome!".with_status(StatusCode::OK)
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn with_status(mut self, status: StatusCode) -> Self {
|
|
|
|
self.status = Some(status);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-01-15 02:11:10 +00:00
|
|
|
/// Insert header to the final response.
|
|
|
|
///
|
|
|
|
/// Overrides other headers with the same name.
|
2019-04-24 17:25:46 +00:00
|
|
|
///
|
2021-03-25 08:45:52 +00:00
|
|
|
/// ```
|
2019-04-24 17:25:46 +00:00
|
|
|
/// use actix_web::{web, HttpRequest, Responder};
|
|
|
|
/// use serde::Serialize;
|
|
|
|
///
|
|
|
|
/// #[derive(Serialize)]
|
|
|
|
/// struct MyObj {
|
|
|
|
/// name: String,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn index(req: HttpRequest) -> impl Responder {
|
2021-01-15 02:11:10 +00:00
|
|
|
/// web::Json(MyObj { name: "Name".to_string() })
|
|
|
|
/// .with_header(("x-version", "1.2.3"))
|
|
|
|
/// .with_header(("x-version", "1.2.3"))
|
2019-04-24 17:25:46 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2021-01-15 02:11:10 +00:00
|
|
|
pub fn with_header<H>(mut self, header: H) -> Self
|
2019-04-24 17:25:46 +00:00
|
|
|
where
|
2021-01-15 02:11:10 +00:00
|
|
|
H: IntoHeaderPair,
|
2019-04-24 17:25:46 +00:00
|
|
|
{
|
2021-03-20 05:18:06 +00:00
|
|
|
if let Ok(ref mut headers) = self.headers {
|
|
|
|
match header.try_into_header_pair() {
|
|
|
|
Ok((key, value)) => headers.append(key, value),
|
|
|
|
Err(e) => self.headers = Err(e.into()),
|
|
|
|
};
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Responder> Responder for CustomResponder<T> {
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
|
2021-03-20 05:18:06 +00:00
|
|
|
let headers = match self.headers {
|
|
|
|
Ok(headers) => headers,
|
|
|
|
Err(err) => return HttpResponse::from_error(Error::from(err)),
|
|
|
|
};
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let mut res = self.responder.respond_to(req);
|
2019-04-24 17:25:46 +00:00
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
if let Some(status) = self.status {
|
2019-04-24 17:25:46 +00:00
|
|
|
*res.status_mut() = status;
|
|
|
|
}
|
2021-01-08 22:17:19 +00:00
|
|
|
|
2021-03-20 05:18:06 +00:00
|
|
|
for (k, v) in headers {
|
|
|
|
// TODO: before v4, decide if this should be append instead
|
|
|
|
res.headers_mut().insert(k, v);
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
2021-01-08 22:17:19 +00:00
|
|
|
|
|
|
|
res
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:41:50 +00:00
|
|
|
impl<T> Responder for InternalError<T>
|
|
|
|
where
|
2021-01-15 02:11:10 +00:00
|
|
|
T: fmt::Debug + fmt::Display + 'static,
|
2019-03-06 03:41:50 +00:00
|
|
|
{
|
2021-01-09 13:17:19 +00:00
|
|
|
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::from_error(self.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};
|
2019-11-26 05:25:50 +00:00
|
|
|
use crate::test::{init_service, TestRequest};
|
2021-01-08 22:17:19 +00:00
|
|
|
use crate::{error, web, App};
|
2019-03-04 05:40:03 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_option_responder() {
|
2021-02-07 01:00:40 +00:00
|
|
|
let srv = init_service(
|
2019-11-26 05:25:50 +00:00
|
|
|
App::new()
|
2021-02-11 23:03:17 +00:00
|
|
|
.service(web::resource("/none").to(|| async { Option::<&'static str>::None }))
|
2019-11-26 05:25:50 +00:00
|
|
|
.service(web::resource("/some").to(|| async { Some("some") })),
|
|
|
|
)
|
|
|
|
.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)) => {
|
2020-07-21 23:28:33 +00:00
|
|
|
let bytes = b.clone();
|
2019-11-26 05:25:50 +00:00
|
|
|
assert_eq!(bytes, Bytes::from_static(b"some"));
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|
2019-11-26 05:25:50 +00:00
|
|
|
_ => panic!(),
|
|
|
|
}
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_responder() {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = "test".respond_to(&req);
|
2019-11-26 05:25:50 +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("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = b"test".respond_to(&req);
|
2019-11-26 05:25:50 +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")
|
|
|
|
);
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = "test".to_string().respond_to(&req);
|
2019-11-26 05:25:50 +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("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = (&"test".to_string()).respond_to(&req);
|
2019-11-26 05:25:50 +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("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = Bytes::from_static(b"test").respond_to(&req);
|
2019-11-26 05:25:50 +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")
|
|
|
|
);
|
|
|
|
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = BytesMut::from(b"test".as_ref()).respond_to(&req);
|
2019-11-26 05:25:50 +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
|
2021-02-11 23:03:17 +00:00
|
|
|
let resp = error::InternalError::new("err", StatusCode::BAD_REQUEST).respond_to(&req);
|
2019-11-26 05:25:50 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
|
2019-03-13 05:57:09 +00:00
|
|
|
}
|
2019-03-17 17:11:10 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_result_responder() {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
2019-11-20 17:33:22 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
// Result<I, E>
|
2021-01-08 22:17:19 +00:00
|
|
|
let resp = Ok::<_, Error>("test".to_string()).respond_to(&req);
|
2019-11-26 05:25:50 +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("text/plain; charset=utf-8")
|
|
|
|
);
|
|
|
|
|
2021-02-11 23:03:17 +00:00
|
|
|
let res = Err::<String, _>(error::InternalError::new("err", StatusCode::BAD_REQUEST))
|
|
|
|
.respond_to(&req);
|
2021-01-08 22:17:19 +00:00
|
|
|
|
|
|
|
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
|
2019-04-24 17:25:46 +00:00
|
|
|
}
|
2019-07-11 08:42:58 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_custom_responder() {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = "test"
|
|
|
|
.to_string()
|
|
|
|
.with_status(StatusCode::BAD_REQUEST)
|
2021-01-08 22:17:19 +00:00
|
|
|
.respond_to(&req);
|
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
|
|
|
|
let res = "test"
|
|
|
|
.to_string()
|
2021-01-15 02:11:10 +00:00
|
|
|
.with_header(("content-type", "json"))
|
2021-01-08 22:17:19 +00:00
|
|
|
.respond_to(&req);
|
2019-11-26 05:25:50 +00:00
|
|
|
|
|
|
|
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-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_tuple_responder_with_status_code() {
|
|
|
|
let req = TestRequest::default().to_http_request();
|
2021-01-08 22:17:19 +00:00
|
|
|
let res = ("test".to_string(), StatusCode::BAD_REQUEST).respond_to(&req);
|
2019-11-26 05:25:50 +00:00
|
|
|
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
|
|
|
|
let req = TestRequest::default().to_http_request();
|
|
|
|
let res = ("test".to_string(), StatusCode::OK)
|
2021-01-15 02:11:10 +00:00
|
|
|
.with_header((CONTENT_TYPE, mime::APPLICATION_JSON))
|
2021-01-08 22:17:19 +00:00
|
|
|
.respond_to(&req);
|
2019-11-26 05:25:50 +00:00
|
|
|
assert_eq!(res.status(), StatusCode::OK);
|
|
|
|
assert_eq!(res.body().bin_ref(), b"test");
|
|
|
|
assert_eq!(
|
|
|
|
res.headers().get(CONTENT_TYPE).unwrap(),
|
2021-01-15 02:11:10 +00:00
|
|
|
HeaderValue::from_static("application/json")
|
2019-11-26 05:25:50 +00:00
|
|
|
);
|
2019-07-11 08:42:58 +00:00
|
|
|
}
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|