Index: pkg/scheduled_test/test/scheduled_test/current_schedule_current_task_test.dart |
diff --git a/pkg/scheduled_test/test/scheduled_test/current_schedule_current_task_test.dart b/pkg/scheduled_test/test/scheduled_test/current_schedule_current_task_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f03dbcf12ed78d227e74e33debfac1eef34ecbc8 |
--- /dev/null |
+++ b/pkg/scheduled_test/test/scheduled_test/current_schedule_current_task_test.dart |
@@ -0,0 +1,74 @@ |
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+import 'dart:async'; |
+import 'dart:io'; |
+ |
+import 'package:scheduled_test/scheduled_test.dart'; |
+ |
+import '../metatest.dart'; |
+import '../utils.dart'; |
+ |
+void main() { |
+ metaSetUp(() { |
+ // TODO(nweiz): We used to only increase the timeout to 10s for the Windows |
+ // bots, but the Linux and Mac bots have started taking upwards of 5s when |
+ // running pumpEventQueue, so we're increasing the timeout across the board |
+ // (see issue 9248). |
+ currentSchedule.timeout = new Duration(seconds: 10); |
+ }); |
+ |
+ expectTestsPass('currentSchedule.currentTask returns the current task while ' |
+ 'executing a task', () { |
+ test('test', () { |
+ schedule(() => expect('foo', equals('foo')), 'task 1'); |
+ |
+ schedule(() { |
+ expect(currentSchedule.currentTask.description, equals('task 2')); |
+ }, 'task 2'); |
+ |
+ schedule(() => expect('bar', equals('bar')), 'task 3'); |
+ }); |
+ }); |
+ |
+ expectTestsPass('currentSchedule.currentTask is null before the schedule has ' |
+ 'started', () { |
+ test('test', () { |
+ schedule(() => expect('foo', equals('foo'))); |
+ |
+ expect(currentSchedule.currentTask, isNull); |
+ }); |
+ }); |
+ |
+ expectTestsPass('currentSchedule.currentTask is null after the schedule has ' |
+ 'completed', () { |
+ test('test', () { |
+ schedule(() { |
+ expect(pumpEventQueue().then((_) { |
+ expect(currentSchedule.currentTask, isNull); |
+ }), completes); |
+ }); |
+ |
+ schedule(() => expect('foo', equals('foo'))); |
+ }); |
+ }); |
+ |
+ expectTestsPass('currentSchedule.currentQueue returns the current queue while ' |
Bob Nystrom
2013/04/02 22:03:17
long line.
nweiz
2013/04/02 22:38:44
Done.
|
+ 'executing a task', () { |
+ test('test', () { |
+ schedule(() { |
+ expect(currentSchedule.currentQueue.name, equals('tasks')); |
+ }); |
+ }); |
+ }); |
+ |
+ expectTestsPass('currentSchedule.currentQueue is tasks before the schedule ' |
+ 'has started', () { |
+ test('test', () { |
+ schedule(() => expect('foo', equals('foo'))); |
+ |
+ expect(currentSchedule.currentQueue.name, equals('tasks')); |
+ }); |
+ }); |
+} |