| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #library('timer_test'); | 5 #library('timer_test'); |
| 6 | 6 |
| 7 #import("dart:isolate"); | 7 #import("dart:isolate"); |
| 8 #import('../../pkg/unittest/unittest.dart'); |
| 8 | 9 |
| 9 class TimerTest { | 10 const int _STARTTIMEOUT = 1050; |
| 11 const int _DECREASE = 200; |
| 12 const int _ITERATIONS = 5; |
| 10 | 13 |
| 11 static const int _STARTTIMEOUT = 1050; | 14 int _startTime; |
| 12 static const int _DECREASE = 200; | 15 int _timeout; |
| 13 static const int _ITERATIONS = 5; | 16 int _iteration; |
| 14 | 17 |
| 15 static void testSimpleTimer() { | 18 void timeoutHandler(Timer timer) { |
| 19 int endTime = (new Date.now()).millisecondsSinceEpoch; |
| 20 expect(true, (endTime - _startTime) >= _timeout); |
| 21 if (_iteration < _ITERATIONS) { |
| 22 _iteration++; |
| 23 _timeout = _timeout - _DECREASE; |
| 24 _startTime = (new Date.now()).millisecondsSinceEpoch; |
| 25 new Timer(_timeout, expectAsync1(timeoutHandler)); |
| 26 } |
| 27 } |
| 16 | 28 |
| 17 void timeoutHandler(Timer timer) { | 29 main() { |
| 18 int endTime = (new Date.now()).millisecondsSinceEpoch; | 30 test("timeout test", () { |
| 19 Expect.equals(true, (endTime - _startTime) >= _timeout); | |
| 20 if (_iteration < _ITERATIONS) { | |
| 21 _iteration++; | |
| 22 _timeout = _timeout - _DECREASE; | |
| 23 _startTime = (new Date.now()).millisecondsSinceEpoch; | |
| 24 new Timer(_timeout, timeoutHandler); | |
| 25 } | |
| 26 } | |
| 27 | |
| 28 _iteration = 0; | 31 _iteration = 0; |
| 29 _timeout = _STARTTIMEOUT; | 32 _timeout = _STARTTIMEOUT; |
| 30 _startTime = (new Date.now()).millisecondsSinceEpoch; | 33 _startTime = (new Date.now()).millisecondsSinceEpoch; |
| 31 new Timer(_timeout, timeoutHandler); | 34 new Timer(_timeout, expectAsync1(timeoutHandler)); |
| 32 } | 35 }); |
| 33 | |
| 34 static void testMain() { | |
| 35 testSimpleTimer(); | |
| 36 } | |
| 37 | |
| 38 static int _startTime; | |
| 39 static int _timeout; | |
| 40 static int _iteration; | |
| 41 } | 36 } |
| 42 | |
| 43 main() { | |
| 44 TimerTest.testMain(); | |
| 45 } | |
| OLD | NEW |