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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
use futures::channel::oneshot;
use futures::executor::{block_on, block_on_stream};
use futures::future::{self, join, Future, FutureExt, TryFutureExt};
use futures::stream::{FuturesOrdered, StreamExt};
use futures::task::Poll;
use futures_test::task::noop_context;
use std::any::Any;
#[test]
fn works_1() {
let (a_tx, a_rx) = oneshot::channel::<i32>();
let (b_tx, b_rx) = oneshot::channel::<i32>();
let (c_tx, c_rx) = oneshot::channel::<i32>();
let mut stream = vec![a_rx, b_rx, c_rx].into_iter().collect::<FuturesOrdered<_>>();
b_tx.send(99).unwrap();
assert!(stream.poll_next_unpin(&mut noop_context()).is_pending());
a_tx.send(33).unwrap();
c_tx.send(33).unwrap();
let mut iter = block_on_stream(stream);
assert_eq!(Some(Ok(33)), iter.next());
assert_eq!(Some(Ok(99)), iter.next());
assert_eq!(Some(Ok(33)), iter.next());
assert_eq!(None, iter.next());
}
#[test]
fn works_2() {
let (a_tx, a_rx) = oneshot::channel::<i32>();
let (b_tx, b_rx) = oneshot::channel::<i32>();
let (c_tx, c_rx) = oneshot::channel::<i32>();
let mut stream = vec![a_rx.boxed(), join(b_rx, c_rx).map(|(a, b)| Ok(a? + b?)).boxed()]
.into_iter()
.collect::<FuturesOrdered<_>>();
let mut cx = noop_context();
a_tx.send(33).unwrap();
b_tx.send(33).unwrap();
assert!(stream.poll_next_unpin(&mut cx).is_ready());
assert!(stream.poll_next_unpin(&mut cx).is_pending());
c_tx.send(33).unwrap();
assert!(stream.poll_next_unpin(&mut cx).is_ready());
}
#[test]
fn test_push_front() {
let (a_tx, a_rx) = oneshot::channel::<i32>();
let (b_tx, b_rx) = oneshot::channel::<i32>();
let (c_tx, c_rx) = oneshot::channel::<i32>();
let (d_tx, d_rx) = oneshot::channel::<i32>();
let mut stream = FuturesOrdered::new();
let mut cx = noop_context();
stream.push_back(a_rx);
stream.push_back(b_rx);
stream.push_back(c_rx);
a_tx.send(1).unwrap();
b_tx.send(2).unwrap();
c_tx.send(3).unwrap();
// 1 and 2 should be received in order
assert_eq!(Poll::Ready(Some(Ok(1))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(2))), stream.poll_next_unpin(&mut cx));
stream.push_front(d_rx);
d_tx.send(4).unwrap();
// we pushed `d_rx` to the front and sent 4, so we should recieve 4 next
// and then 3 after it
assert_eq!(Poll::Ready(Some(Ok(4))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(3))), stream.poll_next_unpin(&mut cx));
}
#[test]
fn test_push_back() {
let (a_tx, a_rx) = oneshot::channel::<i32>();
let (b_tx, b_rx) = oneshot::channel::<i32>();
let (c_tx, c_rx) = oneshot::channel::<i32>();
let (d_tx, d_rx) = oneshot::channel::<i32>();
let mut stream = FuturesOrdered::new();
let mut cx = noop_context();
stream.push_back(a_rx);
stream.push_back(b_rx);
stream.push_back(c_rx);
a_tx.send(1).unwrap();
b_tx.send(2).unwrap();
c_tx.send(3).unwrap();
// All results should be received in order
assert_eq!(Poll::Ready(Some(Ok(1))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(2))), stream.poll_next_unpin(&mut cx));
stream.push_back(d_rx);
d_tx.send(4).unwrap();
assert_eq!(Poll::Ready(Some(Ok(3))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(4))), stream.poll_next_unpin(&mut cx));
}
#[test]
fn from_iterator() {
let stream = vec![future::ready::<i32>(1), future::ready::<i32>(2), future::ready::<i32>(3)]
.into_iter()
.collect::<FuturesOrdered<_>>();
assert_eq!(stream.len(), 3);
assert_eq!(block_on(stream.collect::<Vec<_>>()), vec![1, 2, 3]);
}
#[test]
fn queue_never_unblocked() {
let (_a_tx, a_rx) = oneshot::channel::<Box<dyn Any + Send>>();
let (b_tx, b_rx) = oneshot::channel::<Box<dyn Any + Send>>();
let (c_tx, c_rx) = oneshot::channel::<Box<dyn Any + Send>>();
let mut stream = vec![
Box::new(a_rx) as Box<dyn Future<Output = _> + Unpin>,
Box::new(
future::try_select(b_rx, c_rx)
.map_err(|e| e.factor_first().0)
.and_then(|e| future::ok(Box::new(e) as Box<dyn Any + Send>)),
) as _,
]
.into_iter()
.collect::<FuturesOrdered<_>>();
let cx = &mut noop_context();
for _ in 0..10 {
assert!(stream.poll_next_unpin(cx).is_pending());
}
b_tx.send(Box::new(())).unwrap();
assert!(stream.poll_next_unpin(cx).is_pending());
c_tx.send(Box::new(())).unwrap();
assert!(stream.poll_next_unpin(cx).is_pending());
assert!(stream.poll_next_unpin(cx).is_pending());
}
#[test]
fn test_push_front_negative() {
let (a_tx, a_rx) = oneshot::channel::<i32>();
let (b_tx, b_rx) = oneshot::channel::<i32>();
let (c_tx, c_rx) = oneshot::channel::<i32>();
let mut stream = FuturesOrdered::new();
let mut cx = noop_context();
stream.push_front(a_rx);
stream.push_front(b_rx);
stream.push_front(c_rx);
a_tx.send(1).unwrap();
b_tx.send(2).unwrap();
c_tx.send(3).unwrap();
// These should all be recieved in reverse order
assert_eq!(Poll::Ready(Some(Ok(3))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(2))), stream.poll_next_unpin(&mut cx));
assert_eq!(Poll::Ready(Some(Ok(1))), stream.poll_next_unpin(&mut cx));
}
|