2018-06-28 15:55:15 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
2016-09-04 20:51:16 +00:00
|
|
|
|
2016-10-25 09:17:49 +00:00
|
|
|
use rocket::request::{self, Request, FromRequest};
|
|
|
|
use rocket::outcome::Outcome::*;
|
2016-09-04 20:51:16 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct HeaderCount(usize);
|
|
|
|
|
2020-01-31 09:34:15 +00:00
|
|
|
#[rocket::async_trait]
|
2021-03-15 02:57:59 +00:00
|
|
|
impl<'r> FromRequest<'r> for HeaderCount {
|
2019-04-09 03:57:47 +00:00
|
|
|
type Error = std::convert::Infallible;
|
2018-08-10 11:42:30 +00:00
|
|
|
|
2021-03-15 02:57:59 +00:00
|
|
|
async fn from_request(request: &'r Request<'_>) -> request::Outcome<Self, Self::Error> {
|
2016-10-25 09:17:49 +00:00
|
|
|
Success(HeaderCount(request.headers().len()))
|
2016-09-04 20:51:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/")]
|
|
|
|
fn header_count(header_count: HeaderCount) -> String {
|
2018-08-10 11:42:30 +00:00
|
|
|
format!("Your request contained {} headers!", header_count.0)
|
2016-09-04 20:51:16 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 23:10:02 +00:00
|
|
|
#[launch]
|
2017-06-06 20:41:04 +00:00
|
|
|
fn rocket() -> rocket::Rocket {
|
|
|
|
rocket::ignite().mount("/", routes![header_count])
|
|
|
|
}
|
|
|
|
|
2016-10-16 10:16:16 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2020-07-05 18:35:36 +00:00
|
|
|
use rocket::local::blocking::Client;
|
2016-12-16 00:34:19 +00:00
|
|
|
use rocket::http::Header;
|
|
|
|
|
2020-07-05 18:35:36 +00:00
|
|
|
fn test_header_count<'h>(headers: Vec<Header<'static>>) {
|
2020-10-15 04:37:16 +00:00
|
|
|
let client = Client::tracked(super::rocket()).unwrap();
|
2017-06-06 20:41:04 +00:00
|
|
|
let mut req = client.get("/");
|
2017-01-31 10:43:19 +00:00
|
|
|
for header in headers.iter().cloned() {
|
2017-06-06 20:41:04 +00:00
|
|
|
req.add_header(header);
|
2016-12-16 00:34:19 +00:00
|
|
|
}
|
2016-10-16 10:16:16 +00:00
|
|
|
|
2020-07-05 18:35:36 +00:00
|
|
|
let response = req.dispatch();
|
2017-01-31 10:43:19 +00:00
|
|
|
let expect = format!("Your request contained {} headers!", headers.len());
|
2020-07-05 18:35:36 +00:00
|
|
|
assert_eq!(response.into_string(), Some(expect));
|
2016-10-16 10:16:16 +00:00
|
|
|
}
|
|
|
|
|
2020-07-05 18:35:36 +00:00
|
|
|
#[test]
|
|
|
|
fn test_n_headers() {
|
2016-10-16 10:16:16 +00:00
|
|
|
for i in 0..50 {
|
2017-06-06 20:41:04 +00:00
|
|
|
let headers = (0..i)
|
|
|
|
.map(|n| Header::new(n.to_string(), n.to_string()))
|
2017-01-31 10:43:19 +00:00
|
|
|
.collect();
|
2016-10-16 10:16:16 +00:00
|
|
|
|
2020-07-05 18:35:36 +00:00
|
|
|
test_header_count(headers);
|
2016-10-16 10:16:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|