2016-12-31 06:48:31 +00:00
|
|
|
#![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
|
|
|
|
}
|
|
|
|
|
2017-01-05 20:51:00 +00:00
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use rocket::testing::MockRequest;
|
|
|
|
use rocket::http::Method::*;
|
|
|
|
use rocket::http::ContentType;
|
|
|
|
use rocket::http::Status;
|
|
|
|
|
|
|
|
fn check_decoding(raw: &str, decoded: &str) {
|
|
|
|
let rocket = rocket::ignite().mount("/", routes![bug]);
|
|
|
|
let mut req = MockRequest::new(Post, "/")
|
|
|
|
.header(ContentType::Form)
|
|
|
|
.body(format!("form_data={}", raw));
|
|
|
|
|
|
|
|
let mut response = req.dispatch_with(&rocket);
|
|
|
|
assert_eq!(response.status(), Status::Ok);
|
2017-04-14 08:59:28 +00:00
|
|
|
assert_eq!(Some(decoded.to_string()), response.body_string());
|
2017-01-05 20:51:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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");
|
|
|
|
}
|
2016-12-31 06:48:31 +00:00
|
|
|
}
|