mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
update multipart tests
This commit is contained in:
parent
f737a3eb3e
commit
e8936fe081
@ -239,12 +239,17 @@ impl InnerMultipart {
|
|||||||
//ValueError("Could not find starting boundary %r"
|
//ValueError("Could not find starting boundary %r"
|
||||||
//% (self._boundary))
|
//% (self._boundary))
|
||||||
}
|
}
|
||||||
|
if chunk.len() < boundary.len() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
if &chunk[..2] == b"--" && &chunk[2..chunk.len()-2] == boundary.as_bytes() {
|
if &chunk[..2] == b"--" && &chunk[2..chunk.len()-2] == boundary.as_bytes() {
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
if chunk.len() < boundary.len() + 2{
|
||||||
|
continue
|
||||||
|
}
|
||||||
let b: &[u8] = boundary.as_ref();
|
let b: &[u8] = boundary.as_ref();
|
||||||
if chunk.len() <= boundary.len() + 2 &&
|
if &chunk[..boundary.len()] == b &&
|
||||||
&chunk[..boundary.len()] == b &&
|
|
||||||
&chunk[boundary.len()..boundary.len()+2] == b"--" {
|
&chunk[boundary.len()..boundary.len()+2] == b"--" {
|
||||||
eof = true;
|
eof = true;
|
||||||
break;
|
break;
|
||||||
@ -746,9 +751,13 @@ mod tests {
|
|||||||
let (mut sender, payload) = Payload::new(false);
|
let (mut sender, payload) = Payload::new(false);
|
||||||
|
|
||||||
let bytes = Bytes::from(
|
let bytes = Bytes::from(
|
||||||
"--abbc761f78ff4d7cb7573b5a23f96ef0\r\n\
|
"testasdadsad\r\n\
|
||||||
|
--abbc761f78ff4d7cb7573b5a23f96ef0\r\n\
|
||||||
Content-Type: text/plain; charset=utf-8\r\nContent-Length: 4\r\n\r\n\
|
Content-Type: text/plain; charset=utf-8\r\nContent-Length: 4\r\n\r\n\
|
||||||
test\r\n\
|
test\r\n\
|
||||||
|
--abbc761f78ff4d7cb7573b5a23f96ef0\r\n\
|
||||||
|
Content-Type: text/plain; charset=utf-8\r\nContent-Length: 4\r\n\r\n\
|
||||||
|
data\r\n\
|
||||||
--abbc761f78ff4d7cb7573b5a23f96ef0--\r\n");
|
--abbc761f78ff4d7cb7573b5a23f96ef0--\r\n");
|
||||||
sender.feed_data(bytes);
|
sender.feed_data(bytes);
|
||||||
|
|
||||||
@ -777,6 +786,30 @@ mod tests {
|
|||||||
}
|
}
|
||||||
_ => unreachable!()
|
_ => unreachable!()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
match multipart.poll() {
|
||||||
|
Ok(Async::Ready(Some(item))) => {
|
||||||
|
match item {
|
||||||
|
MultipartItem::Field(mut field) => {
|
||||||
|
assert_eq!(field.content_type().type_(), mime::TEXT);
|
||||||
|
assert_eq!(field.content_type().subtype(), mime::PLAIN);
|
||||||
|
|
||||||
|
match field.poll() {
|
||||||
|
Ok(Async::Ready(Some(chunk))) =>
|
||||||
|
assert_eq!(chunk.0, "data"),
|
||||||
|
_ => unreachable!()
|
||||||
|
}
|
||||||
|
match field.poll() {
|
||||||
|
Ok(Async::Ready(None)) => (),
|
||||||
|
_ => unreachable!()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_ => unreachable!()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => unreachable!()
|
||||||
|
}
|
||||||
|
|
||||||
match multipart.poll() {
|
match multipart.poll() {
|
||||||
Ok(Async::Ready(None)) => (),
|
Ok(Async::Ready(None)) => (),
|
||||||
_ => unreachable!()
|
_ => unreachable!()
|
||||||
|
@ -4,7 +4,6 @@ extern crate tokio_core;
|
|||||||
extern crate reqwest;
|
extern crate reqwest;
|
||||||
|
|
||||||
use std::{net, thread};
|
use std::{net, thread};
|
||||||
use std::str::FromStr;
|
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||||
use tokio_core::net::TcpListener;
|
use tokio_core::net::TcpListener;
|
||||||
@ -35,18 +34,24 @@ fn test_serve() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_serve_incoming() {
|
fn test_serve_incoming() {
|
||||||
thread::spawn(|| {
|
let loopback = net::Ipv4Addr::new(127, 0, 0, 1);
|
||||||
|
let socket = net::SocketAddrV4::new(loopback, 0);
|
||||||
|
let tcp = net::TcpListener::bind(socket).unwrap();
|
||||||
|
let addr1 = tcp.local_addr().unwrap();
|
||||||
|
let addr2 = tcp.local_addr().unwrap();
|
||||||
|
|
||||||
|
thread::spawn(move || {
|
||||||
let sys = System::new("test");
|
let sys = System::new("test");
|
||||||
|
|
||||||
let srv = create_server();
|
let srv = create_server();
|
||||||
let addr = net::SocketAddr::from_str("127.0.0.1:58903").unwrap();
|
let tcp = TcpListener::from_listener(tcp, &addr2, Arbiter::handle()).unwrap();
|
||||||
let tcp = TcpListener::bind(&addr, Arbiter::handle()).unwrap();
|
|
||||||
srv.serve_incoming::<_, ()>(tcp.incoming()).unwrap();
|
srv.serve_incoming::<_, ()>(tcp.incoming()).unwrap();
|
||||||
sys.run();
|
sys.run();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
assert!(reqwest::get("http://localhost:58903/").unwrap().status().is_success());
|
assert!(reqwest::get(&format!("http://{}/", addr1))
|
||||||
|
.unwrap().status().is_success());
|
||||||
}
|
}
|
||||||
|
|
||||||
struct MiddlewareTest {
|
struct MiddlewareTest {
|
||||||
|
Loading…
Reference in New Issue
Block a user