1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-11 04:32:28 +00:00
actix-web/src/handler.rs

597 lines
21 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
use std::marker::PhantomData;
2017-12-09 19:39:13 +00:00
use regex::Regex;
2018-01-01 01:26:32 +00:00
use futures::future::{Future, ok, err};
2017-12-09 19:39:13 +00:00
use http::{header, StatusCode, Error as HttpError};
2017-10-07 04:48:14 +00:00
2017-12-09 19:39:13 +00:00
use body::Body;
2017-11-29 21:26:55 +00:00
use error::Error;
use httprequest::HttpRequest;
2017-10-24 06:25:32 +00:00
use httpresponse::HttpResponse;
2017-11-03 20:35:34 +00:00
2018-01-15 21:47:25 +00:00
/// Trait defines object that could be registered as route handler
2017-10-16 08:19:23 +00:00
#[allow(unused_variables)]
2017-11-29 21:26:55 +00:00
pub trait Handler<S>: 'static {
2017-11-29 23:07:49 +00:00
/// The type of value that handler will return.
2017-12-14 17:43:42 +00:00
type Result: Responder;
2017-11-29 21:26:55 +00:00
2017-10-10 06:07:32 +00:00
/// Handle request
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> Self::Result;
2017-10-07 04:48:14 +00:00
}
2017-12-14 17:43:42 +00:00
/// Trait implemented by types that generate responses for clients.
///
/// Types that implement this trait can be used as the return type of a handler.
pub trait Responder {
/// The associated item which can be returned.
type Item: Into<Reply>;
/// The associated error which can be returned.
type Error: Into<Error>;
2017-12-14 17:43:42 +00:00
/// Convert itself to `Reply` or `Error`.
fn respond_to(self, req: HttpRequest) -> Result<Self::Item, Self::Error>;
}
2017-12-21 07:19:21 +00:00
#[doc(hidden)]
2018-01-15 21:47:25 +00:00
/// Convenience trait that convert `Future` object into `Boxed` future
2017-12-21 04:30:54 +00:00
pub trait AsyncResponder<I, E>: Sized {
fn responder(self) -> Box<Future<Item=I, Error=E>>;
}
impl<F, I, E> AsyncResponder<I, E> for F
where F: Future<Item=I, Error=E> + 'static,
I: Responder + 'static,
E: Into<Error> + 'static,
{
fn responder(self) -> Box<Future<Item=I, Error=E>> {
Box::new(self)
}
}
2017-11-29 21:26:55 +00:00
/// Handler<S> for Fn()
impl<F, R, S> Handler<S> for F
2017-11-27 05:18:38 +00:00
where F: Fn(HttpRequest<S>) -> R + 'static,
2017-12-14 17:43:42 +00:00
R: Responder + 'static
2017-10-15 21:17:41 +00:00
{
2017-11-29 21:26:55 +00:00
type Result = R;
2017-10-15 21:17:41 +00:00
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> R {
2017-11-29 21:26:55 +00:00
(self)(req)
2017-10-15 21:17:41 +00:00
}
}
2017-11-29 21:26:55 +00:00
/// Represents response process.
pub struct Reply(ReplyItem);
2017-11-29 03:49:17 +00:00
2017-11-30 23:13:56 +00:00
pub(crate) enum ReplyItem {
2017-12-16 00:24:15 +00:00
Message(HttpResponse),
2017-11-30 22:42:20 +00:00
Future(Box<Future<Item=HttpResponse, Error=Error>>),
2017-11-29 03:49:17 +00:00
}
2017-11-29 21:26:55 +00:00
impl Reply {
2017-11-29 03:49:17 +00:00
/// Create async response
2017-12-13 05:32:58 +00:00
#[inline]
2017-11-30 22:42:20 +00:00
pub fn async<F>(fut: F) -> Reply
where F: Future<Item=HttpResponse, Error=Error> + 'static
2017-11-29 03:49:17 +00:00
{
2017-11-30 22:42:20 +00:00
Reply(ReplyItem::Future(Box::new(fut)))
2017-11-29 03:49:17 +00:00
}
/// Send response
2017-12-13 05:32:58 +00:00
#[inline]
2017-11-30 23:13:56 +00:00
pub fn response<R: Into<HttpResponse>>(response: R) -> Reply {
2017-12-16 00:24:15 +00:00
Reply(ReplyItem::Message(response.into()))
2017-11-29 03:49:17 +00:00
}
2017-12-13 05:32:58 +00:00
#[inline]
2017-11-30 23:13:56 +00:00
pub(crate) fn into(self) -> ReplyItem {
self.0
2017-11-29 03:49:17 +00:00
}
2017-12-09 21:25:06 +00:00
#[cfg(test)]
pub(crate) fn as_response(&self) -> Option<&HttpResponse> {
match self.0 {
ReplyItem::Message(ref resp) => Some(resp),
_ => None,
}
}
2017-11-29 03:49:17 +00:00
}
2017-12-14 17:43:42 +00:00
impl Responder for Reply {
type Item = Reply;
type Error = Error;
2017-12-14 17:43:42 +00:00
fn respond_to(self, _: HttpRequest) -> Result<Reply, Error> {
Ok(self)
}
}
2017-12-14 17:43:42 +00:00
impl Responder for HttpResponse {
type Item = Reply;
type Error = Error;
2017-12-16 04:00:12 +00:00
#[inline]
2017-12-14 17:43:42 +00:00
fn respond_to(self, _: HttpRequest) -> Result<Reply, Error> {
2017-12-16 00:24:15 +00:00
Ok(Reply(ReplyItem::Message(self)))
2017-10-15 21:17:41 +00:00
}
}
2017-11-29 18:31:24 +00:00
impl From<HttpResponse> for Reply {
2017-12-16 04:00:12 +00:00
#[inline]
fn from(resp: HttpResponse) -> Reply {
2017-12-16 00:24:15 +00:00
Reply(ReplyItem::Message(resp))
2017-12-02 05:29:22 +00:00
}
}
2017-12-14 17:43:42 +00:00
impl<T: Responder, E: Into<Error>> Responder for Result<T, E>
2017-12-04 00:57:25 +00:00
{
2017-12-14 17:43:42 +00:00
type Item = <T as Responder>::Item;
2017-12-04 00:57:25 +00:00
type Error = Error;
2017-12-14 17:43:42 +00:00
fn respond_to(self, req: HttpRequest) -> Result<Self::Item, Self::Error> {
match self {
2017-12-14 17:43:42 +00:00
Ok(val) => match val.respond_to(req) {
2017-12-04 00:57:25 +00:00
Ok(val) => Ok(val),
Err(err) => Err(err.into()),
},
Err(err) => Err(err.into()),
}
}
}
impl<E: Into<Error>> From<Result<Reply, E>> for Reply {
#[inline]
fn from(res: Result<Reply, E>) -> Self {
2017-11-29 18:31:24 +00:00
match res {
Ok(val) => val,
2017-12-16 00:24:15 +00:00
Err(err) => Reply(ReplyItem::Message(err.into().into())),
}
}
}
impl<E: Into<Error>> From<Result<HttpResponse, E>> for Reply {
#[inline]
fn from(res: Result<HttpResponse, E>) -> Self {
match res {
Ok(val) => Reply(ReplyItem::Message(val)),
Err(err) => Reply(ReplyItem::Message(err.into().into())),
}
}
}
impl From<Box<Future<Item=HttpResponse, Error=Error>>> for Reply {
#[inline]
fn from(fut: Box<Future<Item=HttpResponse, Error=Error>>) -> Reply {
Reply(ReplyItem::Future(fut))
}
}
impl<I, E> Responder for Box<Future<Item=I, Error=E>>
where I: Responder + 'static,
E: Into<Error> + 'static
2017-11-30 23:13:56 +00:00
{
type Item = Reply;
type Error = Error;
2017-12-16 04:00:12 +00:00
#[inline]
fn respond_to(self, req: HttpRequest) -> Result<Reply, Error> {
let fut = self.map_err(|e| e.into())
.then(move |r| {
match r.respond_to(req) {
Ok(reply) => match reply.into().0 {
ReplyItem::Message(resp) => ok(resp),
_ => panic!("Nested async replies are not supported"),
},
Err(e) => err(e),
}
});
Ok(Reply::async(fut))
2017-11-30 23:13:56 +00:00
}
}
2018-01-15 21:47:25 +00:00
/// Trait defines object that could be registered as resource route
2017-11-29 21:26:55 +00:00
pub(crate) trait RouteHandler<S>: 'static {
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> Reply;
2017-11-29 21:26:55 +00:00
}
/// Route handler wrapper for Handler
pub(crate)
struct WrapHandler<S, H, R>
where H: Handler<S, Result=R>,
2017-12-14 17:43:42 +00:00
R: Responder,
2017-11-29 21:26:55 +00:00
S: 'static,
{
h: H,
s: PhantomData<S>,
}
impl<S, H, R> WrapHandler<S, H, R>
where H: Handler<S, Result=R>,
2017-12-14 17:43:42 +00:00
R: Responder,
2017-11-29 21:26:55 +00:00
S: 'static,
{
pub fn new(h: H) -> Self {
2018-02-26 22:33:56 +00:00
WrapHandler{h, s: PhantomData}
2017-11-29 21:26:55 +00:00
}
}
impl<S, H, R> RouteHandler<S> for WrapHandler<S, H, R>
where H: Handler<S, Result=R>,
2017-12-14 17:43:42 +00:00
R: Responder + 'static,
2017-11-29 21:26:55 +00:00
S: 'static,
{
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> Reply {
2018-02-26 22:33:56 +00:00
let req2 = req.without_state();
2017-12-14 17:43:42 +00:00
match self.h.handle(req).respond_to(req2) {
Ok(reply) => reply.into(),
Err(err) => Reply::response(err.into()),
}
2017-11-29 21:26:55 +00:00
}
}
/// Async route handler
pub(crate)
2017-12-20 20:51:39 +00:00
struct AsyncHandler<S, H, F, R, E>
where H: Fn(HttpRequest<S>) -> F + 'static,
F: Future<Item=R, Error=E> + 'static,
R: Responder + 'static,
E: Into<Error> + 'static,
2017-11-29 21:26:55 +00:00
S: 'static,
{
2017-12-20 20:51:39 +00:00
h: Box<H>,
2017-11-29 21:26:55 +00:00
s: PhantomData<S>,
}
2017-12-20 20:51:39 +00:00
impl<S, H, F, R, E> AsyncHandler<S, H, F, R, E>
where H: Fn(HttpRequest<S>) -> F + 'static,
F: Future<Item=R, Error=E> + 'static,
R: Responder + 'static,
E: Into<Error> + 'static,
2017-11-29 21:26:55 +00:00
S: 'static,
{
2017-12-20 20:51:39 +00:00
pub fn new(h: H) -> Self {
AsyncHandler{h: Box::new(h), s: PhantomData}
2017-11-29 21:26:55 +00:00
}
}
2017-12-20 20:51:39 +00:00
impl<S, H, F, R, E> RouteHandler<S> for AsyncHandler<S, H, F, R, E>
where H: Fn(HttpRequest<S>) -> F + 'static,
F: Future<Item=R, Error=E> + 'static,
R: Responder + 'static,
E: Into<Error> + 'static,
2017-11-29 21:26:55 +00:00
S: 'static,
{
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> Reply {
2018-02-26 22:33:56 +00:00
let req2 = req.without_state();
2017-12-20 20:51:39 +00:00
let fut = (self.h)(req)
.map_err(|e| e.into())
.then(move |r| {
match r.respond_to(req2) {
Ok(reply) => match reply.into().0 {
ReplyItem::Message(resp) => ok(resp),
_ => panic!("Nested async replies are not supported"),
2017-12-20 21:23:50 +00:00
},
2017-12-20 20:51:39 +00:00
Err(e) => err(e),
}
});
Reply::async(fut)
2017-11-29 21:26:55 +00:00
}
}
2017-12-04 02:51:52 +00:00
2017-12-09 19:55:55 +00:00
/// Path normalization helper
///
/// By normalizing it means:
2017-12-09 19:39:13 +00:00
///
/// - Add a trailing slash to the path.
2018-02-21 22:53:42 +00:00
/// - Remove a trailing slash from the path.
2017-12-09 19:39:13 +00:00
/// - Double slashes are replaced by one.
///
/// The handler returns as soon as it finds a path that resolves
2017-12-09 19:55:55 +00:00
/// correctly. The order if all enable is 1) merge, 3) both merge and append
/// and 3) append. If the path resolves with
2017-12-09 19:39:13 +00:00
/// at least one of those conditions, it will redirect to the new path.
///
/// If *append* is *true* append slash when needed. If a resource is
/// defined with trailing slash and the request comes without it, it will
/// append it automatically.
///
/// If *merge* is *true*, merge multiple consecutive slashes in the path into one.
///
/// This handler designed to be use as a handler for application's *default resource*.
2017-12-09 19:55:55 +00:00
///
/// ```rust
/// # extern crate actix_web;
/// # #[macro_use] extern crate serde_derive;
/// # use actix_web::*;
/// #
/// # fn index(req: HttpRequest) -> httpcodes::StaticResponse {
/// # httpcodes::HTTPOk
/// # }
/// fn main() {
/// let app = Application::new()
2017-12-09 19:55:55 +00:00
/// .resource("/test/", |r| r.f(index))
/// .default_resource(|r| r.h(NormalizePath::default()))
/// .finish();
/// }
/// ```
/// In this example `/test`, `/test///` will be redirected to `/test/` url.
2017-12-09 19:39:13 +00:00
pub struct NormalizePath {
append: bool,
merge: bool,
re_merge: Regex,
redirect: StatusCode,
not_found: StatusCode,
}
impl Default for NormalizePath {
2017-12-09 19:55:55 +00:00
/// Create default `NormalizePath` instance, *append* is set to *true*,
/// *merge* is set to *true* and *redirect* is set to `StatusCode::MOVED_PERMANENTLY`
2017-12-09 19:39:13 +00:00
fn default() -> NormalizePath {
NormalizePath {
append: true,
merge: true,
re_merge: Regex::new("//+").unwrap(),
redirect: StatusCode::MOVED_PERMANENTLY,
not_found: StatusCode::NOT_FOUND,
}
}
}
impl NormalizePath {
2018-01-16 18:59:33 +00:00
/// Create new `NormalizePath` instance
2017-12-09 19:39:13 +00:00
pub fn new(append: bool, merge: bool, redirect: StatusCode) -> NormalizePath {
NormalizePath {
2018-02-26 22:33:56 +00:00
append,
merge,
redirect,
2017-12-09 19:39:13 +00:00
re_merge: Regex::new("//+").unwrap(),
not_found: StatusCode::NOT_FOUND,
}
}
}
impl<S> Handler<S> for NormalizePath {
type Result = Result<HttpResponse, HttpError>;
2017-12-26 17:00:45 +00:00
fn handle(&mut self, req: HttpRequest<S>) -> Self::Result {
2017-12-09 19:39:13 +00:00
if let Some(router) = req.router() {
2017-12-09 21:25:06 +00:00
let query = req.query_string();
2017-12-09 19:39:13 +00:00
if self.merge {
// merge slashes
let p = self.re_merge.replace_all(req.path(), "/");
if p.len() != req.path().len() {
if router.has_route(p.as_ref()) {
2017-12-09 21:25:06 +00:00
let p = if !query.is_empty() { p + "?" + query } else { p };
2017-12-09 19:39:13 +00:00
return HttpResponse::build(self.redirect)
.header(header::LOCATION, p.as_ref())
.body(Body::Empty);
}
// merge slashes and append trailing slash
if self.append && !p.ends_with('/') {
let p = p.as_ref().to_owned() + "/";
if router.has_route(&p) {
2017-12-09 21:25:06 +00:00
let p = if !query.is_empty() { p + "?" + query } else { p };
2017-12-09 19:39:13 +00:00
return HttpResponse::build(self.redirect)
.header(header::LOCATION, p.as_str())
.body(Body::Empty);
}
}
// try to remove trailing slash
if p.ends_with('/') {
let p = p.as_ref().trim_right_matches('/');
2018-02-19 22:57:57 +00:00
if router.has_route(p) {
let mut req = HttpResponse::build(self.redirect);
return if !query.is_empty() {
req.header(header::LOCATION, (p.to_owned() + "?" + query).as_str())
} else {
req.header(header::LOCATION, p)
}
.body(Body::Empty);
}
}
2018-02-21 22:53:42 +00:00
} else if p.ends_with('/') {
// try to remove trailing slash
let p = p.as_ref().trim_right_matches('/');
if router.has_route(p) {
let mut req = HttpResponse::build(self.redirect);
return if !query.is_empty() {
req.header(header::LOCATION, (p.to_owned() + "?" + query).as_str())
} else {
req.header(header::LOCATION, p)
}
.body(Body::Empty);
}
2017-12-09 19:39:13 +00:00
}
}
// append trailing slash
if self.append && !req.path().ends_with('/') {
let p = req.path().to_owned() + "/";
if router.has_route(&p) {
2017-12-09 21:25:06 +00:00
let p = if !query.is_empty() { p + "?" + query } else { p };
2017-12-09 19:39:13 +00:00
return HttpResponse::build(self.redirect)
.header(header::LOCATION, p.as_str())
.body(Body::Empty);
}
}
}
Ok(HttpResponse::new(self.not_found, Body::Empty))
}
}
2017-12-04 02:51:52 +00:00
#[cfg(test)]
mod tests {
use super::*;
2017-12-09 21:25:06 +00:00
use http::{header, Method};
2017-12-27 03:48:02 +00:00
use test::TestRequest;
2017-12-09 21:25:06 +00:00
use application::Application;
2017-12-04 02:51:52 +00:00
2017-12-09 21:25:06 +00:00
fn index(_req: HttpRequest) -> HttpResponse {
HttpResponse::new(StatusCode::OK, Body::Empty)
}
#[test]
fn test_normalize_path_trailing_slashes() {
2017-12-26 17:00:45 +00:00
let mut app = Application::new()
2017-12-09 21:25:06 +00:00
.resource("/resource1", |r| r.method(Method::GET).f(index))
.resource("/resource2/", |r| r.method(Method::GET).f(index))
.default_resource(|r| r.h(NormalizePath::default()))
.finish();
// trailing slashes
2018-02-21 22:53:42 +00:00
let params =
vec![("/resource1", "", StatusCode::OK),
("/resource1/", "/resource1", StatusCode::MOVED_PERMANENTLY),
("/resource2", "/resource2/", StatusCode::MOVED_PERMANENTLY),
("/resource2/", "", StatusCode::OK),
("/resource1?p1=1&p2=2", "", StatusCode::OK),
("/resource1/?p1=1&p2=2", "/resource1?p1=1&p2=2", StatusCode::MOVED_PERMANENTLY),
("/resource2?p1=1&p2=2", "/resource2/?p1=1&p2=2",
StatusCode::MOVED_PERMANENTLY),
("/resource2/?p1=1&p2=2", "", StatusCode::OK)
];
2017-12-09 21:25:06 +00:00
for (path, target, code) in params {
2017-12-27 03:48:02 +00:00
let req = app.prepare_request(TestRequest::with_uri(path).finish());
2017-12-09 21:25:06 +00:00
let resp = app.run(req);
let r = resp.as_response().unwrap();
assert_eq!(r.status(), code);
if !target.is_empty() {
assert_eq!(
target,
r.headers().get(header::LOCATION).unwrap().to_str().unwrap());
}
}
}
#[test]
fn test_normalize_path_trailing_slashes_disabled() {
2017-12-26 17:00:45 +00:00
let mut app = Application::new()
2017-12-09 21:25:06 +00:00
.resource("/resource1", |r| r.method(Method::GET).f(index))
.resource("/resource2/", |r| r.method(Method::GET).f(index))
.default_resource(|r| r.h(
NormalizePath::new(false, true, StatusCode::MOVED_PERMANENTLY)))
.finish();
// trailing slashes
let params = vec![("/resource1", StatusCode::OK),
2018-02-21 22:53:42 +00:00
("/resource1/", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/resource2", StatusCode::NOT_FOUND),
("/resource2/", StatusCode::OK),
("/resource1?p1=1&p2=2", StatusCode::OK),
2018-02-21 22:53:42 +00:00
("/resource1/?p1=1&p2=2", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/resource2?p1=1&p2=2", StatusCode::NOT_FOUND),
("/resource2/?p1=1&p2=2", StatusCode::OK)
];
for (path, code) in params {
2017-12-27 03:48:02 +00:00
let req = app.prepare_request(TestRequest::with_uri(path).finish());
2017-12-09 21:25:06 +00:00
let resp = app.run(req);
let r = resp.as_response().unwrap();
assert_eq!(r.status(), code);
}
}
#[test]
fn test_normalize_path_merge_slashes() {
2017-12-26 17:00:45 +00:00
let mut app = Application::new()
2017-12-09 21:25:06 +00:00
.resource("/resource1", |r| r.method(Method::GET).f(index))
.resource("/resource1/a/b", |r| r.method(Method::GET).f(index))
.default_resource(|r| r.h(NormalizePath::default()))
.finish();
// trailing slashes
let params = vec![
("/resource1/a/b", "", StatusCode::OK),
2018-02-21 22:53:42 +00:00
("/resource1/", "/resource1", StatusCode::MOVED_PERMANENTLY),
("/resource1//", "/resource1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("//resource1//a//b", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
("//resource1//a//b/", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2018-02-20 21:03:21 +00:00
("//resource1//a//b//", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("///resource1//a//b", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a///b", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a//b/", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/resource1/a/b?p=1", "", StatusCode::OK),
("//resource1//a//b?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
("//resource1//a//b/?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("///resource1//a//b?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a///b?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a//b/?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2018-02-20 21:03:21 +00:00
("/////resource1/a//b//?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
];
for (path, target, code) in params {
2017-12-27 03:48:02 +00:00
let req = app.prepare_request(TestRequest::with_uri(path).finish());
2017-12-09 21:25:06 +00:00
let resp = app.run(req);
let r = resp.as_response().unwrap();
assert_eq!(r.status(), code);
if !target.is_empty() {
assert_eq!(
target,
r.headers().get(header::LOCATION).unwrap().to_str().unwrap());
}
}
}
#[test]
fn test_normalize_path_merge_and_append_slashes() {
2017-12-26 17:00:45 +00:00
let mut app = Application::new()
2017-12-09 21:25:06 +00:00
.resource("/resource1", |r| r.method(Method::GET).f(index))
.resource("/resource2/", |r| r.method(Method::GET).f(index))
.resource("/resource1/a/b", |r| r.method(Method::GET).f(index))
.resource("/resource2/a/b/", |r| r.method(Method::GET).f(index))
.default_resource(|r| r.h(NormalizePath::default()))
.finish();
// trailing slashes
let params = vec![
("/resource1/a/b", "", StatusCode::OK),
2018-02-21 22:53:42 +00:00
("/resource1/a/b/", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("//resource2//a//b", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("//resource2//a//b/", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
2018-02-20 21:03:21 +00:00
("//resource2//a//b//", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("///resource1//a//b", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
("///resource1//a//b/", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/////resource1/a///b", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a///b/", "/resource1/a/b", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/resource2/a/b", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("/resource2/a/b/", "", StatusCode::OK),
("//resource2//a//b", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("//resource2//a//b/", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("///resource2//a//b", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("///resource2//a//b/", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("/////resource2/a///b", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("/////resource2/a///b/", "/resource2/a/b/", StatusCode::MOVED_PERMANENTLY),
("/resource1/a/b?p=1", "", StatusCode::OK),
2018-02-21 22:53:42 +00:00
("/resource1/a/b/?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("//resource2//a//b?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("//resource2//a//b/?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("///resource1//a//b?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
("///resource1//a//b/?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/////resource1/a///b?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
("/////resource1/a///b/?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2018-02-20 21:03:21 +00:00
("/////resource1/a///b//?p=1", "/resource1/a/b?p=1", StatusCode::MOVED_PERMANENTLY),
2017-12-09 21:25:06 +00:00
("/resource2/a/b?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("//resource2//a//b?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("//resource2//a//b/?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("///resource2//a//b?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("///resource2//a//b/?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("/////resource2/a///b?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
("/////resource2/a///b/?p=1", "/resource2/a/b/?p=1", StatusCode::MOVED_PERMANENTLY),
];
for (path, target, code) in params {
2017-12-27 03:48:02 +00:00
let req = app.prepare_request(TestRequest::with_uri(path).finish());
2017-12-09 21:25:06 +00:00
let resp = app.run(req);
let r = resp.as_response().unwrap();
assert_eq!(r.status(), code);
if !target.is_empty() {
assert_eq!(
target, r.headers().get(header::LOCATION).unwrap().to_str().unwrap());
}
}
}
2017-12-04 02:51:52 +00:00
}