2018-10-06 04:56:46 +00:00
|
|
|
#![feature(proc_macro_hygiene, decl_macro)]
|
2018-09-20 04:14:30 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use rocket::{Request, Outcome::*};
|
2018-10-23 20:22:26 +00:00
|
|
|
use rocket::http::ext::Normalize;
|
2018-09-20 04:14:30 +00:00
|
|
|
use rocket::local::Client;
|
|
|
|
use rocket::data::{self, Data, FromDataSimple};
|
|
|
|
use rocket::request::Form;
|
2018-10-25 05:14:05 +00:00
|
|
|
use rocket::http::{Status, RawStr, ContentType};
|
2018-09-20 04:14:30 +00:00
|
|
|
|
|
|
|
// Use all of the code generation avaiable at once.
|
|
|
|
|
2018-10-25 05:14:05 +00:00
|
|
|
#[derive(FromForm, UriDisplay)]
|
2018-09-20 04:14:30 +00:00
|
|
|
struct Inner<'r> {
|
|
|
|
field: &'r RawStr
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Simple(String);
|
|
|
|
|
|
|
|
impl FromDataSimple for Simple {
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn from_data(_: &Request, data: Data) -> data::Outcome<Self, ()> {
|
|
|
|
use std::io::Read;
|
|
|
|
let mut string = String::new();
|
|
|
|
data.open().take(64).read_to_string(&mut string).unwrap();
|
|
|
|
Success(Simple(string))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/<a>/<name>/name/<path..>?sky=blue&<sky>&<query..>", format = "json", data = "<simple>", rank = 138)]
|
|
|
|
fn post1(
|
|
|
|
sky: usize,
|
|
|
|
name: &RawStr,
|
|
|
|
a: String,
|
|
|
|
query: Form<Inner>,
|
|
|
|
path: PathBuf,
|
|
|
|
simple: Simple,
|
|
|
|
) -> String {
|
|
|
|
let string = format!("{}, {}, {}, {}, {}, {}",
|
2018-10-23 20:22:26 +00:00
|
|
|
sky, name, a, query.field, path.normalized_str(), simple.0);
|
2018-09-20 04:14:30 +00:00
|
|
|
|
|
|
|
let uri = uri!(post2: a, name.url_decode_lossy(), path, sky, query.into_inner());
|
|
|
|
|
|
|
|
format!("({}) ({})", string, uri.to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[route(POST, path = "/<a>/<name>/name/<path..>?sky=blue&<sky>&<query..>", format = "json", data = "<simple>", rank = 138)]
|
|
|
|
fn post2(
|
|
|
|
sky: usize,
|
|
|
|
name: &RawStr,
|
|
|
|
a: String,
|
|
|
|
query: Form<Inner>,
|
|
|
|
path: PathBuf,
|
|
|
|
simple: Simple,
|
|
|
|
) -> String {
|
|
|
|
let string = format!("{}, {}, {}, {}, {}, {}",
|
2018-10-23 20:22:26 +00:00
|
|
|
sky, name, a, query.field, path.normalized_str(), simple.0);
|
2018-09-20 04:14:30 +00:00
|
|
|
|
|
|
|
let uri = uri!(post2: a, name.url_decode_lossy(), path, sky, query.into_inner());
|
|
|
|
|
|
|
|
format!("({}) ({})", string, uri.to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_full_route() {
|
|
|
|
let rocket = rocket::ignite()
|
|
|
|
.mount("/1", routes![post1])
|
|
|
|
.mount("/2", routes![post2]);
|
|
|
|
|
|
|
|
let client = Client::new(rocket).unwrap();
|
|
|
|
|
|
|
|
let a = "A%20A";
|
|
|
|
let name = "Bob%20McDonald";
|
|
|
|
let path = "this/path/here";
|
|
|
|
let sky = 777;
|
|
|
|
let query = "field=inside";
|
|
|
|
let simple = "data internals";
|
|
|
|
|
|
|
|
let path_part = format!("/{}/{}/name/{}", a, name, path);
|
|
|
|
let query_part = format!("?sky={}&sky=blue&{}", sky, query);
|
|
|
|
let uri = format!("{}{}", path_part, query_part);
|
|
|
|
let expected_uri = format!("{}?sky=blue&sky={}&{}", path_part, sky, query);
|
|
|
|
|
|
|
|
let response = client.post(&uri).body(simple).dispatch();
|
|
|
|
assert_eq!(response.status(), Status::NotFound);
|
|
|
|
|
|
|
|
let response = client.post(format!("/1{}", uri)).body(simple).dispatch();
|
|
|
|
assert_eq!(response.status(), Status::NotFound);
|
|
|
|
|
|
|
|
let mut response = client
|
|
|
|
.post(format!("/1{}", uri))
|
|
|
|
.header(ContentType::JSON)
|
|
|
|
.body(simple)
|
|
|
|
.dispatch();
|
|
|
|
|
|
|
|
assert_eq!(response.body_string().unwrap(), format!("({}, {}, {}, {}, {}, {}) ({})",
|
|
|
|
sky, name, "A A", "inside", path, simple, expected_uri));
|
|
|
|
|
|
|
|
let response = client.post(format!("/2{}", uri)).body(simple).dispatch();
|
|
|
|
assert_eq!(response.status(), Status::NotFound);
|
|
|
|
|
|
|
|
let mut response = client
|
|
|
|
.post(format!("/2{}", uri))
|
|
|
|
.header(ContentType::JSON)
|
|
|
|
.body(simple)
|
|
|
|
.dispatch();
|
|
|
|
|
|
|
|
assert_eq!(response.body_string().unwrap(), format!("({}, {}, {}, {}, {}, {}) ({})",
|
|
|
|
sky, name, "A A", "inside", path, simple, expected_uri));
|
|
|
|
}
|
2018-10-05 04:44:42 +00:00
|
|
|
|
|
|
|
// Check that we propogate span information correctly to allow re-expansion.
|
|
|
|
|
|
|
|
#[get("/easy/<id>")]
|
|
|
|
fn easy(id: i32) -> String {
|
|
|
|
format!("easy id: {}", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! make_handler {
|
|
|
|
() => {
|
|
|
|
#[get("/hard/<id>")]
|
|
|
|
fn hard(id: i32) -> String {
|
|
|
|
format!("hard id: {}", id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
make_handler!();
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reexpansion() {
|
|
|
|
let rocket = rocket::ignite().mount("/", routes![easy, hard]);
|
|
|
|
let client = Client::new(rocket).unwrap();
|
|
|
|
|
|
|
|
let mut response = client.get("/easy/327").dispatch();
|
|
|
|
assert_eq!(response.body_string().unwrap(), "easy id: 327");
|
|
|
|
|
|
|
|
let mut response = client.get("/hard/72").dispatch();
|
|
|
|
assert_eq!(response.body_string().unwrap(), "hard id: 72");
|
|
|
|
}
|