OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library pub_tests; | |
6 | |
7 import 'package:scheduled_test/scheduled_test.dart'; | |
8 | |
9 import '../../descriptor.dart' as d; | |
10 import '../../test_pub.dart'; | |
11 | |
12 const _OUTDATED_BINSTUB = """ | |
13 #!/usr/bin/env sh | |
14 # This file was created by pub v0.1.2-3. | |
15 # Package: foo | |
16 # Version: 1.0.0 | |
17 # Executable: foo-script | |
18 # Script: script | |
19 dart "/path/to/.pub-cache/global_packages/foo/bin/script.dart.snapshot" "\$@" | |
20 """; | |
21 | |
22 main() { | |
23 initConfig(); | |
24 integration('updates an outdated binstub script', () { | |
25 servePackages((builder) { | |
26 builder.serve("foo", "1.0.0", pubspec: { | |
27 "executables": { | |
28 "foo-script": "script" | |
29 } | |
30 }, contents: [ | |
31 d.dir("bin", [ | |
32 d.file("script.dart", "main(args) => print('ok \$args');") | |
33 ]) | |
34 ]); | |
35 }); | |
36 | |
37 schedulePub(args: ["global", "activate", "foo"]); | |
38 | |
39 d.dir(cachePath, [ | |
40 d.dir('bin', [ | |
41 d.file(binStubName('foo-script'), _OUTDATED_BINSTUB) | |
42 ]) | |
43 ]).create(); | |
44 | |
45 // Repair them. | |
46 schedulePub(args: ["cache", "repair"], | |
47 output: ''' | |
48 Downloading foo 1.0.0... | |
49 Reinstalled 1 package. | |
50 Reactivating foo 1.0.0... | |
51 Precompiling executables... | |
52 Loading source assets... | |
53 Precompiled foo:script. | |
54 Installed executable foo-script. | |
55 Reactivated 1 package.'''); | |
56 | |
57 // The broken versions should have been replaced. | |
58 d.dir(cachePath, [ | |
59 d.dir('bin', [ | |
60 // 253 is the VM's exit code upon seeing an out-of-date snapshot. | |
61 d.matcherFile(binStubName('foo-script'), contains('253')) | |
62 ]) | |
63 ]).validate(); | |
64 }); | |
65 } | |
OLD | NEW |