mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-07 10:12:36 +00:00
9b955747e4
This commit includes two major changes to core: 1. Configuration state is no longer global. The `config::active()` function has been removed. The active configuration can be retrieved via the `config` method on a `Rocket` instance. 2. The `Responder` trait has changed. `Responder::respond(self)` has been removed in favor of `Responder::respond_to(self, &Request)`. This allows responders to dynamically adjust their response based on the incoming request. Additionally, it includes the following changes to core and codegen: * The `Request::guard` method was added to allow for simple retrivial of request guards. * The `Request::limits` method was added to retrieve configured limits. * The `File` `Responder` implementation now uses a fixed size body instead of a chunked body. * The `Outcome::of<R: Responder>(R)` method was removed while `Outcome::from<R: Responder(&Request, R)` was added. * The unmounted and unmanaged limits are more cautious: they will only emit warnings when the `Rocket` receiver is known. This commit includes one major change to contrib: 1. To use contrib's templating, the fairing returned by `Template::fairing()` must be attached to the running Rocket instance. Additionally, the `Display` implementation of `Template` was removed. To directly render a template to a `String`, the new `Template::show` method can be used.
77 lines
2.1 KiB
Rust
77 lines
2.1 KiB
Rust
#![feature(plugin, custom_derive)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
use rocket::request::Form;
|
|
|
|
#[derive(FromForm)]
|
|
struct Simple {
|
|
value: String
|
|
}
|
|
|
|
#[post("/", data = "<form>")]
|
|
fn index(form: Form<Simple>) -> String {
|
|
form.into_inner().value
|
|
}
|
|
|
|
mod limits_tests {
|
|
use rocket;
|
|
use rocket::config::{Environment, Config, Limits};
|
|
use rocket::testing::MockRequest;
|
|
use rocket::http::Method::*;
|
|
use rocket::http::{Status, ContentType};
|
|
|
|
fn rocket_with_forms_limit(limit: u64) -> rocket::Rocket {
|
|
let config = Config::build(Environment::Development)
|
|
.limits(Limits::default().add("forms", limit))
|
|
.unwrap();
|
|
|
|
rocket::custom(config, true).mount("/", routes![super::index])
|
|
}
|
|
|
|
#[test]
|
|
fn large_enough() {
|
|
let rocket = rocket_with_forms_limit(128);
|
|
let mut req = MockRequest::new(Post, "/")
|
|
.body("value=Hello+world")
|
|
.header(ContentType::Form);
|
|
|
|
let mut response = req.dispatch_with(&rocket);
|
|
assert_eq!(response.body_string(), Some("Hello world".into()));
|
|
}
|
|
|
|
#[test]
|
|
fn just_large_enough() {
|
|
let rocket = rocket_with_forms_limit(17);
|
|
let mut req = MockRequest::new(Post, "/")
|
|
.body("value=Hello+world")
|
|
.header(ContentType::Form);
|
|
|
|
let mut response = req.dispatch_with(&rocket);
|
|
assert_eq!(response.body_string(), Some("Hello world".into()));
|
|
}
|
|
|
|
#[test]
|
|
fn much_too_small() {
|
|
let rocket = rocket_with_forms_limit(4);
|
|
let mut req = MockRequest::new(Post, "/")
|
|
.body("value=Hello+world")
|
|
.header(ContentType::Form);
|
|
|
|
let response = req.dispatch_with(&rocket);
|
|
assert_eq!(response.status(), Status::BadRequest);
|
|
}
|
|
|
|
#[test]
|
|
fn contracted() {
|
|
let rocket = rocket_with_forms_limit(10);
|
|
let mut req = MockRequest::new(Post, "/")
|
|
.body("value=Hello+world")
|
|
.header(ContentType::Form);
|
|
|
|
let mut response = req.dispatch_with(&rocket);
|
|
assert_eq!(response.body_string(), Some("Hell".into()));
|
|
}
|
|
}
|