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

Unified Diff: utils/tests/pub/version_solver_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/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 fe2a0a0760a8f090f3d21ead2ad68e716071d6f1..4c2b1ed399480207834d17562a41adb5c99f53ac 100644
--- a/utils/tests/pub/version_solver_test.dart
+++ b/utils/tests/pub/version_solver_test.dart
@@ -326,7 +326,8 @@ testResolve(description, packages, [lockfile, result, error]) {
if (lockfile != null) {
lockfile.forEach((name, version) {
version = new Version.parse(version);
- realLockFile.packages[name] = new PackageId(source1, version, name);
+ realLockFile.packages[name] =
+ new PackageId(name, source1, version, name);
});
}
@@ -383,8 +384,8 @@ class MockSource extends Source {
MockSource(this.name)
: _packages = <String, Map<Version, Package>>{};
- Future<List<Version>> getVersions(String name) {
- return fakeAsync(() => _packages[name].getKeys());
+ Future<List<Version>> getVersions(String name, String description) {
+ return fakeAsync(() => _packages[description].getKeys());
}
Future<Pubspec> describe(PackageId id) {
@@ -403,8 +404,10 @@ class MockSource extends Source {
var dependencies = <PackageRef>[];
dependencyStrings.forEach((name, constraint) {
var parsed = parseSource(name);
- dependencies.add(new PackageRef(
- parsed.last, new VersionConstraint.parse(constraint), parsed.first));
+ var description = parsed.first;
+ var packageName = description.replaceFirst(new RegExp(@"-[^-]+$"), "");
+ dependencies.add(new PackageRef(packageName, parsed.last,
+ new VersionConstraint.parse(constraint), description));
});
var pubspec = new Pubspec(
@@ -416,9 +419,6 @@ class MockSource extends Source {
_packages.putIfAbsent(package.name, () => new Map<Version, Package>());
_packages[package.name][package.version] = package;
}
-
- String packageName(String description) =>
- description.replaceFirst(new RegExp(@"-[^-]+$"), "");
}
/**
« no previous file with comments | « utils/tests/pub/test_pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698