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

Side by Side Diff: test/cache/repair/reinstalls_hosted_packages_test.dart

Issue 1215833002: Use the new test runner. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub_tests; 5 library pub_tests;
6 6
7 import '../../descriptor.dart' as d; 7 import '../../descriptor.dart' as d;
8 import '../../test_pub.dart'; 8 import '../../test_pub.dart';
9 9
10 main() { 10 main() {
11 initConfig();
12 integration('reinstalls previously cached hosted packages', () { 11 integration('reinstalls previously cached hosted packages', () {
13 servePackages((builder) { 12 servePackages((builder) {
14 builder.serve("foo", "1.2.3"); 13 builder.serve("foo", "1.2.3");
15 builder.serve("foo", "1.2.4"); 14 builder.serve("foo", "1.2.4");
16 builder.serve("foo", "1.2.5"); 15 builder.serve("foo", "1.2.5");
17 builder.serve("bar", "1.2.3"); 16 builder.serve("bar", "1.2.3");
18 builder.serve("bar", "1.2.4"); 17 builder.serve("bar", "1.2.4");
19 }); 18 });
20 19
21 // Set up a cache with some broken packages. 20 // Set up a cache with some broken packages.
(...skipping 25 matching lines...) Expand all
47 Reinstalled 3 packages.'''); 46 Reinstalled 3 packages.''');
48 47
49 // The broken versions should have been replaced. 48 // The broken versions should have been replaced.
50 d.hostedCache([ 49 d.hostedCache([
51 d.dir("bar-1.2.4", [d.nothing("broken.txt")]), 50 d.dir("bar-1.2.4", [d.nothing("broken.txt")]),
52 d.dir("foo-1.2.3", [d.nothing("broken.txt")]), 51 d.dir("foo-1.2.3", [d.nothing("broken.txt")]),
53 d.dir("foo-1.2.5", [d.nothing("broken.txt")]) 52 d.dir("foo-1.2.5", [d.nothing("broken.txt")])
54 ]).validate(); 53 ]).validate();
55 }); 54 });
56 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698