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

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

Issue 23582003: Use filtered stacks in pub, barback, and watcher tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « pkg/watcher/test/utils.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/safe_http_server.dart'; 32 import '../lib/src/safe_http_server.dart';
33 import '../lib/src/system_cache.dart'; 33 import '../lib/src/system_cache.dart';
34 import '../lib/src/utils.dart'; 34 import '../lib/src/utils.dart';
35 import '../lib/src/validator.dart'; 35 import '../lib/src/validator.dart';
36 import 'descriptor.dart' as d; 36 import 'descriptor.dart' as d;
37 37
38 /// This should be called at the top of a test file to set up an appropriate 38 /// This should be called at the top of a test file to set up an appropriate
39 /// test configuration for the machine running the tests. 39 /// test configuration for the machine running the tests.
40 initConfig() { 40 initConfig() {
41 useCompactVMConfiguration(); 41 useCompactVMConfiguration();
42 filterStacks = true;
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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 bool matches(item, Map matchState) { 785 bool matches(item, Map matchState) {
785 if (item is! Pair) return false; 786 if (item is! Pair) return false;
786 return _firstMatcher.matches(item.first, matchState) && 787 return _firstMatcher.matches(item.first, matchState) &&
787 _lastMatcher.matches(item.last, matchState); 788 _lastMatcher.matches(item.last, matchState);
788 } 789 }
789 790
790 Description describe(Description description) { 791 Description describe(Description description) {
791 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); 792 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]);
792 } 793 }
793 } 794 }
OLDNEW
« no previous file with comments | « pkg/watcher/test/utils.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698