forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAbstractSchedulerTests.java
775 lines (641 loc) · 25.1 KB
/
AbstractSchedulerTests.java
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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 io.reactivex.schedulers;
import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.concurrent.atomic.*;
import io.reactivex.internal.functions.Functions;
import io.reactivex.plugins.RxJavaPlugins;
import org.junit.Test;
import org.mockito.InOrder;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.reactivestreams.*;
import io.reactivex.*;
import io.reactivex.disposables.Disposable;
import io.reactivex.functions.*;
import io.reactivex.internal.disposables.SequentialDisposable;
import io.reactivex.internal.schedulers.TrampolineScheduler;
import io.reactivex.internal.subscriptions.*;
import io.reactivex.subscribers.DefaultSubscriber;
/**
* Base tests for all schedulers including Immediate/Current.
*/
public abstract class AbstractSchedulerTests {
/**
* The scheduler to test.
*
* @return the Scheduler instance
*/
protected abstract Scheduler getScheduler();
@Test
public void testNestedActions() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final CountDownLatch latch = new CountDownLatch(1);
final Runnable firstStepStart = mock(Runnable.class);
final Runnable firstStepEnd = mock(Runnable.class);
final Runnable secondStepStart = mock(Runnable.class);
final Runnable secondStepEnd = mock(Runnable.class);
final Runnable thirdStepStart = mock(Runnable.class);
final Runnable thirdStepEnd = mock(Runnable.class);
final Runnable firstAction = new Runnable() {
@Override
public void run() {
firstStepStart.run();
firstStepEnd.run();
latch.countDown();
}
};
final Runnable secondAction = new Runnable() {
@Override
public void run() {
secondStepStart.run();
inner.schedule(firstAction);
secondStepEnd.run();
}
};
final Runnable thirdAction = new Runnable() {
@Override
public void run() {
thirdStepStart.run();
inner.schedule(secondAction);
thirdStepEnd.run();
}
};
InOrder inOrder = inOrder(firstStepStart, firstStepEnd, secondStepStart, secondStepEnd, thirdStepStart, thirdStepEnd);
inner.schedule(thirdAction);
latch.await();
inOrder.verify(thirdStepStart, times(1)).run();
inOrder.verify(thirdStepEnd, times(1)).run();
inOrder.verify(secondStepStart, times(1)).run();
inOrder.verify(secondStepEnd, times(1)).run();
inOrder.verify(firstStepStart, times(1)).run();
inOrder.verify(firstStepEnd, times(1)).run();
} finally {
inner.dispose();
}
}
@Test
public final void testNestedScheduling() {
Flowable<Integer> ids = Flowable.fromIterable(Arrays.asList(1, 2)).subscribeOn(getScheduler());
Flowable<String> m = ids.flatMap(new Function<Integer, Flowable<String>>() {
@Override
public Flowable<String> apply(Integer id) {
return Flowable.fromIterable(Arrays.asList("a-" + id, "b-" + id)).subscribeOn(getScheduler())
.map(new Function<String, String>() {
@Override
public String apply(String s) {
return "names=>" + s;
}
});
}
});
List<String> strings = m.toList().blockingGet();
assertEquals(4, strings.size());
// because flatMap does a merge there is no guarantee of order
assertTrue(strings.contains("names=>a-1"));
assertTrue(strings.contains("names=>a-2"));
assertTrue(strings.contains("names=>b-1"));
assertTrue(strings.contains("names=>b-2"));
}
/**
* The order of execution is nondeterministic.
*
* @throws InterruptedException if the await is interrupted
*/
@SuppressWarnings("rawtypes")
@Test
public final void testSequenceOfActions() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final CountDownLatch latch = new CountDownLatch(2);
final Runnable first = mock(Runnable.class);
final Runnable second = mock(Runnable.class);
// make it wait until both the first and second are called
doAnswer(new Answer() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
try {
return invocation.getMock();
} finally {
latch.countDown();
}
}
}).when(first).run();
doAnswer(new Answer() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
try {
return invocation.getMock();
} finally {
latch.countDown();
}
}
}).when(second).run();
inner.schedule(first);
inner.schedule(second);
latch.await();
verify(first, times(1)).run();
verify(second, times(1)).run();
} finally {
inner.dispose();
}
}
@Test
public void testSequenceOfDelayedActions() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final CountDownLatch latch = new CountDownLatch(1);
final Runnable first = mock(Runnable.class);
final Runnable second = mock(Runnable.class);
inner.schedule(new Runnable() {
@Override
public void run() {
inner.schedule(first, 30, TimeUnit.MILLISECONDS);
inner.schedule(second, 10, TimeUnit.MILLISECONDS);
inner.schedule(new Runnable() {
@Override
public void run() {
latch.countDown();
}
}, 40, TimeUnit.MILLISECONDS);
}
});
latch.await();
InOrder inOrder = inOrder(first, second);
inOrder.verify(second, times(1)).run();
inOrder.verify(first, times(1)).run();
} finally {
inner.dispose();
}
}
@Test
public void testMixOfDelayedAndNonDelayedActions() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final CountDownLatch latch = new CountDownLatch(1);
final Runnable first = mock(Runnable.class);
final Runnable second = mock(Runnable.class);
final Runnable third = mock(Runnable.class);
final Runnable fourth = mock(Runnable.class);
inner.schedule(new Runnable() {
@Override
public void run() {
inner.schedule(first);
inner.schedule(second, 300, TimeUnit.MILLISECONDS);
inner.schedule(third, 100, TimeUnit.MILLISECONDS);
inner.schedule(fourth);
inner.schedule(new Runnable() {
@Override
public void run() {
latch.countDown();
}
}, 400, TimeUnit.MILLISECONDS);
}
});
latch.await();
InOrder inOrder = inOrder(first, second, third, fourth);
inOrder.verify(first, times(1)).run();
inOrder.verify(fourth, times(1)).run();
inOrder.verify(third, times(1)).run();
inOrder.verify(second, times(1)).run();
} finally {
inner.dispose();
}
}
@Test
public final void testRecursiveExecution() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final AtomicInteger i = new AtomicInteger();
final CountDownLatch latch = new CountDownLatch(1);
inner.schedule(new Runnable() {
@Override
public void run() {
if (i.incrementAndGet() < 100) {
inner.schedule(this);
} else {
latch.countDown();
}
}
});
latch.await();
assertEquals(100, i.get());
} finally {
inner.dispose();
}
}
@Test
public final void testRecursiveExecutionWithDelayTime() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final AtomicInteger i = new AtomicInteger();
final CountDownLatch latch = new CountDownLatch(1);
inner.schedule(new Runnable() {
int state;
@Override
public void run() {
i.set(state);
if (state++ < 100) {
inner.schedule(this, 1, TimeUnit.MILLISECONDS);
} else {
latch.countDown();
}
}
});
latch.await();
assertEquals(100, i.get());
} finally {
inner.dispose();
}
}
@Test
public final void testRecursiveSchedulerInObservable() {
Flowable<Integer> obs = Flowable.unsafeCreate(new Publisher<Integer>() {
@Override
public void subscribe(final Subscriber<? super Integer> subscriber) {
final Scheduler.Worker inner = getScheduler().createWorker();
AsyncSubscription as = new AsyncSubscription();
subscriber.onSubscribe(as);
as.setResource(inner);
inner.schedule(new Runnable() {
int i;
@Override
public void run() {
if (i > 42) {
try {
subscriber.onComplete();
} finally {
inner.dispose();
}
return;
}
subscriber.onNext(i++);
inner.schedule(this);
}
});
}
});
final AtomicInteger lastValue = new AtomicInteger();
obs.blockingForEach(new Consumer<Integer>() {
@Override
public void accept(Integer v) {
System.out.println("Value: " + v);
lastValue.set(v);
}
});
assertEquals(42, lastValue.get());
}
@Test
public final void testConcurrentOnNextFailsValidation() throws InterruptedException {
final int count = 10;
final CountDownLatch latch = new CountDownLatch(count);
Flowable<String> f = Flowable.unsafeCreate(new Publisher<String>() {
@Override
public void subscribe(final Subscriber<? super String> subscriber) {
subscriber.onSubscribe(new BooleanSubscription());
for (int i = 0; i < count; i++) {
final int v = i;
new Thread(new Runnable() {
@Override
public void run() {
subscriber.onNext("v: " + v);
latch.countDown();
}
}).start();
}
}
});
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
// this should call onNext concurrently
f.subscribe(observer);
if (!observer.completed.await(3000, TimeUnit.MILLISECONDS)) {
fail("timed out");
}
if (observer.error.get() == null) {
fail("We expected error messages due to concurrency");
}
}
@Test
public final void testObserveOn() throws InterruptedException {
final Scheduler scheduler = getScheduler();
Flowable<String> f = Flowable.fromArray("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten");
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
f.observeOn(scheduler).subscribe(observer);
if (!observer.completed.await(3000, TimeUnit.MILLISECONDS)) {
fail("timed out");
}
if (observer.error.get() != null) {
observer.error.get().printStackTrace();
fail("Error: " + observer.error.get().getMessage());
}
}
@Test
public final void testSubscribeOnNestedConcurrency() throws InterruptedException {
final Scheduler scheduler = getScheduler();
Flowable<String> f = Flowable.fromArray("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten")
.flatMap(new Function<String, Flowable<String>>() {
@Override
public Flowable<String> apply(final String v) {
return Flowable.unsafeCreate(new Publisher<String>() {
@Override
public void subscribe(Subscriber<? super String> subscriber) {
subscriber.onSubscribe(new BooleanSubscription());
subscriber.onNext("value_after_map-" + v);
subscriber.onComplete();
}
}).subscribeOn(scheduler);
}
});
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
f.subscribe(observer);
if (!observer.completed.await(3000, TimeUnit.MILLISECONDS)) {
fail("timed out");
}
if (observer.error.get() != null) {
observer.error.get().printStackTrace();
fail("Error: " + observer.error.get().getMessage());
}
}
/**
* Used to determine if onNext is being invoked concurrently.
*
* @param <T>
*/
private static class ConcurrentObserverValidator<T> extends DefaultSubscriber<T> {
final AtomicInteger concurrentCounter = new AtomicInteger();
final AtomicReference<Throwable> error = new AtomicReference<Throwable>();
final CountDownLatch completed = new CountDownLatch(1);
@Override
public void onComplete() {
completed.countDown();
}
@Override
public void onError(Throwable e) {
error.set(e);
completed.countDown();
}
@Override
public void onNext(T args) {
int count = concurrentCounter.incrementAndGet();
System.out.println("ConcurrentObserverValidator.onNext: " + args);
if (count > 1) {
onError(new RuntimeException("we should not have concurrent execution of onNext"));
}
try {
try {
// take some time so other onNext calls could pile up (I haven't yet thought of a way to do this without sleeping)
Thread.sleep(50);
} catch (InterruptedException e) {
// ignore
}
} finally {
concurrentCounter.decrementAndGet();
}
}
}
@Test
public void scheduleDirect() throws Exception {
Scheduler s = getScheduler();
final CountDownLatch cdl = new CountDownLatch(1);
s.scheduleDirect(new Runnable() {
@Override
public void run() {
cdl.countDown();
}
});
assertTrue(cdl.await(5, TimeUnit.SECONDS));
}
@Test
public void scheduleDirectDelayed() throws Exception {
Scheduler s = getScheduler();
final CountDownLatch cdl = new CountDownLatch(1);
s.scheduleDirect(new Runnable() {
@Override
public void run() {
cdl.countDown();
}
}, 50, TimeUnit.MILLISECONDS);
assertTrue(cdl.await(5, TimeUnit.SECONDS));
}
@Test(timeout = 7000)
public void scheduleDirectPeriodic() throws Exception {
Scheduler s = getScheduler();
if (s instanceof TrampolineScheduler) {
// can't properly stop a trampolined periodic task
return;
}
final CountDownLatch cdl = new CountDownLatch(5);
Disposable d = s.schedulePeriodicallyDirect(new Runnable() {
@Override
public void run() {
cdl.countDown();
}
}, 10, 10, TimeUnit.MILLISECONDS);
try {
assertTrue(cdl.await(5, TimeUnit.SECONDS));
} finally {
d.dispose();
}
assertTrue(d.isDisposed());
}
@Test(timeout = 10000)
public void schedulePeriodicallyDirectZeroPeriod() throws Exception {
Scheduler s = getScheduler();
if (s instanceof TrampolineScheduler) {
// can't properly stop a trampolined periodic task
return;
}
for (int initial = 0; initial < 2; initial++) {
final CountDownLatch cdl = new CountDownLatch(1);
final SequentialDisposable sd = new SequentialDisposable();
try {
sd.replace(s.schedulePeriodicallyDirect(new Runnable() {
int count;
@Override
public void run() {
if (++count == 10) {
sd.dispose();
cdl.countDown();
}
}
}, initial, 0, TimeUnit.MILLISECONDS));
assertTrue("" + initial, cdl.await(5, TimeUnit.SECONDS));
} finally {
sd.dispose();
}
}
}
@Test(timeout = 10000)
public void schedulePeriodicallyZeroPeriod() throws Exception {
Scheduler s = getScheduler();
if (s instanceof TrampolineScheduler) {
// can't properly stop a trampolined periodic task
return;
}
for (int initial = 0; initial < 2; initial++) {
final CountDownLatch cdl = new CountDownLatch(1);
final SequentialDisposable sd = new SequentialDisposable();
Scheduler.Worker w = s.createWorker();
try {
sd.replace(w.schedulePeriodically(new Runnable() {
int count;
@Override
public void run() {
if (++count == 10) {
sd.dispose();
cdl.countDown();
}
}
}, initial, 0, TimeUnit.MILLISECONDS));
assertTrue("" + initial, cdl.await(5, TimeUnit.SECONDS));
} finally {
sd.dispose();
w.dispose();
}
}
}
private void assertRunnableDecorated(Runnable scheduleCall) throws InterruptedException {
try {
final CountDownLatch decoratedCalled = new CountDownLatch(1);
RxJavaPlugins.setScheduleHandler(new Function<Runnable, Runnable>() {
@Override
public Runnable apply(final Runnable actual) throws Exception {
return new Runnable() {
@Override
public void run() {
decoratedCalled.countDown();
actual.run();
}
};
}
});
scheduleCall.run();
assertTrue(decoratedCalled.await(5, TimeUnit.SECONDS));
} finally {
RxJavaPlugins.reset();
}
}
@Test(timeout = 6000)
public void scheduleDirectDecoratesRunnable() throws InterruptedException {
assertRunnableDecorated(new Runnable() {
@Override
public void run() {
getScheduler().scheduleDirect(Functions.EMPTY_RUNNABLE);
}
});
}
@Test(timeout = 6000)
public void scheduleDirectWithDelayDecoratesRunnable() throws InterruptedException {
assertRunnableDecorated(new Runnable() {
@Override
public void run() {
getScheduler().scheduleDirect(Functions.EMPTY_RUNNABLE, 1, TimeUnit.MILLISECONDS);
}
});
}
@Test(timeout = 6000)
public void schedulePeriodicallyDirectDecoratesRunnable() throws InterruptedException {
final Scheduler scheduler = getScheduler();
if (scheduler instanceof TrampolineScheduler) {
// Can't properly stop a trampolined periodic task.
return;
}
final AtomicReference<Disposable> disposable = new AtomicReference<Disposable>();
try {
assertRunnableDecorated(new Runnable() {
@Override
public void run() {
disposable.set(scheduler.schedulePeriodicallyDirect(Functions.EMPTY_RUNNABLE, 1, 10000, TimeUnit.MILLISECONDS));
}
});
} finally {
disposable.get().dispose();
}
}
@Test(timeout = 5000)
public void unwrapDefaultPeriodicTask() throws InterruptedException {
Scheduler s = getScheduler();
if (s instanceof TrampolineScheduler) {
// TrampolineScheduler always return EmptyDisposable
return;
}
final CountDownLatch cdl = new CountDownLatch(1);
Runnable countDownRunnable = new Runnable() {
@Override
public void run() {
cdl.countDown();
}
};
Disposable disposable = s.schedulePeriodicallyDirect(countDownRunnable, 100, 100, TimeUnit.MILLISECONDS);
SchedulerRunnableIntrospection wrapper = (SchedulerRunnableIntrospection) disposable;
assertSame(countDownRunnable, wrapper.getWrappedRunnable());
assertTrue(cdl.await(5, TimeUnit.SECONDS));
disposable.dispose();
}
@Test
public void unwrapScheduleDirectTask() {
Scheduler scheduler = getScheduler();
if (scheduler instanceof TrampolineScheduler) {
// TrampolineScheduler always return EmptyDisposable
return;
}
final CountDownLatch cdl = new CountDownLatch(1);
Runnable countDownRunnable = new Runnable() {
@Override
public void run() {
cdl.countDown();
}
};
Disposable disposable = scheduler.scheduleDirect(countDownRunnable, 100, TimeUnit.MILLISECONDS);
SchedulerRunnableIntrospection wrapper = (SchedulerRunnableIntrospection) disposable;
assertSame(countDownRunnable, wrapper.getWrappedRunnable());
disposable.dispose();
}
@Test
public void scheduleDirectNullRunnable() {
try {
getScheduler().scheduleDirect(null);
fail();
} catch (NullPointerException npe) {
assertEquals("run is null", npe.getMessage());
}
}
@Test
public void scheduleDirectWithDelayNullRunnable() {
try {
getScheduler().scheduleDirect(null, 10, TimeUnit.MILLISECONDS);
fail();
} catch (NullPointerException npe) {
assertEquals("run is null", npe.getMessage());
}
}
@Test
public void schedulePeriodicallyDirectNullRunnable() {
try {
getScheduler().schedulePeriodicallyDirect(null, 5, 10, TimeUnit.MILLISECONDS);
fail();
} catch (NullPointerException npe) {
assertEquals("run is null", npe.getMessage());
}
}
}