aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidAsyncTest/src/com/koushikdutta/async/test/FutureTests.java
blob: 678ed2c73beb877c6ee9b32a2673881a305869f6 (plain)
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
package com.koushikdutta.async.test;

import android.os.Handler;
import android.os.Looper;

import com.koushikdutta.async.AsyncServer;
import com.koushikdutta.async.callback.CompletedCallback;
import com.koushikdutta.async.callback.ContinuationCallback;
import com.koushikdutta.async.future.Continuation;
import com.koushikdutta.async.future.FutureCallback;
import com.koushikdutta.async.future.SimpleFuture;

import junit.framework.TestCase;

import java.util.ArrayList;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

public class FutureTests extends TestCase {
    private static class IntegerFuture extends SimpleFuture<Integer> {
        private IntegerFuture() {
        }

        public static IntegerFuture create(final int value, final long timeout) {
            final IntegerFuture ret = new IntegerFuture();
            
            new Thread() {
                public void run() {
                    try {
                        Thread.sleep(timeout);
                        ret.setComplete(value);
                    }
                    catch (Exception e) {
                        ret.setComplete(e);
                    }
                };
            }.start();
            
            return ret;
        }
    }

    public void testFutureCallback() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final IntegerFuture future = IntegerFuture.create(20, 1000);
        final Thread mainThread = Thread.currentThread();
        future.setCallback(new FutureCallback<Integer>() {
            @Override
            public void onCompleted(Exception e, Integer result) {
                assertNotSame(Thread.currentThread(), mainThread);
                semaphore.release();
            }
        });

        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
    }

    public void testFutureFinishedCallback() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final IntegerFuture future = IntegerFuture.create(20, 1);
        Thread.sleep(1000);
        final Thread mainThread = Thread.currentThread();
        future.setCallback(new FutureCallback<Integer>() {
            @Override
            public void onCompleted(Exception e, Integer result) {
                assertEquals(Thread.currentThread(), mainThread);
                semaphore.release();
            }
        });

        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
    }

    public void testFutureCancel() throws Exception {
        // test a future being cancelled while waiting
        final IntegerFuture future = IntegerFuture.create(20, 2000);
        
        new Thread() {
            public void run() {
                try {
                    Thread.sleep(1000);
                }
                catch (InterruptedException e) {
                }
                future.cancel();
            };
        }
        .start();

        try {
            future.get(3000, TimeUnit.MILLISECONDS);
            // this should never reach here as it was cancelled
            fail();
        }
        catch (TimeoutException e) {
            // timeout should also fail, since it was cancelled
            fail();
        }
        catch (ExecutionException e) {
            // execution exception is correct, make sure inner exception is cancellation
            assertTrue(e.getCause() instanceof CancellationException);
        }
    }
    
    public void testIntegerFuture() throws Exception {
        IntegerFuture i = IntegerFuture.create(10, 500L);
        assertEquals((int)i.get(), 10);
    }
    
    int someValue;
    public void testContinuation() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        someValue = 0;
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                assertNull(ex);
                semaphore.release();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, final CompletedCallback next) throws Exception {
                new Thread() {
                    public void run() {
                        someValue++;
                        next.onCompleted(null);
                    };
                }.start();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, final CompletedCallback next) throws Exception {
                new Thread() {
                    public void run() {
                        someValue++;
                        next.onCompleted(null);
                    };
                }.start();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, final CompletedCallback next) throws Exception {
                someValue++;
                next.onCompleted(null);
            }
        });
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();
        
        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
        assertEquals(someValue, 3);
    }
    
    public void testFutureChain() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                semaphore.release();
            }
        });
        
        IntegerFuture i1;
        c.add(i1 = IntegerFuture.create(2, 200));
        
        IntegerFuture i2;
        c.add(i2 = IntegerFuture.create(3, 200));
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();

        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
        
        assertEquals((int)i1.get(), 2);
        assertEquals((int)i2.get(), 3);
    }
    
    public void testContinuationFail() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                assertNotNull(ex);
                semaphore.release();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, CompletedCallback next) throws Exception {
                throw new Exception("fail");
            }
        });
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();
        
        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
    }
    
    public void testContinuationCancel() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                fail();
                semaphore.release();
            }
        });
        c.setCancelCallback(new Runnable() {
            @Override
            public void run() {
                semaphore.release();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, CompletedCallback next) throws Exception {
                Thread.sleep(10000);
            }
        });
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();
        
        new Thread() {
            public void run() {
                try {
                    Thread.sleep(1000);
                }
                catch (Exception e) {
                }
                c.cancel();
            };
        }.start();
        
        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
    }
    
    
    public void testChildContinuationCancel() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                fail();
                semaphore.release();
            }
        });
        c.setCancelCallback(new Runnable() {
            @Override
            public void run() {
                semaphore.release();
            }
        });
        
        c.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, CompletedCallback next) throws Exception {
                Thread.sleep(10000);
            }
        });
        
        final Continuation child = new Continuation();
        child.add(new ContinuationCallback() {
            @Override
            public void onContinue(Continuation continuation, CompletedCallback next) throws Exception {
                Thread.sleep(10000);
            }
        });

        c.add(child);
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();
        
        new Thread() {
            public void run() {
                try {
                    Thread.sleep(1000);
                }
                catch (Exception e) {
                }
                child.cancel();
            };
        }.start();
        
        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
    }
    
    public void testContinuationArray() throws Exception {
        final ArrayList<Integer> results = new ArrayList<Integer>();
        final Semaphore semaphore = new Semaphore(0);
        final Continuation c = new Continuation(new CompletedCallback() {
            @Override
            public void onCompleted(Exception ex) {
                semaphore.release();
            }
        });
        
        for (int i = 0; i < 10; i++) {
            final int j = i;
            c.add(new ContinuationCallback() {
                @Override
                public void onContinue(Continuation continuation, CompletedCallback next) throws Exception {
                    results.add(j);
                    next.onCompleted(null);
                }
            });
        }
        
        new Thread() {
            public void run() {
                c.start();
            };
        }.start();
        
        assertTrue(semaphore.tryAcquire(3000, TimeUnit.MILLISECONDS));
        
        assertEquals(10, results.size());
        for (int i = 0; i < 10; i++) {
            assertEquals((int)results.get(i), i);
        }
    }

    public void testReentrancy() throws Exception {
        // verify reentrancy will work
        
        assertNotNull(Looper.myLooper());
        
        final Thread originalThread = Thread.currentThread();
        final TriggerFuture trigger = new TriggerFuture();
        final Handler handler = new Handler();
        
        AsyncServer.getDefault().post(new Runnable() {
            @Override
            public void run() {
                AsyncServer.post(handler, new Runnable() {
                    @Override
                    public void run() {
                        final TriggerFuture trigger2 = new TriggerFuture();

                        AsyncServer.getDefault().post(new Runnable() {
                            @Override
                            public void run() {
                                AsyncServer.post(handler, new Runnable() {
                                    @Override
                                    public void run() {
                                        assertEquals(Thread.currentThread(), originalThread);
                                        trigger2.trigger();
                                    }
                                });
                            }
                        });
                        
                        try {
                            assertEquals((int)trigger2.get(5000, TimeUnit.MILLISECONDS), 2020);
                        }
                        catch (Exception e) {
                            fail();
                        }

                        // callstack here should be on top of trigger.get below.
                        // reentrant.
                        assertEquals(Thread.currentThread(), originalThread);
                        trigger.trigger();
                    }
                });
            }
        });
        
        // trigger.get will do a reentrant block.
        assertEquals((int)trigger.get(5000, TimeUnit.MILLISECONDS), 2020);
    }

    public void testPostCancelCallback() throws Exception {
        SimpleFuture<String> future = new SimpleFuture<String>();
        final Semaphore semaphore = new Semaphore(0);
        future.cancel();
        future.setCallback(new FutureCallback<String>() {
            @Override
            public void onCompleted(Exception e, String result) {
                assertTrue(e instanceof CancellationException);
                semaphore.release();
            }
        });
        semaphore.tryAcquire(1000, TimeUnit.MILLISECONDS);
        assertNull(future.getCallback());
    }

    public void testPreCancelCallback() throws Exception {
        final Semaphore semaphore = new Semaphore(0);
        SimpleFuture<String> future = new SimpleFuture<String>();
        future.setCallback(new FutureCallback<String>() {
            @Override
            public void onCompleted(Exception e, String result) {
                assertTrue(e instanceof CancellationException);
                semaphore.release();
            }
        });
        assertNotNull(future.getCallback());
        future.cancel();
        semaphore.tryAcquire(1000, TimeUnit.MILLISECONDS);
        assertNull(future.getCallback());
    }
}