mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-03 16:22:37 +00:00
5d9035ddc1
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.
62 lines
1.8 KiB
Rust
62 lines
1.8 KiB
Rust
#[macro_use] extern crate rocket;
|
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
|
|
|
use rocket::State;
|
|
use rocket::fairing::AdHoc;
|
|
use rocket::http::Method;
|
|
|
|
#[derive(Default)]
|
|
struct Counter {
|
|
attach: AtomicUsize,
|
|
get: AtomicUsize,
|
|
}
|
|
|
|
#[get("/")]
|
|
fn index(counter: State<'_, Counter>) -> String {
|
|
let attaches = counter.attach.load(Ordering::Relaxed);
|
|
let gets = counter.get.load(Ordering::Acquire);
|
|
format!("{}, {}", attaches, gets)
|
|
}
|
|
|
|
fn rocket() -> rocket::Rocket {
|
|
rocket::ignite()
|
|
.mount("/", routes![index])
|
|
.attach(AdHoc::on_attach("Outer", |rocket| async {
|
|
let counter = Counter::default();
|
|
counter.attach.fetch_add(1, Ordering::Relaxed);
|
|
let rocket = rocket.manage(counter)
|
|
.attach(AdHoc::on_request("Inner", |req, _| {
|
|
Box::pin(async move {
|
|
if req.method() == Method::Get {
|
|
let counter = req.guard::<State<'_, Counter>>()
|
|
.await.unwrap();
|
|
counter.get.fetch_add(1, Ordering::Release);
|
|
}
|
|
})
|
|
}));
|
|
|
|
Ok(rocket)
|
|
}))
|
|
}
|
|
|
|
mod nested_fairing_attaches_tests {
|
|
use super::*;
|
|
use rocket::local::blocking::Client;
|
|
|
|
#[test]
|
|
fn test_counts() {
|
|
let client = Client::tracked(rocket()).unwrap();
|
|
let response = client.get("/").dispatch();
|
|
assert_eq!(response.into_string(), Some("1, 1".into()));
|
|
|
|
let response = client.get("/").dispatch();
|
|
assert_eq!(response.into_string(), Some("1, 2".into()));
|
|
|
|
client.get("/").dispatch();
|
|
client.get("/").dispatch();
|
|
let response = client.get("/").dispatch();
|
|
assert_eq!(response.into_string(), Some("1, 5".into()));
|
|
}
|
|
}
|