1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-web/tests/test_weird_poll.rs

31 lines
881 B
Rust
Raw Normal View History

2021-01-15 05:38:50 +00:00
//! Regression test for https://github.com/actix/actix-web/issues/1321
2021-01-15 05:38:50 +00:00
// use actix_http::body::{BodyStream, MessageBody};
// use bytes::Bytes;
// use futures_channel::oneshot;
// use futures_util::{
// stream::once,
// task::{noop_waker, Context},
// };
2021-01-15 05:38:50 +00:00
// #[test]
// fn weird_poll() {
// let (sender, receiver) = oneshot::channel();
// let mut body_stream = Ok(BodyStream::new(once(async {
// let x = Box::new(0);
// let y = &x;
// receiver.await.unwrap();
// let _z = **y;
// Ok::<_, ()>(Bytes::new())
// })));
2021-01-15 05:38:50 +00:00
// let waker = noop_waker();
// let mut cx = Context::from_waker(&waker);
2021-01-15 05:38:50 +00:00
// let _ = body_stream.as_mut().unwrap().poll_next(&mut cx);
// sender.send(()).unwrap();
// let _ = std::mem::replace(&mut body_stream, Err([0; 32]))
// .unwrap()
// .poll_next(&mut cx);
// }