forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOperatorTakeTest.java
More file actions
458 lines (378 loc) · 14.7 KB
/
OperatorTakeTest.java
File metadata and controls
458 lines (378 loc) · 14.7 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/**
* Copyright 2014 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package rx.internal.operators;
import static org.junit.Assert.*;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import java.util.Arrays;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import org.junit.Test;
import org.mockito.InOrder;
import rx.*;
import rx.Observable.OnSubscribe;
import rx.exceptions.TestException;
import rx.functions.*;
import rx.observers.*;
import rx.schedulers.Schedulers;
import rx.subjects.PublishSubject;
public class OperatorTakeTest {
@Test
public void testTake1() {
Observable<String> w = Observable.from(Arrays.asList("one", "two", "three"));
Observable<String> take = w.lift(new OperatorTake<String>(2));
@SuppressWarnings("unchecked")
Observer<String> observer = mock(Observer.class);
take.subscribe(observer);
verify(observer, times(1)).onNext("one");
verify(observer, times(1)).onNext("two");
verify(observer, never()).onNext("three");
verify(observer, never()).onError(any(Throwable.class));
verify(observer, times(1)).onCompleted();
}
@Test
public void testTake2() {
Observable<String> w = Observable.from(Arrays.asList("one", "two", "three"));
Observable<String> take = w.lift(new OperatorTake<String>(1));
@SuppressWarnings("unchecked")
Observer<String> observer = mock(Observer.class);
take.subscribe(observer);
verify(observer, times(1)).onNext("one");
verify(observer, never()).onNext("two");
verify(observer, never()).onNext("three");
verify(observer, never()).onError(any(Throwable.class));
verify(observer, times(1)).onCompleted();
}
@Test(expected = IllegalArgumentException.class)
public void testTakeWithError() {
Observable.from(Arrays.asList(1, 2, 3)).take(1).map(new Func1<Integer, Integer>() {
@Override
public Integer call(Integer t1) {
throw new IllegalArgumentException("some error");
}
}).toBlocking().single();
}
@Test
public void testTakeWithErrorHappeningInOnNext() {
Observable<Integer> w = Observable.from(Arrays.asList(1, 2, 3)).take(2).map(new Func1<Integer, Integer>() {
@Override
public Integer call(Integer t1) {
throw new IllegalArgumentException("some error");
}
});
@SuppressWarnings("unchecked")
Observer<Integer> observer = mock(Observer.class);
w.subscribe(observer);
InOrder inOrder = inOrder(observer);
inOrder.verify(observer, times(1)).onError(any(IllegalArgumentException.class));
inOrder.verifyNoMoreInteractions();
}
@Test
public void testTakeWithErrorHappeningInTheLastOnNext() {
Observable<Integer> w = Observable.from(Arrays.asList(1, 2, 3)).take(1).map(new Func1<Integer, Integer>() {
@Override
public Integer call(Integer t1) {
throw new IllegalArgumentException("some error");
}
});
@SuppressWarnings("unchecked")
Observer<Integer> observer = mock(Observer.class);
w.subscribe(observer);
InOrder inOrder = inOrder(observer);
inOrder.verify(observer, times(1)).onError(any(IllegalArgumentException.class));
inOrder.verifyNoMoreInteractions();
}
@Test
public void testTakeDoesntLeakErrors() {
Observable<String> source = Observable.create(new Observable.OnSubscribe<String>() {
@Override
public void call(Subscriber<? super String> observer) {
observer.onNext("one");
observer.onError(new Throwable("test failed"));
}
});
@SuppressWarnings("unchecked")
Observer<String> observer = mock(Observer.class);
source.lift(new OperatorTake<String>(1)).subscribe(observer);
verify(observer, times(1)).onNext("one");
// even though onError is called we take(1) so shouldn't see it
verify(observer, never()).onError(any(Throwable.class));
verify(observer, times(1)).onCompleted();
verifyNoMoreInteractions(observer);
}
@Test
public void testTakeZeroDoesntLeakError() {
final AtomicBoolean subscribed = new AtomicBoolean(false);
final AtomicBoolean unSubscribed = new AtomicBoolean(false);
Observable<String> source = Observable.create(new Observable.OnSubscribe<String>() {
@Override
public void call(Subscriber<? super String> observer) {
subscribed.set(true);
observer.add(new Subscription() {
@Override
public void unsubscribe() {
unSubscribed.set(true);
}
@Override
public boolean isUnsubscribed() {
return unSubscribed.get();
}
});
observer.onError(new Throwable("test failed"));
}
});
@SuppressWarnings("unchecked")
Observer<String> observer = mock(Observer.class);
source.lift(new OperatorTake<String>(0)).subscribe(observer);
assertTrue("source subscribed", subscribed.get());
assertTrue("source unsubscribed", unSubscribed.get());
verify(observer, never()).onNext(anyString());
// even though onError is called we take(0) so shouldn't see it
verify(observer, never()).onError(any(Throwable.class));
verify(observer, times(1)).onCompleted();
verifyNoMoreInteractions(observer);
}
@Test
public void testUnsubscribeAfterTake() {
final Subscription s = mock(Subscription.class);
TestObservableFunc f = new TestObservableFunc("one", "two", "three");
Observable<String> w = Observable.create(f);
@SuppressWarnings("unchecked")
Observer<String> observer = mock(Observer.class);
Subscriber<String> subscriber = Subscribers.from(observer);
subscriber.add(s);
Observable<String> take = w.lift(new OperatorTake<String>(1));
take.subscribe(subscriber);
// wait for the Observable to complete
try {
f.t.join();
} catch (Throwable e) {
e.printStackTrace();
fail(e.getMessage());
}
System.out.println("TestObservable thread finished");
verify(observer, times(1)).onNext("one");
verify(observer, never()).onNext("two");
verify(observer, never()).onNext("three");
verify(observer, times(1)).onCompleted();
verify(s, times(1)).unsubscribe();
verifyNoMoreInteractions(observer);
}
@Test(timeout = 2000)
public void testUnsubscribeFromSynchronousInfiniteObservable() {
final AtomicLong count = new AtomicLong();
INFINITE_OBSERVABLE.take(10).subscribe(new Action1<Long>() {
@Override
public void call(Long l) {
count.set(l);
}
});
assertEquals(10, count.get());
}
@Test(timeout = 2000)
public void testMultiTake() {
final AtomicInteger count = new AtomicInteger();
Observable.create(new OnSubscribe<Integer>() {
@Override
public void call(Subscriber<? super Integer> s) {
for (int i = 0; !s.isUnsubscribed(); i++) {
System.out.println("Emit: " + i);
count.incrementAndGet();
s.onNext(i);
}
}
}).take(100).take(1).toBlocking().forEach(new Action1<Integer>() {
@Override
public void call(Integer t1) {
System.out.println("Receive: " + t1);
}
});
assertEquals(1, count.get());
}
private static class TestObservableFunc implements Observable.OnSubscribe<String> {
final String[] values;
Thread t = null;
public TestObservableFunc(String... values) {
this.values = values;
}
@Override
public void call(final Subscriber<? super String> observer) {
System.out.println("TestObservable subscribed to ...");
t = new Thread(new Runnable() {
@Override
public void run() {
try {
System.out.println("running TestObservable thread");
for (String s : values) {
System.out.println("TestObservable onNext: " + s);
observer.onNext(s);
}
observer.onCompleted();
} catch (Throwable e) {
throw new RuntimeException(e);
}
}
});
System.out.println("starting TestObservable thread");
t.start();
System.out.println("done starting TestObservable thread");
}
}
private static Observable<Long> INFINITE_OBSERVABLE = Observable.create(new OnSubscribe<Long>() {
@Override
public void call(Subscriber<? super Long> op) {
long l = 1;
while (!op.isUnsubscribed()) {
op.onNext(l++);
}
op.onCompleted();
}
});
@Test(timeout = 2000)
public void testTakeObserveOn() {
@SuppressWarnings("unchecked")
Observer<Object> o = mock(Observer.class);
TestSubscriber<Object> ts = new TestSubscriber<Object>(o);
INFINITE_OBSERVABLE.onBackpressureDrop().observeOn(Schedulers.newThread()).take(1).subscribe(ts);
ts.awaitTerminalEvent();
ts.assertNoErrors();
verify(o).onNext(1L);
verify(o, never()).onNext(2L);
verify(o).onCompleted();
verify(o, never()).onError(any(Throwable.class));
}
@Test
public void testProducerRequestThroughTake() {
TestSubscriber<Integer> ts = new TestSubscriber<Integer>();
ts.requestMore(3);
final AtomicLong requested = new AtomicLong();
Observable.create(new OnSubscribe<Integer>() {
@Override
public void call(Subscriber<? super Integer> s) {
s.setProducer(new Producer() {
@Override
public void request(long n) {
requested.set(n);
}
});
}
}).take(3).subscribe(ts);
assertEquals(3, requested.get());
}
@Test
public void testProducerRequestThroughTakeIsModified() {
TestSubscriber<Integer> ts = new TestSubscriber<Integer>();
ts.requestMore(3);
final AtomicLong requested = new AtomicLong();
Observable.create(new OnSubscribe<Integer>() {
@Override
public void call(Subscriber<? super Integer> s) {
s.setProducer(new Producer() {
@Override
public void request(long n) {
requested.set(n);
}
});
}
}).take(1).subscribe(ts);
assertEquals(1, requested.get());
}
@Test
public void testInterrupt() throws InterruptedException {
final AtomicReference<Object> exception = new AtomicReference<Object>();
final CountDownLatch latch = new CountDownLatch(1);
Observable.just(1).subscribeOn(Schedulers.computation()).take(1).subscribe(new Action1<Integer>() {
@Override
public void call(Integer t1) {
try {
Thread.sleep(100);
} catch (Exception e) {
exception.set(e);
e.printStackTrace();
} finally {
latch.countDown();
}
}
});
latch.await();
assertNull(exception.get());
}
@Test
public void testDoesntRequestMoreThanNeededFromUpstream() throws InterruptedException {
final AtomicLong requests = new AtomicLong();
TestSubscriber<Long> ts = new TestSubscriber<Long>(0);
Observable.interval(100, TimeUnit.MILLISECONDS)
//
.doOnRequest(new Action1<Long>() {
@Override
public void call(Long n) {
requests.addAndGet(n);
}})
//
.take(2)
//
.subscribe(ts);
Thread.sleep(50);
ts.requestMore(1);
ts.requestMore(1);
ts.requestMore(1);
ts.awaitTerminalEvent();
ts.assertCompleted();
ts.assertNoErrors();
assertEquals(2,requests.get());
}
@Test
public void takeFinalValueThrows() {
Observable<Integer> source = Observable.just(1).take(1);
TestSubscriber<Integer> ts = new TestSubscriber<Integer>() {
@Override
public void onNext(Integer t) {
throw new TestException();
}
};
source.subscribe(ts);
ts.assertNoValues();
ts.assertError(TestException.class);
ts.assertNotCompleted();
}
@Test
public void testReentrantTake() {
final PublishSubject<Integer> source = PublishSubject.create();
TestSubscriber<Integer> ts = new TestSubscriber<Integer>();
source.take(1).doOnNext(new Action1<Integer>() {
@Override
public void call(Integer v) {
source.onNext(2);
}
}).subscribe(ts);
source.onNext(1);
ts.assertValue(1);
ts.assertNoErrors();
ts.assertCompleted();
}
@Test(expected = IllegalArgumentException.class)
public void takeNegative() {
Observable.range(1, 1000 * 1000 * 1000).take(-1);
}
@Test(timeout = 1000)
public void takeZero() {
TestSubscriber<Integer> ts = TestSubscriber.create();
Observable.range(1, 1000 * 1000 * 1000).take(0).subscribe(ts);
ts.assertNoValues();
ts.assertNoErrors();
ts.assertCompleted();
}
}