mirror of
https://github.com/actix/actix-web.git
synced 2024-11-20 08:31:09 +00:00
add test crashing with segfault according to #1321
This commit is contained in:
parent
48ef4d7a26
commit
a4148de226
1 changed files with 21 additions and 0 deletions
|
@ -612,6 +612,8 @@ mod tests {
|
|||
|
||||
mod body_stream {
|
||||
use super::*;
|
||||
use futures::task::noop_waker;
|
||||
use futures::stream::once;
|
||||
|
||||
#[actix_rt::test]
|
||||
async fn skips_empty_chunks() {
|
||||
|
@ -629,6 +631,25 @@ mod tests {
|
|||
Some(Bytes::from("2")),
|
||||
);
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
async fn move_pinned_pointer() {
|
||||
let (sender, receiver) = futures::channel::oneshot::channel();
|
||||
let mut body_stream = Ok(BodyStream::new(once(async {
|
||||
let x = Box::new(0i32);
|
||||
let y = &x;
|
||||
receiver.await.unwrap();
|
||||
let _z = **y;
|
||||
Ok::<_, ()>(Bytes::new())
|
||||
})));
|
||||
|
||||
let waker = noop_waker();
|
||||
let mut context = Context::from_waker(&waker);
|
||||
|
||||
let _ = body_stream.as_mut().unwrap().poll_next(&mut context);
|
||||
sender.send(()).unwrap();
|
||||
let _ = std::mem::replace(&mut body_stream, Err([0; 32])).unwrap().poll_next(&mut context);
|
||||
}
|
||||
}
|
||||
|
||||
mod sized_stream {
|
||||
|
|
Loading…
Reference in a new issue