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

Unified Diff: utils/tests/pub/install/hosted/repair_cache_test.dart

Issue 12225149: Auto-reinstall broken packages in the system cache. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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/install/hosted/repair_cache_test.dart
diff --git a/utils/tests/pub/install/hosted/install_test.dart b/utils/tests/pub/install/hosted/repair_cache_test.dart
similarity index 60%
copy from utils/tests/pub/install/hosted/install_test.dart
copy to utils/tests/pub/install/hosted/repair_cache_test.dart
index 1ed4f404e9f58878424cb6e2bb9663d3dfb45647..aca40f0b04d309ac95788bb8c90aadc9a44ceec1 100644
--- a/utils/tests/pub/install/hosted/install_test.dart
+++ b/utils/tests/pub/install/hosted/repair_cache_test.dart
@@ -4,14 +4,22 @@
library pub_tests;
-import 'dart:io';
+import '../../../../../pkg/path/lib/path.dart' as path;
+import '../../../../pub/io.dart';
import '../../test_pub.dart';
main() {
- integration('installs a package from a pub server', () {
+ initConfig();
+ integration('re-installs a package if the cached one is empty', () {
servePackages([package("foo", "1.2.3")]);
+ // Make a broken empty directory in the cache.
+ schedule((sandboxDir) {
+ return hostedCacheDir("foo", "1.2.3")
+ .then((fooDir) => ensureDir(path.join(sandboxDir.path, fooDir)));
+ });
nweiz 2013/02/13 00:19:21 Why aren't you using the standard directory declar
Bob Nystrom 2013/02/13 01:27:11 The descriptor stuff is designed to represent dire
+
appDir([dependency("foo", "1.2.3")]).scheduleCreate();
schedulePub(args: ['install'],

Powered by Google App Engine
This is Rietveld 408576698