2020-01-24 05:07:11 +00:00
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
|
|
|
|
use rocket::request::Request;
|
2023-09-29 06:50:29 +00:00
|
|
|
use rocket::http::CookieJar;
|
2020-01-24 05:07:11 +00:00
|
|
|
|
|
|
|
#[catch(404)]
|
2024-03-20 07:00:33 +00:00
|
|
|
fn not_found(request: &Request<'_>) -> &'static str {
|
2023-09-29 06:50:29 +00:00
|
|
|
request.cookies().add(("not_found", "404"));
|
2020-01-24 05:07:11 +00:00
|
|
|
"404 - Not Found"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/")]
|
2020-07-22 19:21:19 +00:00
|
|
|
fn index(cookies: &CookieJar<'_>) -> &'static str {
|
2023-09-29 06:50:29 +00:00
|
|
|
cookies.add(("index", "hi"));
|
2020-01-24 05:07:11 +00:00
|
|
|
"Hello, world!"
|
|
|
|
}
|
|
|
|
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2019-12-11 00:34:32 +00:00
|
|
|
use rocket::local::blocking::Client;
|
2020-01-24 05:07:11 +00:00
|
|
|
use rocket::fairing::AdHoc;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn error_catcher_sets_cookies() {
|
2021-04-08 08:07:52 +00:00
|
|
|
let rocket = rocket::build()
|
2020-01-24 05:07:11 +00:00
|
|
|
.mount("/", routes![index])
|
2021-03-26 04:36:00 +00:00
|
|
|
.register("/", catchers![not_found])
|
2020-10-15 04:37:16 +00:00
|
|
|
.attach(AdHoc::on_request("Add Cookie", |req, _| Box::pin(async move {
|
2023-09-29 06:50:29 +00:00
|
|
|
req.cookies().add(("fairing", "woo"));
|
2019-12-11 00:34:32 +00:00
|
|
|
})));
|
2020-01-24 05:07:11 +00:00
|
|
|
|
Test 'secret_key' validation, now on pre-launch.
Prior to this commit, it was not possible to test Rocket crates in
production mode without setting a global secret key or bypassing secret
key checking - the testing script did the latter. The consequence is
that it became impossible to test secret key related failures because
the tests passed regardless.
This commit undoes this. As a consequence, all tests are now aware of
the difference between debug and release configurations, the latter of
which validates 'secret_key' by default. New 'Client::debug()' and
'Client::debug_with()' simplify creating an instance of 'Client' with
configuration in debug mode to avoid undesired test failures.
The summary of changes in this commit are:
* Config 'secret_key' success and failure are now tested.
* 'secret_key' validation was moved to pre-launch from 'Config:from()'.
* 'Config::from()' only extracts the config.
* Added 'Config::try_from()' for non-panicking extraction.
* 'Config' now knows the profile it was extracted from.
* The 'Config' provider sets a profile of 'Config.profile'.
* 'Rocket', 'Client', 'Fairings', implement 'Debug'.
* 'fairing::Info' implements 'Copy', 'Clone'.
* 'Fairings' keeps track of, logs attach fairings.
* 'Rocket::reconfigure()' was added to allow modifying a config.
Internally, the testing script was refactored to properly test the
codebase with the new changes. In particular, it no longer sets a rustc
'cfg' to avoid secret-key checking.
Resolves #1543.
Fixes #1564.
2021-03-09 08:07:43 +00:00
|
|
|
let client = Client::debug(rocket).unwrap();
|
2020-01-24 05:07:11 +00:00
|
|
|
|
|
|
|
// Check that the index returns the `index` and `fairing` cookie.
|
|
|
|
let response = client.get("/").dispatch();
|
|
|
|
let cookies = response.cookies();
|
2020-07-22 19:21:19 +00:00
|
|
|
assert_eq!(cookies.iter().count(), 2);
|
|
|
|
assert_eq!(cookies.get("index").unwrap().value(), "hi");
|
|
|
|
assert_eq!(cookies.get("fairing").unwrap().value(), "woo");
|
2020-01-24 05:07:11 +00:00
|
|
|
|
|
|
|
// Check that the catcher returns only the `not_found` cookie.
|
|
|
|
let response = client.get("/not-existent").dispatch();
|
2020-07-22 19:21:19 +00:00
|
|
|
let cookies = response.cookies();
|
|
|
|
assert_eq!(cookies.iter().count(), 1);
|
|
|
|
assert_eq!(cookies.get("not_found").unwrap().value(), "404");
|
2020-01-24 05:07:11 +00:00
|
|
|
}
|
|
|
|
}
|