1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
mod test_utils;
mod server_decode {
use super::test_utils::TestIO;
use async_std::io::prelude::*;
use http_types::headers::TRANSFER_ENCODING;
use http_types::Request;
use http_types::Result;
use http_types::Url;
use pretty_assertions::assert_eq;
async fn decode_lines(lines: Vec<&str>) -> Result<Option<Request>> {
let s = lines.join("\r\n");
let (mut client, server) = TestIO::new();
client.write_all(s.as_bytes()).await?;
client.close();
async_h1::server::decode(server)
.await
.map(|r| r.map(|(r, _)| r))
}
#[async_std::test]
async fn post_with_body() -> Result<()> {
let mut request = decode_lines(vec![
"POST / HTTP/1.1",
"host: localhost:8080",
"content-length: 5",
"content-type: text/plain;charset=utf-8",
"another-header: header value",
"another-header: other header value",
"",
"hello",
"",
])
.await?
.unwrap();
assert_eq!(request.method(), http_types::Method::Post);
assert_eq!(request.body_string().await?, "hello");
assert_eq!(request.content_type(), Some(http_types::mime::PLAIN));
assert_eq!(request.version(), Some(http_types::Version::Http1_1));
assert_eq!(request.host(), Some("localhost:8080"));
assert_eq!(
request.url(),
&Url::parse("http://localhost:8080/").unwrap()
);
let custom_header = request.header("another-header").unwrap();
assert_eq!(custom_header[0], "header value");
assert_eq!(custom_header[1], "other header value");
Ok(())
}
#[async_std::test]
async fn chunked() -> Result<()> {
let mut request = decode_lines(vec![
"POST / HTTP/1.1",
"host: localhost:8080",
"transfer-encoding: chunked",
"content-type: text/plain;charset=utf-8",
"",
"1",
"h",
"1",
"e",
"3",
"llo",
"0",
"",
])
.await?
.unwrap();
assert_eq!(request[TRANSFER_ENCODING], "chunked");
assert_eq!(request.body_string().await?, "hello");
Ok(())
}
#[ignore = r#"
the test previously did not actually assert the correct thing prevously
and the behavior does not yet work as intended
"#]
#[async_std::test]
async fn invalid_trailer() -> Result<()> {
let mut request = decode_lines(vec![
"GET / HTTP/1.1",
"host: domain.com",
"content-type: application/octet-stream",
"transfer-encoding: chunked",
"trailer: x-invalid",
"",
"0",
"x-invalid: å",
"",
])
.await?
.unwrap();
assert!(request.body_string().await.is_err());
Ok(())
}
#[async_std::test]
async fn unexpected_eof() -> Result<()> {
let mut request = decode_lines(vec![
"POST / HTTP/1.1",
"host: example.com",
"content-type: text/plain",
"content-length: 11",
"",
"not 11",
])
.await?
.unwrap();
let mut string = String::new();
// we use read_to_string because although not currently the
// case, at some point soon body_string will error if the
// retrieved content length is not the same as the header (if
// the client disconnects)
request.read_to_string(&mut string).await?;
assert_eq!(string, "not 11");
Ok(())
}
}
|