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

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

Issue 10796021: Use a lockfile to persist Pub's installed version constellation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Name change 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
Index: utils/tests/pub/lock_file_test.dart
diff --git a/utils/tests/pub/lock_file_test.dart b/utils/tests/pub/lock_file_test.dart
index f10ba25dfeea55e63865afca0a6351a44f999d54..cab8771783156feb7acbbdd0fea9cca08e13ac8e 100644
--- a/utils/tests/pub/lock_file_test.dart
+++ b/utils/tests/pub/lock_file_test.dart
@@ -11,12 +11,13 @@
#import('../../pub/source_registry.dart');
#import('../../pub/utils.dart');
#import('../../pub/version.dart');
+#import('../../pub/yaml/yaml.dart');
class MockSource extends Source {
final String name = 'mock';
final bool shouldCache = false;
- void validateDescription(String description) {
+ void validateDescription(String description, [bool fromLockFile=false]) {
description.endsWith(' desc');
}
@@ -165,6 +166,31 @@ packages:
''', sources);
});
});
+
+ group('serialize()', () {
+ test('dumps the lockfile to YAML', () {
+ var lockfile = new LockFile.empty();
+ lockfile.packages['foo'] =
+ new PackageId(mockSource, new Version.parse('1.2.3'), 'foo desc');
+ lockfile.packages['bar'] =
+ new PackageId(mockSource, new Version.parse('3.2.1'), 'bar desc');
+
+ expect(loadYaml(lockfile.serialize()), equals({
+ 'packages': {
+ 'foo': {
+ 'version': '1.2.3',
+ 'source': 'mock',
+ 'description': 'foo desc'
+ },
+ 'bar': {
+ 'version': '3.2.1',
+ 'source': 'mock',
+ 'description': 'bar desc'
+ }
+ }
+ }));
+ });
+ });
});
}

Powered by Google App Engine
This is Rietveld 408576698