2018-09-20 04:14:30 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2020-07-21 19:06:06 +00:00
|
|
|
#[macro_use] extern crate bencher;
|
2017-04-05 08:19:33 +00:00
|
|
|
|
2020-07-21 19:06:06 +00:00
|
|
|
use rocket::local::blocking::Client;
|
2018-08-12 13:10:11 +00:00
|
|
|
use rocket::config::{Environment, Config, LoggingLevel};
|
2017-04-05 08:19:33 +00:00
|
|
|
|
|
|
|
#[get("/", format = "application/json")]
|
|
|
|
fn get() -> &'static str { "get" }
|
|
|
|
|
|
|
|
#[post("/", format = "application/json")]
|
|
|
|
fn post() -> &'static str { "post" }
|
|
|
|
|
|
|
|
fn rocket() -> rocket::Rocket {
|
2018-08-12 13:10:11 +00:00
|
|
|
let config = Config::build(Environment::Production).log_level(LoggingLevel::Off);
|
|
|
|
rocket::custom(config.unwrap()).mount("/", routes![get, post])
|
2017-04-05 08:19:33 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 19:06:06 +00:00
|
|
|
use bencher::Bencher;
|
|
|
|
use rocket::http::{Accept, ContentType};
|
|
|
|
|
|
|
|
fn accept_format(b: &mut Bencher) {
|
2020-10-15 04:37:16 +00:00
|
|
|
let client = Client::tracked(rocket()).unwrap();
|
2020-07-21 19:06:06 +00:00
|
|
|
let request = client.get("/").header(Accept::JSON);
|
|
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
fn wrong_accept_format(b: &mut Bencher) {
|
2020-10-15 04:37:16 +00:00
|
|
|
let client = Client::tracked(rocket()).unwrap();
|
2020-07-21 19:06:06 +00:00
|
|
|
let request = client.get("/").header(Accept::HTML);
|
|
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
fn content_type_format(b: &mut Bencher) {
|
2020-10-15 04:37:16 +00:00
|
|
|
let client = Client::tracked(rocket()).unwrap();
|
2020-07-21 19:06:06 +00:00
|
|
|
let request = client.post("/").header(ContentType::JSON);
|
|
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
fn wrong_content_type_format(b: &mut Bencher) {
|
2020-10-15 04:37:16 +00:00
|
|
|
let client = Client::tracked(rocket()).unwrap();
|
2020-07-21 19:06:06 +00:00
|
|
|
let request = client.post("/").header(ContentType::Plain);
|
|
|
|
b.iter(|| { request.clone().dispatch(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
benchmark_main!(benches);
|
|
|
|
benchmark_group! {
|
|
|
|
benches,
|
|
|
|
accept_format,
|
|
|
|
wrong_accept_format,
|
|
|
|
content_type_format,
|
|
|
|
wrong_content_type_format,
|
2017-04-05 08:19:33 +00:00
|
|
|
}
|