| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |