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

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

Issue 10938003: Don't extract the name of a package from its description. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 3 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
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/tests/pub/pub_install_git_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3a4651f856306c1f27de3f5bc00c0d761d957ba9..da334aa3e51f74183292227e6c4dc2ed78c9298c 100644
--- a/utils/tests/pub/lock_file_test.dart
+++ b/utils/tests/pub/lock_file_test.dart
@@ -18,7 +18,7 @@ class MockSource extends Source {
final bool shouldCache = false;
void validateDescription(String description, [bool fromLockFile=false]) {
- description.endsWith(' desc');
+ if (!description.endsWith(' desc')) throw new FormatException();
}
String packageName(String description) {
@@ -141,18 +141,6 @@ packages:
}, throwsFormatException);
});
- test("throws if the source name doesn't match the given name", () {
- expect(() {
- new LockFile.parse('''
-packages:
- foo:
- version: 1.2.3
- source: mock
- description: notfoo desc
-''', sources);
- }, throwsFormatException);
- });
-
test("ignores extra stuff in file", () {
var lockFile = new LockFile.parse('''
extra:
@@ -170,10 +158,10 @@ packages:
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');
+ lockfile.packages['foo'] = new PackageId(
+ 'foo', mockSource, new Version.parse('1.2.3'), 'foo desc');
+ lockfile.packages['bar'] = new PackageId(
+ 'foo', mockSource, new Version.parse('3.2.1'), 'bar desc');
expect(loadYaml(lockfile.serialize()), equals({
'packages': {
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/tests/pub/pub_install_git_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698