forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAbstractSchedulerTests.java
More file actions
601 lines (492 loc) · 20.2 KB
/
AbstractSchedulerTests.java
File metadata and controls
601 lines (492 loc) · 20.2 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
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
/**
* Copyright 2013 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.schedulers;
import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
import org.junit.Test;
import org.mockito.InOrder;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import rx.Observable;
import rx.Observable.OnSubscribeFunc;
import rx.Observer;
import rx.Scheduler;
import rx.Subscription;
import rx.subscriptions.BooleanSubscription;
import rx.subscriptions.Subscriptions;
import rx.util.functions.Action0;
import rx.util.functions.Action1;
import rx.util.functions.Func1;
import rx.util.functions.Func2;
/**
* Base tests for all schedulers including Immediate/Current.
*/
public abstract class AbstractSchedulerTests {
/**
* The scheduler to test
*/
protected abstract Scheduler getScheduler();
@Test
public final void unsubscribeWithFastProducerWithSlowConsumerCausingQueuing() throws InterruptedException {
final AtomicInteger countEmitted = new AtomicInteger();
final AtomicInteger countTaken = new AtomicInteger();
int value = Observable.create(new OnSubscribeFunc<Integer>() {
@Override
public Subscription onSubscribe(final Observer<? super Integer> o) {
final BooleanSubscription s = BooleanSubscription.create();
Thread t = new Thread(new Runnable() {
@Override
public void run() {
int i = 1;
while (!s.isUnsubscribed() && i <= 100) {
System.out.println("onNext from fast producer: " + i);
o.onNext(i++);
}
o.onCompleted();
}
});
t.setDaemon(true);
t.start();
return s;
}
}).doOnNext(new Action1<Integer>() {
@Override
public void call(Integer i) {
countEmitted.incrementAndGet();
}
}).doOnCompleted(new Action0() {
@Override
public void call() {
System.out.println("-------- Done Emitting from Source ---------");
}
}).observeOn(getScheduler()).doOnNext(new Action1<Integer>() {
@Override
public void call(Integer i) {
System.out.println(">> onNext to slowConsumer pre-take: " + i);
//force it to be slower than the producer
try {
Thread.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
countTaken.incrementAndGet();
}
}).take(10).toBlockingObservable().last();
if (getScheduler() instanceof CurrentThreadScheduler || getScheduler() instanceof ImmediateScheduler) {
// since there is no concurrency it will block and only emit as many as it can process
assertEquals(10, countEmitted.get());
} else {
// they will all emit because the consumer is running slow
assertEquals(100, countEmitted.get());
}
// number received after take (but take will filter any extra)
assertEquals(10, value);
// so we also want to check the doOnNext after observeOn to see if it got unsubscribed
Thread.sleep(200); // let time pass to see if the scheduler is still doing work
// we expect only 10 to make it through the observeOn side
assertEquals(10, countTaken.get());
}
@Test
public void testNestedActions() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final CountDownLatch latch = new CountDownLatch(1);
final Action0 firstStepStart = mock(Action0.class);
final Action0 firstStepEnd = mock(Action0.class);
final Action0 secondStepStart = mock(Action0.class);
final Action0 secondStepEnd = mock(Action0.class);
final Action0 thirdStepStart = mock(Action0.class);
final Action0 thirdStepEnd = mock(Action0.class);
final Action0 firstAction = new Action0() {
@Override
public void call() {
firstStepStart.call();
firstStepEnd.call();
latch.countDown();
}
};
final Action0 secondAction = new Action0() {
@Override
public void call() {
secondStepStart.call();
scheduler.schedule(firstAction);
secondStepEnd.call();
}
};
final Action0 thirdAction = new Action0() {
@Override
public void call() {
thirdStepStart.call();
scheduler.schedule(secondAction);
thirdStepEnd.call();
}
};
InOrder inOrder = inOrder(firstStepStart, firstStepEnd, secondStepStart, secondStepEnd, thirdStepStart, thirdStepEnd);
scheduler.schedule(thirdAction);
latch.await();
inOrder.verify(thirdStepStart, times(1)).call();
inOrder.verify(thirdStepEnd, times(1)).call();
inOrder.verify(secondStepStart, times(1)).call();
inOrder.verify(secondStepEnd, times(1)).call();
inOrder.verify(firstStepStart, times(1)).call();
inOrder.verify(firstStepEnd, times(1)).call();
}
@Test
public final void testNestedScheduling() {
Observable<Integer> ids = Observable.from(Arrays.asList(1, 2), getScheduler());
Observable<String> m = ids.flatMap(new Func1<Integer, Observable<String>>() {
@Override
public Observable<String> call(Integer id) {
return Observable.from(Arrays.asList("a-" + id, "b-" + id), getScheduler())
.map(new Func1<String, String>() {
@Override
public String call(String s) {
return "names=>" + s;
}
});
}
});
List<String> strings = m.toList().toBlockingObservable().last();
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
*/
@SuppressWarnings("rawtypes")
@Test
public final void testSequenceOfActions() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final CountDownLatch latch = new CountDownLatch(2);
final Action0 first = mock(Action0.class);
final Action0 second = mock(Action0.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).call();
doAnswer(new Answer() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
try {
return invocation.getMock();
} finally {
latch.countDown();
}
}
}).when(second).call();
scheduler.schedule(first);
scheduler.schedule(second);
latch.await();
verify(first, times(1)).call();
verify(second, times(1)).call();
}
@Test
public void testSequenceOfDelayedActions() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final CountDownLatch latch = new CountDownLatch(1);
final Action0 first = mock(Action0.class);
final Action0 second = mock(Action0.class);
scheduler.schedule(new Action0() {
@Override
public void call() {
scheduler.schedule(first, 30, TimeUnit.MILLISECONDS);
scheduler.schedule(second, 10, TimeUnit.MILLISECONDS);
scheduler.schedule(new Action0() {
@Override
public void call() {
latch.countDown();
}
}, 40, TimeUnit.MILLISECONDS);
}
});
latch.await();
InOrder inOrder = inOrder(first, second);
inOrder.verify(second, times(1)).call();
inOrder.verify(first, times(1)).call();
}
@Test
public void testMixOfDelayedAndNonDelayedActions() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final CountDownLatch latch = new CountDownLatch(1);
final Action0 first = mock(Action0.class);
final Action0 second = mock(Action0.class);
final Action0 third = mock(Action0.class);
final Action0 fourth = mock(Action0.class);
scheduler.schedule(new Action0() {
@Override
public void call() {
scheduler.schedule(first);
scheduler.schedule(second, 300, TimeUnit.MILLISECONDS);
scheduler.schedule(third, 100, TimeUnit.MILLISECONDS);
scheduler.schedule(fourth);
scheduler.schedule(new Action0() {
@Override
public void call() {
latch.countDown();
}
}, 400, TimeUnit.MILLISECONDS);
}
});
latch.await();
InOrder inOrder = inOrder(first, second, third, fourth);
inOrder.verify(first, times(1)).call();
inOrder.verify(fourth, times(1)).call();
inOrder.verify(third, times(1)).call();
inOrder.verify(second, times(1)).call();
}
@Test
public final void testRecursiveExecutionWithAction0() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final AtomicInteger i = new AtomicInteger();
final CountDownLatch latch = new CountDownLatch(1);
scheduler.schedule(new Action1<Action0>() {
@Override
public void call(Action0 self) {
if (i.incrementAndGet() < 100) {
self.call();
} else {
latch.countDown();
}
}
});
latch.await();
assertEquals(100, i.get());
}
@Test
public final void testRecursiveExecutionWithFunc2() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final AtomicInteger i = new AtomicInteger();
final CountDownLatch latch = new CountDownLatch(1);
scheduler.schedule(0, new Func2<Scheduler, Integer, Subscription>() {
@Override
public Subscription call(Scheduler innerScheduler, Integer state) {
i.set(state);
if (state < 100) {
return innerScheduler.schedule(state + 1, this);
} else {
latch.countDown();
return Subscriptions.empty();
}
}
});
latch.await();
assertEquals(100, i.get());
}
@Test
public final void testRecursiveExecutionWithFunc2AndDelayTime() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final AtomicInteger i = new AtomicInteger();
final CountDownLatch latch = new CountDownLatch(1);
scheduler.schedule(0, new Func2<Scheduler, Integer, Subscription>() {
@Override
public Subscription call(Scheduler innerScheduler, Integer state) {
i.set(state);
if (state < 100) {
return innerScheduler.schedule(state + 1, this, 5, TimeUnit.MILLISECONDS);
} else {
latch.countDown();
return Subscriptions.empty();
}
}
}, 50, TimeUnit.MILLISECONDS);
latch.await();
assertEquals(100, i.get());
}
@Test
public final void testRecursiveSchedulerSimple() {
final Scheduler scheduler = getScheduler();
Observable<Integer> obs = Observable.create(new OnSubscribeFunc<Integer>() {
@Override
public Subscription onSubscribe(final Observer<? super Integer> observer) {
return scheduler.schedule(0, new Func2<Scheduler, Integer, Subscription>() {
@Override
public Subscription call(Scheduler scheduler, Integer i) {
if (i > 42) {
observer.onCompleted();
return Subscriptions.empty();
}
observer.onNext(i);
return scheduler.schedule(i + 1, this);
}
});
}
});
final AtomicInteger lastValue = new AtomicInteger();
obs.toBlockingObservable().forEach(new Action1<Integer>() {
@Override
public void call(Integer v) {
System.out.println("Value: " + v);
lastValue.set(v);
}
});
assertEquals(42, lastValue.get());
}
@Test
public final void testSchedulingWithDueTime() throws InterruptedException {
final Scheduler scheduler = getScheduler();
final CountDownLatch latch = new CountDownLatch(5);
final AtomicInteger counter = new AtomicInteger();
long start = System.currentTimeMillis();
scheduler.schedule(null, new Func2<Scheduler, String, Subscription>() {
@Override
public Subscription call(Scheduler scheduler, String state) {
System.out.println("doing work");
counter.incrementAndGet();
latch.countDown();
if (latch.getCount() == 0) {
return Subscriptions.empty();
} else {
return scheduler.schedule(state, this, new Date(scheduler.now() + 50));
}
}
}, new Date(scheduler.now() + 100));
if (!latch.await(3000, TimeUnit.MILLISECONDS)) {
fail("didn't execute ... timed out");
}
long end = System.currentTimeMillis();
assertEquals(5, counter.get());
System.out.println("Time taken: " + (end - start));
if ((end - start) < 250) {
fail("it should have taken over 250ms since each step was scheduled 50ms in the future");
}
}
@Test
public final void testConcurrentOnNextFailsValidation() throws InterruptedException {
final int count = 10;
final CountDownLatch latch = new CountDownLatch(count);
Observable<String> o = Observable.create(new OnSubscribeFunc<String>() {
@Override
public Subscription onSubscribe(final Observer<? super String> observer) {
for (int i = 0; i < count; i++) {
final int v = i;
new Thread(new Runnable() {
@Override
public void run() {
observer.onNext("v: " + v);
latch.countDown();
}
}).start();
}
return Subscriptions.empty();
}
});
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
// this should call onNext concurrently
o.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();
Observable<String> o = Observable.from("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten");
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
o.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();
Observable<String> o = Observable.from("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten")
.mergeMap(new Func1<String, Observable<String>>() {
@Override
public Observable<String> call(final String v) {
return Observable.create(new OnSubscribeFunc<String>() {
@Override
public Subscription onSubscribe(final Observer<? super String> observer) {
observer.onNext("value_after_map-" + v);
observer.onCompleted();
return Subscriptions.empty();
}
}).subscribeOn(scheduler);
}
});
ConcurrentObserverValidator<String> observer = new ConcurrentObserverValidator<String>();
o.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> implements Observer<T> {
final AtomicInteger concurrentCounter = new AtomicInteger();
final AtomicReference<Throwable> error = new AtomicReference<Throwable>();
final CountDownLatch completed = new CountDownLatch(1);
@Override
public void onCompleted() {
completed.countDown();
}
@Override
public void onError(Throwable e) {
completed.countDown();
error.set(e);
}
@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();
}
}
}
}