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

Unified Diff: sdk/lib/_internal/pub_generated/test/cache/repair/reinstalls_git_packages_test.dart

Issue 937243002: Revert "Revert "Use native async/await support in pub."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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: sdk/lib/_internal/pub_generated/test/cache/repair/reinstalls_git_packages_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/cache/repair/reinstalls_git_packages_test.dart b/sdk/lib/_internal/pub_generated/test/cache/repair/reinstalls_git_packages_test.dart
deleted file mode 100644
index a71e10dacae74e4cd73dbf3380f86ccf4a2eecbb..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub_generated/test/cache/repair/reinstalls_git_packages_test.dart
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library pub_tests;
-
-import 'package:path/path.dart' as path;
-import 'package:scheduled_test/scheduled_test.dart';
-
-import '../../../lib/src/io.dart';
-import '../../descriptor.dart' as d;
-import '../../test_pub.dart';
-
-main() {
- initConfig();
- integration('reinstalls previously cached git packages', () {
- // Create two cached revisions of foo.
- d.git('foo.git', [d.libDir('foo'), d.libPubspec('foo', '1.0.0')]).create();
-
- d.appDir({
- "foo": {
- "git": "../foo.git"
- }
- }).create();
- pubGet();
-
- d.git('foo.git', [d.libDir('foo'), d.libPubspec('foo', '1.0.1')]).commit();
-
- pubUpgrade();
-
- // Break them.
- var fooDirs;
- schedule(() {
- // Find the cached foo packages for each revision.
- var gitCacheDir = path.join(sandboxDir, cachePath, "git");
- fooDirs = listDir(
- gitCacheDir).where((dir) => path.basename(dir).startsWith("foo-")).toList();
-
- // Delete "foo.dart" from them.
- for (var dir in fooDirs) {
- deleteEntry(path.join(dir, "lib", "foo.dart"));
- }
- });
-
- // Repair them.
- schedulePub(args: ["cache", "repair"], output: '''
- Resetting Git repository for foo 1.0.0...
- Resetting Git repository for foo 1.0.1...
- Reinstalled 2 packages.''');
-
- // The missing libraries should have been replaced.
- schedule(() {
- var fooLibs = fooDirs.map((dir) {
- var fooDirName = path.basename(dir);
- return d.dir(
- fooDirName,
- [d.dir("lib", [d.file("foo.dart", 'main() => "foo";')])]);
- }).toList();
-
- d.dir(cachePath, [d.dir("git", fooLibs)]).validate();
- });
- });
-}

Powered by Google App Engine
This is Rietveld 408576698