mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
parent
8470ad7fe3
commit
a7666e4881
3 changed files with 31 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## [0.1.13] - 2024-01-xx
|
## [0.1.13] - 2024-01-30
|
||||||
|
|
||||||
* Move body related types from ntex::http
|
* Move body related types from ntex::http
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [2.9.0] - 2024-11-30
|
||||||
|
|
||||||
|
* Fix handling unconsumed payload in h1 dispatcher #477
|
||||||
|
|
||||||
|
* Move body to ntex-http
|
||||||
|
|
||||||
## [2.8.0] - 2024-11-04
|
## [2.8.0] - 2024-11-04
|
||||||
|
|
||||||
* Use updated Service trait
|
* Use updated Service trait
|
||||||
|
|
|
@ -181,7 +181,13 @@ where
|
||||||
Poll::Pending => ready!(inner.poll_request(cx)),
|
Poll::Pending => ready!(inner.poll_request(cx)),
|
||||||
},
|
},
|
||||||
// read request and call service
|
// read request and call service
|
||||||
State::ReadRequest => ready!(inner.poll_read_request(cx)),
|
State::ReadRequest => {
|
||||||
|
if inner.flags.contains(Flags::SENDPAYLOAD_AND_STOP) {
|
||||||
|
inner.stop()
|
||||||
|
} else {
|
||||||
|
ready!(inner.poll_read_request(cx))
|
||||||
|
}
|
||||||
|
}
|
||||||
// consume request's payload
|
// consume request's payload
|
||||||
State::ReadPayload => {
|
State::ReadPayload => {
|
||||||
let result = inner.poll_request_payload(cx);
|
let result = inner.poll_request_payload(cx);
|
||||||
|
@ -1263,4 +1269,21 @@ mod tests {
|
||||||
assert!(mark.load(Ordering::Relaxed) == 1536);
|
assert!(mark.load(Ordering::Relaxed) == 1536);
|
||||||
assert!(err_mark.load(Ordering::Relaxed) == 1);
|
assert!(err_mark.load(Ordering::Relaxed) == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[crate::rt_test]
|
||||||
|
async fn test_unconsumed_payload() {
|
||||||
|
let (client, server) = Io::create();
|
||||||
|
client.remote_buffer_cap(4096);
|
||||||
|
client.write("GET /test HTTP/1.1\r\ncontent-length:512\r\n\r\n");
|
||||||
|
|
||||||
|
let mut h1 = h1(server, |_| {
|
||||||
|
Box::pin(async { Ok::<_, io::Error>(Response::Ok().body("TEST")) })
|
||||||
|
});
|
||||||
|
// required because io shutdown is async oper
|
||||||
|
assert!(poll_fn(|cx| Pin::new(&mut h1).poll(cx)).await.is_ok());
|
||||||
|
|
||||||
|
assert!(h1.inner.io.is_closed());
|
||||||
|
let buf = client.local_buffer(|buf| buf.split());
|
||||||
|
assert_eq!(&buf[..15], b"HTTP/1.1 200 OK");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue