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 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
8 | 8 |
9 import '../../descriptor.dart' as d; | 9 import '../../descriptor.dart' as d; |
10 import '../../test_pub.dart'; | 10 import '../../test_pub.dart'; |
11 | 11 |
12 const _OUTDATED_BINSTUB = """ | 12 const _OUTDATED_BINSTUB = """ |
13 #!/usr/bin/env sh | 13 #!/usr/bin/env sh |
14 # This file was created by pub v0.1.2-3. | 14 # This file was created by pub v0.1.2-3. |
15 # Package: foo | 15 # Package: foo |
16 # Version: 1.0.0 | 16 # Version: 1.0.0 |
17 # Executable: foo-script | 17 # Executable: foo-script |
18 # Script: script | 18 # Script: script |
19 dart "/path/to/.pub-cache/global_packages/foo/bin/script.dart.snapshot" "\$@" | 19 dart "/path/to/.pub-cache/global_packages/foo/bin/script.dart.snapshot" "\$@" |
20 """; | 20 """; |
21 | 21 |
22 main() { | 22 main() { |
23 initConfig(); | |
24 integration('updates an outdated binstub script', () { | 23 integration('updates an outdated binstub script', () { |
25 servePackages((builder) { | 24 servePackages((builder) { |
26 builder.serve("foo", "1.0.0", pubspec: { | 25 builder.serve("foo", "1.0.0", pubspec: { |
27 "executables": { | 26 "executables": { |
28 "foo-script": "script" | 27 "foo-script": "script" |
29 } | 28 } |
30 }, contents: [ | 29 }, contents: [ |
31 d.dir("bin", [ | 30 d.dir("bin", [ |
32 d.file("script.dart", "main(args) => print('ok \$args');") | 31 d.file("script.dart", "main(args) => print('ok \$args');") |
33 ]) | 32 ]) |
(...skipping 22 matching lines...) Expand all Loading... |
56 | 55 |
57 // The broken versions should have been replaced. | 56 // The broken versions should have been replaced. |
58 d.dir(cachePath, [ | 57 d.dir(cachePath, [ |
59 d.dir('bin', [ | 58 d.dir('bin', [ |
60 // 253 is the VM's exit code upon seeing an out-of-date snapshot. | 59 // 253 is the VM's exit code upon seeing an out-of-date snapshot. |
61 d.matcherFile(binStubName('foo-script'), contains('253')) | 60 d.matcherFile(binStubName('foo-script'), contains('253')) |
62 ]) | 61 ]) |
63 ]).validate(); | 62 ]).validate(); |
64 }); | 63 }); |
65 } | 64 } |
OLD | NEW |