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

Side by Side Diff: dart/sdk/lib/_internal/pub/test/test_pub.dart

Issue 23444032: Pub integration tests sometimes need more than 20 seconds. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Null means infinite timeout. Created 7 years, 3 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 /// Test infrastructure for testing pub. Unlike typical unit tests, most pub 5 /// Test infrastructure for testing pub. Unlike typical unit tests, most pub
6 /// tests are integration tests that stage some stuff on the file system, run 6 /// tests are integration tests that stage some stuff on the file system, run
7 /// pub, and then validate the results. This library provides an API to build 7 /// pub, and then validate the results. This library provides an API to build
8 /// tests like that. 8 /// tests like that.
9 library test_pub; 9 library test_pub;
10 10
(...skipping 21 matching lines...) Expand all
32 import '../lib/src/system_cache.dart'; 32 import '../lib/src/system_cache.dart';
33 import '../lib/src/utils.dart'; 33 import '../lib/src/utils.dart';
34 import '../lib/src/validator.dart'; 34 import '../lib/src/validator.dart';
35 import 'descriptor.dart' as d; 35 import 'descriptor.dart' as d;
36 36
37 /// This should be called at the top of a test file to set up an appropriate 37 /// This should be called at the top of a test file to set up an appropriate
38 /// test configuration for the machine running the tests. 38 /// test configuration for the machine running the tests.
39 initConfig() { 39 initConfig() {
40 useCompactVMConfiguration(); 40 useCompactVMConfiguration();
41 filterStacks = true; 41 filterStacks = true;
42 unittestConfiguration.timeout = null;
42 } 43 }
43 44
44 /// Returns whether we're running on a Dart build bot. 45 /// Returns whether we're running on a Dart build bot.
45 bool get runningOnBuildbot => 46 bool get runningOnBuildbot =>
46 Platform.environment.containsKey('BUILDBOT_BUILDERNAME'); 47 Platform.environment.containsKey('BUILDBOT_BUILDERNAME');
47 48
48 /// The current [HttpServer] created using [serve]. 49 /// The current [HttpServer] created using [serve].
49 var _server; 50 var _server;
50 51
51 /// The list of paths that have been requested from the server since the last 52 /// The list of paths that have been requested from the server since the last
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 bool matches(item, Map matchState) { 786 bool matches(item, Map matchState) {
786 if (item is! Pair) return false; 787 if (item is! Pair) return false;
787 return _firstMatcher.matches(item.first, matchState) && 788 return _firstMatcher.matches(item.first, matchState) &&
788 _lastMatcher.matches(item.last, matchState); 789 _lastMatcher.matches(item.last, matchState);
789 } 790 }
790 791
791 Description describe(Description description) { 792 Description describe(Description description) {
792 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); 793 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]);
793 } 794 }
794 } 795 }
OLDNEW
« no previous file with comments | « dart/sdk/lib/_internal/pub/pub.status ('k') | dart/sdk/lib/_internal/pub/test/update/git/do_not_update_if_unneeded_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698