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

Unified Diff: utils/tests/pub/version_solver_test.dart

Issue 10790079: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« utils/tests/pub/test_pub.dart ('K') | « utils/tests/pub/test_pub.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/version_solver_test.dart
diff --git a/utils/tests/pub/version_solver_test.dart b/utils/tests/pub/version_solver_test.dart
index f5d5d4f6d45588386e5842dc6e0e4546526a2549..6f56fce5f334c0dfe29f6f4c6ccf7c8ef8b1aeda 100644
--- a/utils/tests/pub/version_solver_test.dart
+++ b/utils/tests/pub/version_solver_test.dart
@@ -7,6 +7,7 @@
#import('dart:io');
#import('dart:isolate');
+#import('../../pub/lock_file.dart');
#import('../../pub/package.dart');
#import('../../pub/pubspec.dart');
#import('../../pub/source.dart');
@@ -128,6 +129,61 @@ main() {
'bar': '1.1.0'
});
+ testResolve('with compatible locked dependency', {
+ 'myapp 0.0.0': {
+ 'foo': 'any'
+ },
+ 'foo 1.0.0': { 'bar': '1.0.0' },
+ 'foo 1.0.1': { 'bar': '1.0.1' },
+ 'foo 1.0.2': { 'bar': '1.0.2' },
+ 'bar 1.0.0': {},
+ 'bar 1.0.1': {},
+ 'bar 1.0.2': {}
+ }, lockfile: {
+ 'foo': '1.0.1'
+ }, result: {
+ 'myapp': '0.0.0',
+ 'foo': '1.0.1',
+ 'bar': '1.0.1'
+ });
+
+ testResolve('with incompatible locked dependency', {
+ 'myapp 0.0.0': {
+ 'foo': '>1.0.1'
+ },
+ 'foo 1.0.0': { 'bar': '1.0.0' },
+ 'foo 1.0.1': { 'bar': '1.0.1' },
+ 'foo 1.0.2': { 'bar': '1.0.2' },
+ 'bar 1.0.0': {},
+ 'bar 1.0.1': {},
+ 'bar 1.0.2': {}
+ }, lockfile: {
+ 'foo': '1.0.1'
+ }, result: {
+ 'myapp': '0.0.0',
+ 'foo': '1.0.2',
+ 'bar': '1.0.2'
+ });
+
+ testResolve('with unrelated locked dependency', {
+ 'myapp 0.0.0': {
+ 'foo': 'any'
+ },
+ 'foo 1.0.0': { 'bar': '1.0.0' },
+ 'foo 1.0.1': { 'bar': '1.0.1' },
+ 'foo 1.0.2': { 'bar': '1.0.2' },
+ 'bar 1.0.0': {},
+ 'bar 1.0.1': {},
+ 'bar 1.0.2': {},
+ 'baz 1.0.0': {}
+ }, lockfile: {
+ 'baz': '1.0.0'
+ }, result: {
+ 'myapp': '0.0.0',
+ 'foo': '1.0.2',
+ 'bar': '1.0.2'
+ });
+
testResolve('dependency back onto root package', {
'myapp 1.0.0': {
'foo': '1.0.0'
@@ -226,7 +282,7 @@ main() {
// can keep track of server traffic.
}
-testResolve(description, packages, [result, error]) {
+testResolve(description, packages, [lockfile, result, error]) {
test(description, () {
var sources = new SourceRegistry();
source1 = new MockSource('mock1');
@@ -266,8 +322,16 @@ testResolve(description, packages, [result, error]) {
});
}
+ var realLockFile = new LockFile.empty();
+ if (lockfile != null) {
+ lockfile.forEach((name, version) {
+ version = new Version.parse(version);
+ realLockFile.packages[name] = new PackageId(source1, version, name);
+ });
+ }
+
// Resolve the versions.
- var future = resolveVersions(sources, root);
+ var future = resolveVersions(sources, root, realLockFile);
if (result != null) {
expect(future, completion(predicate((actualResult) {
« utils/tests/pub/test_pub.dart ('K') | « utils/tests/pub/test_pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698