forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractSchedulerTests.java
More file actions
505 lines (415 loc) · 16.6 KB
/
AbstractSchedulerTests.java
File metadata and controls
505 lines (415 loc) · 16.6 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
/**
* 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.schedulers;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.inOrder;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import java.util.Arrays;
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.OnSubscribe;
import rx.Scheduler;
import rx.Subscriber;
import rx.functions.Action0;
import rx.functions.Action1;
import rx.functions.Func1;
/**
* Base tests for all schedulers including Immediate/Current.
*/
public abstract class AbstractSchedulerTests {
/**
* The scheduler to test
*/
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 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();
inner.schedule(firstAction);
secondStepEnd.call();
}
};
final Action0 thirdAction = new Action0() {
@Override
public void call() {
thirdStepStart.call();
inner.schedule(secondAction);
thirdStepEnd.call();
}
};
InOrder inOrder = inOrder(firstStepStart, firstStepEnd, secondStepStart, secondStepEnd, thirdStepStart, thirdStepEnd);
inner.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();
} finally {
inner.unsubscribe();
}
}
@Test
public final void testNestedScheduling() {
Observable<Integer> ids = Observable.from(Arrays.asList(1, 2)).subscribeOn(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)).subscribeOn(getScheduler())
.map(new Func1<String, String>() {
@Override
public String call(String s) {
return "names=>" + s;
}
});
}
});
List<String> strings = m.toList().toBlocking().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 Scheduler.Worker inner = scheduler.createWorker();
try {
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();
inner.schedule(first);
inner.schedule(second);
latch.await();
verify(first, times(1)).call();
verify(second, times(1)).call();
} finally {
inner.unsubscribe();
}
}
@Test
public void testSequenceOfDelayedActions() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
final CountDownLatch latch = new CountDownLatch(1);
final Action0 first = mock(Action0.class);
final Action0 second = mock(Action0.class);
inner.schedule(new Action0() {
@Override
public void call() {
inner.schedule(first, 30, TimeUnit.MILLISECONDS);
inner.schedule(second, 10, TimeUnit.MILLISECONDS);
inner.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();
} finally {
inner.unsubscribe();
}
}
@Test
public void testMixOfDelayedAndNonDelayedActions() throws InterruptedException {
Scheduler scheduler = getScheduler();
final Scheduler.Worker inner = scheduler.createWorker();
try {
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);
inner.schedule(new Action0() {
@Override
public void call() {
inner.schedule(first);
inner.schedule(second, 300, TimeUnit.MILLISECONDS);
inner.schedule(third, 100, TimeUnit.MILLISECONDS);
inner.schedule(fourth);
inner.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();
} finally {
inner.unsubscribe();
}
}
@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 Action0() {
@Override
public void call() {
if (i.incrementAndGet() < 100) {
inner.schedule(this);
} else {
latch.countDown();
}
}
});
latch.await();
assertEquals(100, i.get());
} finally {
inner.unsubscribe();
}
}
@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 Action0() {
int state = 0;
@Override
public void call() {
i.set(state);
if (state++ < 100) {
inner.schedule(this, 1, TimeUnit.MILLISECONDS);
} else {
latch.countDown();
}
}
});
latch.await();
assertEquals(100, i.get());
} finally {
inner.unsubscribe();
}
}
@Test
public final void testRecursiveSchedulerInObservable() {
Observable<Integer> obs = Observable.create(new OnSubscribe<Integer>() {
@Override
public void call(final Subscriber<? super Integer> observer) {
final Scheduler.Worker inner = getScheduler().createWorker();
observer.add(inner);
inner.schedule(new Action0() {
int i = 0;
@Override
public void call() {
if (i > 42) {
observer.onCompleted();
return;
}
observer.onNext(i++);
inner.schedule(this);
}
});
}
});
final AtomicInteger lastValue = new AtomicInteger();
obs.toBlocking().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 testConcurrentOnNextFailsValidation() throws InterruptedException {
final int count = 10;
final CountDownLatch latch = new CountDownLatch(count);
Observable<String> o = Observable.create(new OnSubscribe<String>() {
@Override
public void call(final Subscriber<? 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();
}
}
});
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.just("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.just("one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten")
.flatMap(new Func1<String, Observable<String>>() {
@Override
public Observable<String> call(final String v) {
return Observable.create(new OnSubscribe<String>() {
@Override
public void call(Subscriber<? super String> observer) {
observer.onNext("value_after_map-" + v);
observer.onCompleted();
}
}).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> extends Subscriber<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) {
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();
}
}
}
}