mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-07 18:22:40 +00:00
b8ba7b855f
Sessions -------- This commit removes the `Session` type in favor of methods on the `Cookies` types that allow for adding, removing, and getting private (signed and encrypted) cookies. These methods provide a superset of the functionality of `Session` while also being a minimal addition to the existing API. They can be used to implement the previous `Session` type as well as other forms of session storage. The new methods are: * Cookie::add_private(&mut self, Cookie) * Cookie::remove_private(&mut self, Cookie) * Cookie::get_private(&self, &str) Resolves #20 Testing ------- This commit removes the `rocket::testing` module. It adds the `rocket::local` module which provides a `Client` type for local dispatching of requests against a `Rocket` instance. This `local` package subsumes the previous `testing` package. Rocket Examples --------------- The `forms`, `optional_result`, and `hello_alt_methods` examples have been removed. The following example have been renamed: * extended_validation -> form_validation * hello_ranks -> ranking * from_request -> request_guard * hello_tls -> tls Other Changes ------------- This commit also includes the following smaller changes: * Config::{development, staging, production} constructors have been added for easier creation of default `Config` structures. * The `Config` type is exported from the root. * `Request` implements `Clone` and `Debug`. * `Request::new` is no longer exported. * A `Response::body_bytes` method was added to easily retrieve a response's body as a `Vec<u8>`.
46 lines
1.2 KiB
Rust
46 lines
1.2 KiB
Rust
#![feature(plugin, custom_derive)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
extern crate rocket;
|
|
|
|
use rocket::request::Form;
|
|
|
|
#[derive(FromForm)]
|
|
struct FormData {
|
|
form_data: String,
|
|
}
|
|
|
|
#[post("/", data = "<form_data>")]
|
|
fn bug(form_data: Form<FormData>) -> String {
|
|
form_data.into_inner().form_data
|
|
}
|
|
|
|
mod tests {
|
|
use super::*;
|
|
use rocket::local::Client;
|
|
use rocket::http::ContentType;
|
|
use rocket::http::Status;
|
|
|
|
fn check_decoding(raw: &str, decoded: &str) {
|
|
let client = Client::new(rocket::ignite().mount("/", routes![bug])).unwrap();
|
|
let mut response = client.post("/")
|
|
.header(ContentType::Form)
|
|
.body(format!("form_data={}", raw))
|
|
.dispatch();
|
|
|
|
assert_eq!(response.status(), Status::Ok);
|
|
assert_eq!(Some(decoded.to_string()), response.body_string());
|
|
}
|
|
|
|
#[test]
|
|
fn test_proper_decoding() {
|
|
check_decoding("password", "password");
|
|
check_decoding("", "");
|
|
check_decoding("+", " ");
|
|
check_decoding("%2B", "+");
|
|
check_decoding("1+1", "1 1");
|
|
check_decoding("1%2B1", "1+1");
|
|
check_decoding("%3Fa%3D1%26b%3D2", "?a=1&b=2");
|
|
}
|
|
}
|