2019-08-20 23:53:00 +00:00
|
|
|
#![feature(proc_macro_hygiene)]
|
2018-11-02 07:10:01 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
|
|
|
|
use rocket::response::Redirect;
|
|
|
|
use rocket::http::uri::Uri;
|
|
|
|
|
|
|
|
const NAME: &str = "John[]|\\%@^";
|
|
|
|
|
|
|
|
#[get("/hello/<name>")]
|
|
|
|
fn hello(name: String) -> String {
|
|
|
|
format!("Hello, {}!", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/raw")]
|
|
|
|
fn raw_redirect() -> Redirect {
|
|
|
|
Redirect::to(format!("/hello/{}", Uri::percent_encode(NAME)))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/uri")]
|
|
|
|
fn uri_redirect() -> Redirect {
|
|
|
|
Redirect::to(uri!(hello: NAME))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rocket() -> rocket::Rocket {
|
|
|
|
rocket::ignite().mount("/", routes![hello, uri_redirect, raw_redirect])
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-06-22 11:54:34 +00:00
|
|
|
use rocket::local::asynchronous::Client;
|
2018-11-02 07:10:01 +00:00
|
|
|
use rocket::http::{Status, uri::Uri};
|
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
#[rocket::async_test]
|
|
|
|
async fn uri_percent_encoding_redirect() {
|
2018-11-02 07:10:01 +00:00
|
|
|
let expected_location = vec!["/hello/John%5B%5D%7C%5C%25@%5E"];
|
2020-06-14 15:57:53 +00:00
|
|
|
let client = Client::new(rocket()).await.unwrap();
|
2018-11-02 07:10:01 +00:00
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
let response = client.get("/raw").dispatch().await;
|
2018-11-02 07:10:01 +00:00
|
|
|
let location: Vec<_> = response.headers().get("location").collect();
|
|
|
|
assert_eq!(response.status(), Status::SeeOther);
|
|
|
|
assert_eq!(&location, &expected_location);
|
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
let response = client.get("/uri").dispatch().await;
|
2018-11-02 07:10:01 +00:00
|
|
|
let location: Vec<_> = response.headers().get("location").collect();
|
|
|
|
assert_eq!(response.status(), Status::SeeOther);
|
|
|
|
assert_eq!(&location, &expected_location);
|
|
|
|
}
|
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
#[rocket::async_test]
|
|
|
|
async fn uri_percent_encoding_get() {
|
2020-06-14 15:57:53 +00:00
|
|
|
let client = Client::new(rocket()).await.unwrap();
|
2018-11-02 07:10:01 +00:00
|
|
|
let name = Uri::percent_encode(NAME);
|
2020-06-22 11:54:34 +00:00
|
|
|
let response = client.get(format!("/hello/{}", name)).dispatch().await;
|
2018-11-02 07:10:01 +00:00
|
|
|
assert_eq!(response.status(), Status::Ok);
|
2020-06-22 11:54:34 +00:00
|
|
|
assert_eq!(response.into_string().await.unwrap(), format!("Hello, {}!", NAME));
|
2018-11-02 07:10:01 +00:00
|
|
|
}
|
|
|
|
}
|