2019-08-20 23:53:00 +00:00
|
|
|
#![feature(proc_macro_hygiene)]
|
2018-11-30 16:43:31 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
|
2020-06-22 11:54:34 +00:00
|
|
|
use rocket::local::asynchronous::Client;
|
2018-11-30 16:43:31 +00:00
|
|
|
|
|
|
|
#[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!();
|
|
|
|
|
2019-01-22 10:03:37 +00:00
|
|
|
|
|
|
|
macro_rules! foo {
|
|
|
|
($addr:expr, $name:ident) => {
|
|
|
|
#[get($addr)]
|
|
|
|
fn hi($name: String) -> String {
|
|
|
|
$name
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// regression test for `#[get] panicking if used inside a macro
|
|
|
|
foo!("/hello/<name>", name);
|
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
#[rocket::async_test]
|
|
|
|
async fn test_reexpansion() {
|
2019-01-22 10:03:37 +00:00
|
|
|
let rocket = rocket::ignite().mount("/", routes![easy, hard, hi]);
|
2020-06-14 15:57:53 +00:00
|
|
|
let client = Client::new(rocket).await.unwrap();
|
2018-11-30 16:43:31 +00:00
|
|
|
|
2020-06-22 11:54:34 +00:00
|
|
|
let response = client.get("/easy/327").dispatch().await;
|
|
|
|
assert_eq!(response.into_string().await.unwrap(), "easy id: 327");
|
2018-11-30 16:43:31 +00:00
|
|
|
|
2020-06-22 11:54:34 +00:00
|
|
|
let response = client.get("/hard/72").dispatch().await;
|
|
|
|
assert_eq!(response.into_string().await.unwrap(), "hard id: 72");
|
2019-01-22 10:03:37 +00:00
|
|
|
|
2020-06-22 11:54:34 +00:00
|
|
|
let response = client.get("/hello/fish").dispatch().await;
|
|
|
|
assert_eq!(response.into_string().await.unwrap(), "fish");
|
2018-11-30 16:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! index {
|
|
|
|
($type:ty) => {
|
|
|
|
#[get("/")]
|
|
|
|
fn index(thing: rocket::State<$type>) -> String {
|
|
|
|
format!("Thing: {}", *thing)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
index!(i32);
|
|
|
|
|
2019-08-24 17:27:10 +00:00
|
|
|
#[rocket::async_test]
|
|
|
|
async fn test_index() {
|
2018-11-30 16:43:31 +00:00
|
|
|
let rocket = rocket::ignite().mount("/", routes![index]).manage(100i32);
|
2020-06-14 15:57:53 +00:00
|
|
|
let client = Client::new(rocket).await.unwrap();
|
2018-11-30 16:43:31 +00:00
|
|
|
|
2020-06-22 11:54:34 +00:00
|
|
|
let response = client.get("/").dispatch().await;
|
|
|
|
assert_eq!(response.into_string().await.unwrap(), "Thing: 100");
|
2018-11-30 16:43:31 +00:00
|
|
|
}
|