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

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

Issue 14253005: Migrate pub away from throwing strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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/descriptor/tar.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 case "git": 464 case "git":
465 source = new GitSource(); 465 source = new GitSource();
466 break; 466 break;
467 case "hosted": 467 case "hosted":
468 source = new HostedSource(); 468 source = new HostedSource();
469 break; 469 break;
470 case "path": 470 case "path":
471 source = new PathSource(); 471 source = new PathSource();
472 break; 472 break;
473 default: 473 default:
474 throw 'Unknown source "$sourceName"'; 474 throw new Exception('Unknown source "$sourceName"');
475 } 475 }
476 476
477 result[_packageName(sourceName, dependency[sourceName])] = dependency; 477 result[_packageName(sourceName, dependency[sourceName])] = dependency;
478 } 478 }
479 return result; 479 return result;
480 }); 480 });
481 } 481 }
482 482
483 /// Return the name for the package described by [description] and from 483 /// Return the name for the package described by [description] and from
484 /// [sourceName]. 484 /// [sourceName].
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 bool matches(item, MatchState matchState) { 610 bool matches(item, MatchState matchState) {
611 if (item is! Pair) return false; 611 if (item is! Pair) return false;
612 return _firstMatcher.matches(item.first, matchState) && 612 return _firstMatcher.matches(item.first, matchState) &&
613 _lastMatcher.matches(item.last, matchState); 613 _lastMatcher.matches(item.last, matchState);
614 } 614 }
615 615
616 Description describe(Description description) { 616 Description describe(Description description) {
617 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); 617 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]);
618 } 618 }
619 } 619 }
OLDNEW
« no previous file with comments | « utils/tests/pub/descriptor/tar.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698