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

Unified Diff: utils/tests/pub/test_pub.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/tests/pub/pub_update_test.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/test_pub.dart
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart
index d40fbec87941760d4e2070927e8c6e6497f9254d..b383dda9a3c4e47ceb2d210a634d72634fd52e63 100644
--- a/utils/tests/pub/test_pub.dart
+++ b/utils/tests/pub/test_pub.dart
@@ -397,12 +397,27 @@ Future<Map> _dependencyListToMap(List<Map> dependencies) {
throw 'Unknown source "$sourceName"';
}
- result[source.packageName(dependency[sourceName])] = dependency;
+ result[_packageName(sourceName, dependency[sourceName])] = dependency;
}
return result;
});
}
+/// Return the name for the package described by [description] and from
+/// [sourceName].
+String _packageName(String sourceName, description) {
+ switch (sourceName) {
+ case "git":
+ var url = description is String ? description : description['url'];
+ return basename(url.replaceFirst(const RegExp(@"(\.git)?/?$"), ""));
+ case "hosted":
+ if (description is String) return description;
+ return description['name'];
+ default:
+ return description;
+ }
+}
+
/**
* The path of the package cache directory used for tests. Relative to the
* sandbox directory.
« no previous file with comments | « utils/tests/pub/pub_update_test.dart ('k') | utils/tests/pub/version_solver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698