#![feature(proc_macro_hygiene, decl_macro)] #[macro_use] extern crate rocket; use rocket::request::FlashMessage; use rocket::response::Flash; const FLASH_MESSAGE: &str = "Hey! I'm a flash message. :)"; #[post("/")] fn set() -> Flash<&'static str> { Flash::success("This is the page.", FLASH_MESSAGE) } #[get("/unused")] fn unused(flash: Option) -> Option<()> { flash.map(|_| ()) } #[get("/use")] fn used(flash: Option) -> Option { flash.map(|flash| flash.msg().into()) } mod flash_lazy_remove_tests { use rocket::local::Client; use rocket::http::Status; #[test] fn test() { use super::*; let r = rocket::ignite().mount("/", routes![set, unused, used]); let client = Client::new(r).unwrap(); // Ensure the cookie's not there at first. let response = client.get("/unused").dispatch(); assert_eq!(response.status(), Status::NotFound); // Set the flash cookie. client.post("/").dispatch(); // Try once. let response = client.get("/unused").dispatch(); assert_eq!(response.status(), Status::Ok); // Try again; should still be there. let response = client.get("/unused").dispatch(); assert_eq!(response.status(), Status::Ok); // Now use it. let mut response = client.get("/use").dispatch(); assert_eq!(response.body_string(), Some(FLASH_MESSAGE.into())); // Now it should be gone. let response = client.get("/unused").dispatch(); assert_eq!(response.status(), Status::NotFound); // Still gone. let response = client.get("/use").dispatch(); assert_eq!(response.status(), Status::NotFound); } }