Source code

Revision control

Copy as Markdown

Other Tools

#![deny(warnings)]
use warp::{http::Uri, Filter};
#[tokio::test]
async fn redirect_uri() {
let over_there = warp::any().map(|| warp::redirect(Uri::from_static("/over-there")));
let req = warp::test::request();
let resp = req.reply(&over_there).await;
assert_eq!(resp.status(), 301);
assert_eq!(resp.headers()["location"], "/over-there");
}
#[tokio::test]
async fn redirect_found_uri() {
let over_there = warp::any().map(|| warp::redirect::found(Uri::from_static("/over-there")));
let req = warp::test::request();
let resp = req.reply(&over_there).await;
assert_eq!(resp.status(), 302);
assert_eq!(resp.headers()["location"], "/over-there");
}
#[tokio::test]
async fn redirect_see_other_uri() {
let over_there = warp::any().map(|| warp::redirect::see_other(Uri::from_static("/over-there")));
let req = warp::test::request();
let resp = req.reply(&over_there).await;
assert_eq!(resp.status(), 303);
assert_eq!(resp.headers()["location"], "/over-there");
}
#[tokio::test]
async fn redirect_temporary_uri() {
let over_there = warp::any().map(|| warp::redirect::temporary(Uri::from_static("/over-there")));
let req = warp::test::request();
let resp = req.reply(&over_there).await;
assert_eq!(resp.status(), 307);
assert_eq!(resp.headers()["location"], "/over-there");
}
#[tokio::test]
async fn redirect_permanent_uri() {
let over_there = warp::any().map(|| warp::redirect::permanent(Uri::from_static("/over-there")));
let req = warp::test::request();
let resp = req.reply(&over_there).await;
assert_eq!(resp.status(), 308);
assert_eq!(resp.headers()["location"], "/over-there");
}