Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: pkg/scheduled_test/test/scheduled_test/timeout_test.dart

Issue 812253002: Delete a bunch of packages that are now on GitHub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Un-delete http Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/scheduled_test/test/scheduled_test/timeout_test.dart
diff --git a/pkg/scheduled_test/test/scheduled_test/timeout_test.dart b/pkg/scheduled_test/test/scheduled_test/timeout_test.dart
deleted file mode 100644
index d71eb67806b33f6c8ecbc32ff44eefa8f30cc7f9..0000000000000000000000000000000000000000
--- a/pkg/scheduled_test/test/scheduled_test/timeout_test.dart
+++ /dev/null
@@ -1,203 +0,0 @@
-// 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 'package:scheduled_test/scheduled_test.dart';
-import 'package:scheduled_test/src/mock_clock.dart' as mock_clock;
-
-import 'package:metatest/metatest.dart';
-import '../utils.dart';
-
-void main() => initTests(_test);
-
-void _test(message) {
- initMetatest(message);
-
- setUpTimeout();
-
- expectTestsPass("a single task that takes too long will cause a timeout "
- "error", () {
- mock_clock.mock().run();
- var errors;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 1);
-
- currentSchedule.onException.schedule(() {
- errors = currentSchedule.errors;
- });
-
- schedule(() => sleep(2));
- });
-
- test('test 2', () {
- expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
- expect(errors.map((e) => e.error), equals(["The schedule timed out after "
- "0:00:00.001000 of inactivity."]));
- });
- }, passing: ['test 2']);
-
- expectTestsPass("an out-of-band callback that takes too long will cause a "
- "timeout error", () {
- mock_clock.mock().run();
- var errors;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 1);
-
- currentSchedule.onException.schedule(() {
- errors = currentSchedule.errors;
- });
-
- sleep(2).then(wrapAsync((_) => expect('foo', equals('foo'))));
- });
-
- test('test 2', () {
- expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
- expect(errors.map((e) => e.error), equals(["The schedule timed out after "
- "0:00:00.001000 of inactivity."]));
- });
- }, passing: ['test 2']);
-
- expectTestsPass("each task resets the timeout timer", () {
- mock_clock.mock().run();
- test('test', () {
- currentSchedule.timeout = new Duration(milliseconds: 2);
-
- schedule(() => sleep(1));
- schedule(() => sleep(1));
- schedule(() => sleep(1));
- });
- });
-
- expectTestsPass("setting up the test doesn't trigger a timeout", () {
- var clock = mock_clock.mock();
- test('test', () {
- currentSchedule.timeout = new Duration(milliseconds: 1);
-
- clock.tick(2);
- schedule(() => expect('foo', equals('foo')));
- });
- });
-
- expectTestsPass("an out-of-band error that's signaled after a timeout but "
- "before the test completes is registered", () {
- mock_clock.mock().run();
- var errors;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 3);
-
- currentSchedule.onException.schedule(() => sleep(2));
- currentSchedule.onException.schedule(() {
- errors = currentSchedule.errors;
- });
-
- sleep(4).then(wrapAsync((_) {
- throw 'out-of-band';
- }));
- });
-
- test('test 2', () {
- expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
- expect(errors.map((e) => e.error), equals([
- "The schedule timed out after 0:00:00.003000 of inactivity.",
- "out-of-band"
- ]));
- });
- }, passing: ['test 2']);
-
- expectTestsPass("an out-of-band error that's signaled after a timeout but "
- "before the test completes plays nicely with other out-of-band callbacks",
- () {
- mock_clock.mock().run();
- var errors;
- var onExceptionCallbackRun = false;
- var onCompleteRunAfterOnExceptionCallback = false;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 2);
-
- currentSchedule.onException.schedule(() {
- sleep(1).then(wrapAsync((_) {
- onExceptionCallbackRun = true;
- }));
- });
-
- currentSchedule.onComplete.schedule(() {
- onCompleteRunAfterOnExceptionCallback = onExceptionCallbackRun;
- });
-
- sleep(3).then(wrapAsync((_) {
- throw 'out-of-band';
- }));
- });
-
- test('test 2', () {
- expect(onCompleteRunAfterOnExceptionCallback, isTrue);
- });
- }, passing: ['test 2']);
-
- expectTestsPass("a task that times out while waiting to handle an "
- "out-of-band error records both", () {
- mock_clock.mock().run();
- var errors;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 2);
-
- currentSchedule.onException.schedule(() {
- errors = currentSchedule.errors;
- });
-
- schedule(() => sleep(4));
- sleep(1).then((_) => currentSchedule.signalError('out-of-band'));
- });
-
- test('test 2', () {
- expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
- expect(errors.map((e) => e.error), equals([
- "out-of-band",
- "The schedule timed out after 0:00:00.002000 of inactivity."
- ]));
- });
- }, passing: ['test 2']);
-
- expectTestsPass("a task that has an error then times out waiting for an "
- "out-of-band callback records both", () {
- mock_clock.mock().run();
- var errors;
- test('test 1', () {
- currentSchedule.timeout = new Duration(milliseconds: 2);
-
- currentSchedule.onException.schedule(() {
- errors = currentSchedule.errors;
- });
-
- schedule(() {
- throw 'error';
- });
- wrapFuture(sleep(3));
- });
-
- test('test 2', () {
- expect(errors, everyElement(new isInstanceOf<ScheduleError>()));
- expect(errors.map((e) => e.error), equals([
- "error",
- "The schedule timed out after 0:00:00.002000 of inactivity."
- ]));
- });
- }, passing: ['test 2']);
-
- expectTestsPass("currentSchedule.heartbeat resets the timeout timer", () {
- mock_clock.mock().run();
- test('test', () {
- currentSchedule.timeout = new Duration(milliseconds: 3);
-
- schedule(() {
- return sleep(2).then((_) {
- currentSchedule.heartbeat();
- return sleep(2);
- });
- });
- });
- });
-
- // TODO(nweiz): test out-of-band post-timeout errors that are detected after
- // the test finishes once we can detect top-level errors (issue 8417).
-}

Powered by Google App Engine
This is Rietveld 408576698