OLD | NEW |
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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 return gitlib.isInstalled.then((installed) { | 600 return gitlib.isInstalled.then((installed) { |
601 if (installed) return; | 601 if (installed) return; |
602 if (runningOnBuildbot) return; | 602 if (runningOnBuildbot) return; |
603 currentSchedule.abort(); | 603 currentSchedule.abort(); |
604 }); | 604 }); |
605 }, 'ensuring that Git is installed'); | 605 }, 'ensuring that Git is installed'); |
606 } | 606 } |
607 | 607 |
608 /// Create a lock file for [package] without running `pub install`. | 608 /// Create a lock file for [package] without running `pub install`. |
609 /// | 609 /// |
610 /// This creates a lock file with only path dependencies. [dependencies] is a | 610 /// This creates a lock file with only path dependencies. [sandbox] is a list of |
611 /// map of dependency names to paths. [pkg] is a list of packages in the Dart | 611 /// dependencies to be found in the sandbox directory. [pkg] is a list of |
612 /// repo's "pkg" directory; each package listed here and all its dependencies | 612 /// packages in the Dart repo's "pkg" directory; each package listed here and |
613 /// will be linked to the version in the Dart repo. | 613 /// all its dependencies will be linked to the version in the Dart repo. |
614 void createLockFile(String package, Map<String, String> dependencies, | 614 void createLockFile(String package, {Iterable<String> sandbox, |
615 {Iterable<String> pkg}) { | 615 Iterable<String> pkg}) { |
| 616 var dependencies = {}; |
| 617 |
| 618 if (sandbox != null) { |
| 619 for (var package in sandbox) { |
| 620 dependencies[package] = '../$package'; |
| 621 } |
| 622 } |
| 623 |
616 if (pkg != null) { | 624 if (pkg != null) { |
617 var pkgDir = path.absolute(path.join( | 625 var pkgDir = path.absolute(path.join( |
618 path.dirname(Platform.executable), | 626 path.dirname(Platform.executable), |
619 '..', '..', '..', '..', 'pkg')); | 627 '..', '..', '..', '..', 'pkg')); |
620 | 628 |
621 _addPackage(String package) { | 629 _addPackage(String package) { |
622 if (dependencies.containsKey(package)) return; | 630 if (dependencies.containsKey(package)) return; |
623 var packagePath = path.join(pkgDir, package); | 631 var packagePath = path.join(pkgDir, package); |
624 dependencies[package] = packagePath; | 632 dependencies[package] = packagePath; |
625 var pubspec = loadYaml( | 633 var pubspec = loadYaml( |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 bool matches(item, Map matchState) { | 836 bool matches(item, Map matchState) { |
829 if (item is! Pair) return false; | 837 if (item is! Pair) return false; |
830 return _firstMatcher.matches(item.first, matchState) && | 838 return _firstMatcher.matches(item.first, matchState) && |
831 _lastMatcher.matches(item.last, matchState); | 839 _lastMatcher.matches(item.last, matchState); |
832 } | 840 } |
833 | 841 |
834 Description describe(Description description) { | 842 Description describe(Description description) { |
835 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); | 843 description.addAll("(", ", ", ")", [_firstMatcher, _lastMatcher]); |
836 } | 844 } |
837 } | 845 } |
OLD | NEW |