forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSchedulerTests.java
More file actions
125 lines (108 loc) · 4.64 KB
/
SchedulerTests.java
File metadata and controls
125 lines (108 loc) · 4.64 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
package rx.schedulers;
import rx.Observable;
import rx.Observer;
import rx.Scheduler;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
final class SchedulerTests {
private SchedulerTests() {
// No instances.
}
/**
* Verifies that the given Scheduler delivers unhandled errors to its executing thread's
* {@link java.lang.Thread.UncaughtExceptionHandler}.
* <p>
* Schedulers which execute on a separate thread from their calling thread should exhibit this behavior. Schedulers
* which execute on their calling thread may not.
*/
static void testUnhandledErrorIsDeliveredToThreadHandler(Scheduler scheduler) throws InterruptedException {
Thread.UncaughtExceptionHandler originalHandler = Thread.getDefaultUncaughtExceptionHandler();
try {
CapturingUncaughtExceptionHandler handler = new CapturingUncaughtExceptionHandler();
Thread.setDefaultUncaughtExceptionHandler(handler);
IllegalStateException error = new IllegalStateException("Should be delivered to handler");
Observable.error(error)
.subscribeOn(scheduler)
.subscribe();
if (!handler.completed.await(3, TimeUnit.SECONDS)) {
fail("timed out");
}
assertEquals("Should have received exactly 1 exception", 1, handler.count);
Throwable cause = handler.caught;
while (cause != null) {
if (error.equals(cause)) break;
if (cause == cause.getCause()) break;
cause = cause.getCause();
}
assertEquals("Our error should have been delivered to the handler", error, cause);
} finally {
Thread.setDefaultUncaughtExceptionHandler(originalHandler);
}
}
/**
* Verifies that the given Scheduler does not deliver handled errors to its executing Thread's
* {@link java.lang.Thread.UncaughtExceptionHandler}.
* <p>
* This is a companion test to {@link #testUnhandledErrorIsDeliveredToThreadHandler}, and is needed only for the
* same Schedulers.
*/
static void testHandledErrorIsNotDeliveredToThreadHandler(Scheduler scheduler) throws InterruptedException {
Thread.UncaughtExceptionHandler originalHandler = Thread.getDefaultUncaughtExceptionHandler();
try {
CapturingUncaughtExceptionHandler handler = new CapturingUncaughtExceptionHandler();
CapturingObserver<Object> observer = new CapturingObserver<Object>();
Thread.setDefaultUncaughtExceptionHandler(handler);
IllegalStateException error = new IllegalStateException("Should be delivered to handler");
Observable.error(error)
.subscribeOn(scheduler)
.subscribe(observer);
if (!observer.completed.await(3, TimeUnit.SECONDS)) {
fail("timed out");
}
assertEquals("Handler should not have received anything", 0, handler.count);
assertEquals("Observer should have received an error", 1, observer.errorCount);
assertEquals("Observer should not have received a next value", 0, observer.nextCount);
Throwable cause = observer.error;
while (cause != null) {
if (error.equals(cause)) break;
if (cause == cause.getCause()) break;
cause = cause.getCause();
}
assertEquals("Our error should have been delivered to the observer", error, cause);
} finally {
Thread.setDefaultUncaughtExceptionHandler(originalHandler);
}
}
private static final class CapturingUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
int count = 0;
Throwable caught;
CountDownLatch completed = new CountDownLatch(1);
@Override
public void uncaughtException(Thread t, Throwable e) {
count++;
caught = e;
completed.countDown();
}
}
private static final class CapturingObserver<T> implements Observer<T> {
CountDownLatch completed = new CountDownLatch(1);
int errorCount = 0;
int nextCount = 0;
Throwable error;
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable e) {
errorCount++;
error = e;
completed.countDown();
}
@Override
public void onNext(T t) {
nextCount++;
}
}
}