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

Side by Side Diff: utils/tests/pub/test_pub.dart

Issue 13370003: Fix a few bugs breaking the pub tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « utils/tests/pub/io_test.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 /// This should be called at the top of a test file to set up an appropriate 44 /// This should be called at the top of a test file to set up an appropriate
45 /// test configuration for the machine running the tests. 45 /// test configuration for the machine running the tests.
46 initConfig() { 46 initConfig() {
47 // If we aren't running on the bots, use the human-friendly config. 47 // If we aren't running on the bots, use the human-friendly config.
48 if (!runningOnBuildbot) { 48 if (!runningOnBuildbot) {
49 unittestConfiguration = new CommandLineConfiguration(); 49 unittestConfiguration = new CommandLineConfiguration();
50 } 50 }
51 } 51 }
52 52
53 /// Returns whether we're running on a Dart build bot. 53 /// Returns whether we're running on a Dart build bot.
54 bool runningOnBuildbot => 54 bool get runningOnBuildbot =>
55 Platform.environment.containsKey('BUILDBOT_BUILDERNAME'); 55 Platform.environment.containsKey('BUILDBOT_BUILDERNAME');
56 56
57 /// The current [HttpServer] created using [serve]. 57 /// The current [HttpServer] created using [serve].
58 var _server; 58 var _server;
59 59
60 /// The cached value for [_portCompleter]. 60 /// The cached value for [_portCompleter].
61 Completer<int> _portCompleterCache; 61 Completer<int> _portCompleterCache;
62 62
63 /// The completer for [port]. 63 /// The completer for [port].
64 Completer<int> get _portCompleter { 64 Completer<int> get _portCompleter {
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 bool matches(item, MatchState matchState) { 605 bool matches(item, MatchState matchState) {
606 if (item is! Pair) return false; 606 if (item is! Pair) return false;
607 return _firstMatcher.matches(item.first, matchState) && 607 return _firstMatcher.matches(item.first, matchState) &&
608 _lastMatcher.matches(item.last, matchState); 608 _lastMatcher.matches(item.last, matchState);
609 } 609 }
610 610
611 Description describe(Description description) { 611 Description describe(Description description) {
612 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); 612 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]);
613 } 613 }
614 } 614 }
OLDNEW
« no previous file with comments | « utils/tests/pub/io_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698