Rocket/core/lib/tests/mapped-base-issue-1262.rs
Sergio Benitez 5d9035ddc1 Keep an op-log for sync 'CookieJar'.
In brief, this commit:

  * Updates to the latest upstream 'cookie', fixing a memory leak.
  * Make changes to 'CookieJar' observable only through 'pending()'.
  * Deprecates 'Client::new()' in favor of 'Client::tracked()'.
  * Makes 'dispatch()' on tracked 'Client's synchronize on cookies.
  * Makes 'Client::untracked()' actually untracked.

This commit updates to the latest 'cookie' which removes support for
'Sync' cookie jars. Instead of relying on 'cookie', this commit
implements an op-log based 'CookieJar' which internally keeps track of
changes. The API is such that changes are only observable through
specialized '_pending()' methods.
2020-10-14 21:37:16 -07:00

59 lines
1.6 KiB
Rust

#[macro_use] extern crate rocket;
use rocket::Route;
pub fn prepend(prefix: &str, route: Route) -> Route {
route.map_base(|base| format!("{}{}", prefix, base)).unwrap()
}
pub fn extend_routes(prefix: &str, routes: Vec<Route>) -> Vec<Route> {
routes.into_iter()
.map(|route| prepend(prefix, route))
.collect()
}
mod a {
#[get("/b/<id>")]
fn b(id: u8) -> String { id.to_string() }
pub fn routes() -> Vec<rocket::Route> {
super::extend_routes("/a", routes![b])
}
}
fn rocket() -> rocket::Rocket {
rocket::ignite().mount("/", a::routes()).mount("/foo", a::routes())
}
mod mapped_base_tests {
use rocket::local::blocking::Client;
use rocket::http::Status;
#[test]
fn only_prefix() {
let client = Client::tracked(super::rocket()).unwrap();
let response = client.get("/a/b/3").dispatch();
assert_eq!(response.into_string().unwrap(), "3");
let response = client.get("/a/b/239").dispatch();
assert_eq!(response.into_string().unwrap(), "239");
let response = client.get("/b/239").dispatch();
assert_eq!(response.status(), Status::NotFound);
}
#[test]
fn prefix_and_base() {
let client = Client::tracked(super::rocket()).unwrap();
let response = client.get("/foo/a/b/23").dispatch();
assert_eq!(response.into_string().unwrap(), "23");
let response = client.get("/foo/a/b/99").dispatch();
assert_eq!(response.into_string().unwrap(), "99");
let response = client.get("/foo/b/239").dispatch();
assert_eq!(response.status(), Status::NotFound);
}
}