Fix handling unconsumed payload in h1 dispatcher #477

This commit is contained in:
Nikolay Kim 2024-11-30 16:01:27 -08:00
parent 8470ad7fe3
commit 9f29acbaa8
2 changed files with 30 additions and 1 deletions

View file

@ -1,5 +1,11 @@
# 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
* Use updated Service trait

View file

@ -181,7 +181,13 @@ where
Poll::Pending => ready!(inner.poll_request(cx)),
},
// 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
State::ReadPayload => {
let result = inner.poll_request_payload(cx);
@ -1263,4 +1269,21 @@ mod tests {
assert!(mark.load(Ordering::Relaxed) == 1536);
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");
}
}