2019-03-10 18:53:56 +01:00
|
|
|
//! Request extractors
|
2019-11-20 18:33:22 +01:00
|
|
|
use std::future::Future;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::task::{Context, Poll};
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2019-03-10 18:01:24 +01:00
|
|
|
use actix_http::error::Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
use futures::future::{ok, FutureExt, LocalBoxFuture, Ready};
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
use crate::dev::Payload;
|
|
|
|
use crate::request::HttpRequest;
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Trait implemented by types that can be extracted from request.
|
|
|
|
///
|
|
|
|
/// Types that implement this trait can be used with `Route` handlers.
|
2019-04-13 23:50:54 +02:00
|
|
|
pub trait FromRequest: Sized {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// The associated error which can be returned.
|
|
|
|
type Error: Into<Error>;
|
|
|
|
|
|
|
|
/// Future that resolves to a Self
|
2019-11-20 18:33:22 +01:00
|
|
|
type Future: Future<Output = Result<Self, Self::Error>>;
|
2019-03-03 22:53:31 +01:00
|
|
|
|
2019-04-14 01:35:25 +02:00
|
|
|
/// Configuration for this extractor
|
|
|
|
type Config: Default + 'static;
|
|
|
|
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Convert request to a Self
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future;
|
2019-04-07 23:43:07 +02:00
|
|
|
|
|
|
|
/// Convert request to a Self
|
|
|
|
///
|
|
|
|
/// This method uses `Payload::None` as payload stream.
|
|
|
|
fn extract(req: &HttpRequest) -> Self::Future {
|
|
|
|
Self::from_request(req, &mut Payload::None)
|
|
|
|
}
|
2019-04-14 01:35:25 +02:00
|
|
|
|
|
|
|
/// Create and configure config instance.
|
|
|
|
fn configure<F>(f: F) -> Self::Config
|
|
|
|
where
|
|
|
|
F: FnOnce(Self::Config) -> Self::Config,
|
|
|
|
{
|
|
|
|
f(Self::Config::default())
|
|
|
|
}
|
2019-03-03 22:53:31 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 15:19:04 +02:00
|
|
|
/// Optionally extract a field from the request
|
|
|
|
///
|
|
|
|
/// If the FromRequest for T fails, return None rather than returning an error response
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// ```rust
|
2019-04-07 23:43:07 +02:00
|
|
|
/// use actix_web::{web, dev, App, Error, HttpRequest, FromRequest};
|
2018-07-23 15:19:04 +02:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// use futures::future::{ok, err, Ready};
|
2019-10-07 07:29:11 +02:00
|
|
|
/// use serde_derive::Deserialize;
|
2019-03-03 22:53:31 +01:00
|
|
|
/// use rand;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 22:53:31 +01:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// type Future = Ready<Result<Self, Self::Error>>;
|
2019-04-14 01:35:25 +02:00
|
|
|
/// type Config = ();
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// if rand::random() {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// ok(Thing { name: "thingy".into() })
|
2018-07-23 15:19:04 +02:00
|
|
|
/// } else {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// err(ErrorBadRequest("no luck"))
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// /// extract `Thing` from request
|
2019-11-21 16:34:04 +01:00
|
|
|
/// async fn index(supplied_thing: Option<Thing>) -> String {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// match supplied_thing {
|
|
|
|
/// // Puns not intended
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Some(thing) => format!("Got something: {:?}", thing),
|
|
|
|
/// None => format!("No thing!")
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-07 00:47:15 +01:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(
|
|
|
|
/// web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 23:50:54 +02:00
|
|
|
impl<T: 'static> FromRequest for Option<T>
|
2018-07-24 23:52:56 +02:00
|
|
|
where
|
2019-04-13 23:50:54 +02:00
|
|
|
T: FromRequest,
|
2019-03-02 07:51:32 +01:00
|
|
|
T::Future: 'static,
|
2018-07-24 23:52:56 +02:00
|
|
|
{
|
2019-04-14 01:35:25 +02:00
|
|
|
type Config = T::Config;
|
2019-03-02 07:51:32 +01:00
|
|
|
type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
type Future = LocalBoxFuture<'static, Result<Option<T>, Error>>;
|
2018-07-23 15:19:04 +02:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-11-20 18:33:22 +01:00
|
|
|
T::from_request(req, payload)
|
|
|
|
.then(|r| match r {
|
|
|
|
Ok(v) => ok(Some(v)),
|
|
|
|
Err(e) => {
|
|
|
|
log::debug!("Error for Option<T> extractor: {}", e.into());
|
|
|
|
ok(None)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.boxed_local()
|
2018-07-23 15:19:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Optionally extract a field from the request or extract the Error if unsuccessful
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// If the `FromRequest` for T fails, inject Err into handler rather than returning an error response
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// ```rust
|
2019-04-07 23:43:07 +02:00
|
|
|
/// use actix_web::{web, dev, App, Result, Error, HttpRequest, FromRequest};
|
2018-07-23 15:19:04 +02:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// use futures::future::{ok, err, Ready};
|
2019-10-07 07:29:11 +02:00
|
|
|
/// use serde_derive::Deserialize;
|
2019-03-03 22:53:31 +01:00
|
|
|
/// use rand;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 22:53:31 +01:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// type Future = Ready<Result<Thing, Error>>;
|
2019-04-14 01:35:25 +02:00
|
|
|
/// type Config = ();
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// if rand::random() {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// ok(Thing { name: "thingy".into() })
|
2018-07-23 15:19:04 +02:00
|
|
|
/// } else {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// err(ErrorBadRequest("no luck"))
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// /// extract `Thing` from request
|
2019-11-21 16:34:04 +01:00
|
|
|
/// async fn index(supplied_thing: Result<Thing>) -> String {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// match supplied_thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Ok(thing) => format!("Got thing: {:?}", thing),
|
|
|
|
/// Err(e) => format!("Error extracting thing: {}", e)
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-07 00:47:15 +01:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-11-20 18:33:22 +01:00
|
|
|
impl<T> FromRequest for Result<T, T::Error>
|
2018-07-24 23:52:56 +02:00
|
|
|
where
|
2019-11-20 18:33:22 +01:00
|
|
|
T: FromRequest + 'static,
|
2019-03-02 07:51:32 +01:00
|
|
|
T::Error: 'static,
|
2019-11-20 18:33:22 +01:00
|
|
|
T::Future: 'static,
|
2018-07-24 23:52:56 +02:00
|
|
|
{
|
2019-04-14 01:35:25 +02:00
|
|
|
type Config = T::Config;
|
2019-03-02 07:51:32 +01:00
|
|
|
type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
type Future = LocalBoxFuture<'static, Result<Result<T, T::Error>, Error>>;
|
2018-07-23 15:19:04 +02:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-11-20 18:33:22 +01:00
|
|
|
T::from_request(req, payload)
|
|
|
|
.then(|res| match res {
|
|
|
|
Ok(v) => ok(Ok(v)),
|
|
|
|
Err(e) => ok(Err(e)),
|
|
|
|
})
|
|
|
|
.boxed_local()
|
2018-07-23 15:19:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 23:45:56 +01:00
|
|
|
#[doc(hidden)]
|
2019-04-13 23:50:54 +02:00
|
|
|
impl FromRequest for () {
|
2019-04-14 01:35:25 +02:00
|
|
|
type Config = ();
|
2019-03-03 23:45:56 +01:00
|
|
|
type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
type Future = Ready<Result<(), Error>>;
|
2019-03-03 23:45:56 +01:00
|
|
|
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(_: &HttpRequest, _: &mut Payload) -> Self::Future {
|
2019-11-20 18:33:22 +01:00
|
|
|
ok(())
|
2019-03-03 23:45:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 22:38:25 +02:00
|
|
|
macro_rules! tuple_from_req ({$fut_type:ident, $(($n:tt, $T:ident)),+} => {
|
|
|
|
|
|
|
|
/// FromRequest implementation for tuple
|
2019-03-03 23:45:56 +01:00
|
|
|
#[doc(hidden)]
|
2019-04-13 23:50:54 +02:00
|
|
|
impl<$($T: FromRequest + 'static),+> FromRequest for ($($T,)+)
|
2018-05-02 22:38:25 +02:00
|
|
|
{
|
2019-03-02 07:51:32 +01:00
|
|
|
type Error = Error;
|
2019-04-13 23:50:54 +02:00
|
|
|
type Future = $fut_type<$($T),+>;
|
2019-04-14 01:35:25 +02:00
|
|
|
type Config = ($($T::Config),+);
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-03-02 07:51:32 +01:00
|
|
|
$fut_type {
|
2018-05-02 22:38:25 +02:00
|
|
|
items: <($(Option<$T>,)+)>::default(),
|
2019-11-20 18:33:22 +01:00
|
|
|
futs: ($($T::from_request(req, payload),)+),
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 07:51:32 +01:00
|
|
|
#[doc(hidden)]
|
2019-11-20 18:33:22 +01:00
|
|
|
#[pin_project::pin_project]
|
2019-04-13 23:50:54 +02:00
|
|
|
pub struct $fut_type<$($T: FromRequest),+> {
|
2018-05-02 22:38:25 +02:00
|
|
|
items: ($(Option<$T>,)+),
|
2019-11-20 18:33:22 +01:00
|
|
|
futs: ($($T::Future,)+),
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
|
2019-04-13 23:50:54 +02:00
|
|
|
impl<$($T: FromRequest),+> Future for $fut_type<$($T),+>
|
2018-05-02 22:38:25 +02:00
|
|
|
{
|
2019-11-20 18:33:22 +01:00
|
|
|
type Output = Result<($($T,)+), Error>;
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2019-11-20 18:33:22 +01:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2019-11-20 18:33:22 +01:00
|
|
|
let mut ready = true;
|
2018-05-02 22:38:25 +02:00
|
|
|
$(
|
2019-11-20 18:33:22 +01:00
|
|
|
if this.items.$n.is_none() {
|
|
|
|
match unsafe { Pin::new_unchecked(&mut this.futs.$n) }.poll(cx) {
|
|
|
|
Poll::Ready(Ok(item)) => {
|
|
|
|
this.items.$n = Some(item);
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
2019-11-20 18:33:22 +01:00
|
|
|
Poll::Pending => ready = false,
|
|
|
|
Poll::Ready(Err(e)) => return Poll::Ready(Err(e.into())),
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
|
|
|
|
if ready {
|
2019-11-20 18:33:22 +01:00
|
|
|
Poll::Ready(Ok(
|
|
|
|
($(this.items.$n.take().unwrap(),)+)
|
2018-05-02 22:38:25 +02:00
|
|
|
))
|
|
|
|
} else {
|
2019-11-20 18:33:22 +01:00
|
|
|
Poll::Pending
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-03-03 07:11:24 +01:00
|
|
|
#[rustfmt::skip]
|
|
|
|
mod m {
|
|
|
|
use super::*;
|
|
|
|
|
2018-05-02 22:38:25 +02:00
|
|
|
tuple_from_req!(TupleFromRequest1, (0, A));
|
|
|
|
tuple_from_req!(TupleFromRequest2, (0, A), (1, B));
|
|
|
|
tuple_from_req!(TupleFromRequest3, (0, A), (1, B), (2, C));
|
|
|
|
tuple_from_req!(TupleFromRequest4, (0, A), (1, B), (2, C), (3, D));
|
2018-05-17 21:20:20 +02:00
|
|
|
tuple_from_req!(TupleFromRequest5, (0, A), (1, B), (2, C), (3, D), (4, E));
|
2019-03-03 07:11:24 +01:00
|
|
|
tuple_from_req!(TupleFromRequest6, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F));
|
|
|
|
tuple_from_req!(TupleFromRequest7, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G));
|
|
|
|
tuple_from_req!(TupleFromRequest8, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H));
|
|
|
|
tuple_from_req!(TupleFromRequest9, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H), (8, I));
|
|
|
|
tuple_from_req!(TupleFromRequest10, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H), (8, I), (9, J));
|
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2019-03-03 07:03:45 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use actix_http::http::header;
|
|
|
|
use bytes::Bytes;
|
|
|
|
use serde_derive::Deserialize;
|
|
|
|
|
|
|
|
use super::*;
|
2019-11-26 06:25:50 +01:00
|
|
|
use crate::test::TestRequest;
|
2019-04-18 20:01:04 +02:00
|
|
|
use crate::types::{Form, FormConfig};
|
2019-03-03 07:03:45 +01:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, PartialEq)]
|
|
|
|
struct Info {
|
|
|
|
hello: String,
|
|
|
|
}
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_option() {
|
2019-04-07 23:43:07 +02:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-04 00:32:47 +01:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
2019-05-05 04:43:49 +02:00
|
|
|
.data(FormConfig::default().limit(4096))
|
2019-04-07 23:43:07 +02:00
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(r, None);
|
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-04 00:32:47 +01:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
2019-04-07 23:43:07 +02:00
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Some(Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
}))
|
|
|
|
);
|
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-04 00:32:47 +01:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
2019-04-07 23:43:07 +02:00
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(r, None);
|
|
|
|
}
|
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_result() {
|
2019-04-07 23:43:07 +02:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-04 00:32:47 +01:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "11")
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
2019-04-07 23:43:07 +02:00
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Result::<Form<Info>, Error>::from_request(&req, &mut pl)
|
|
|
|
.await
|
2019-03-04 00:32:47 +01:00
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-04 00:32:47 +01:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
2019-04-07 23:43:07 +02:00
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Result::<Form<Info>, Error>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert!(r.is_err());
|
|
|
|
}
|
|
|
|
}
|