| 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 'dart:io'; | |
| 8 | |
| 9 import 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
| 10 | 8 |
| 11 import '../../descriptor.dart' as d; | 9 import '../../descriptor.dart' as d; |
| 12 import '../../test_pub.dart'; | 10 import '../../test_pub.dart'; |
| 13 | 11 |
| 14 main() { | 12 main() { |
| 15 integration('handles a corrupted binstub script', () { | 13 integration('handles a corrupted binstub script', () { |
| 16 servePackages((builder) { | 14 servePackages((builder) { |
| 17 builder.serve("foo", "1.0.0", contents: [ | 15 builder.serve("foo", "1.0.0", contents: [ |
| 18 d.dir("bin", [ | 16 d.dir("bin", [ |
| 19 d.file("script.dart", "main(args) => print('ok');") | 17 d.file("script.dart", "main(args) => print('ok');") |
| 20 ]) | 18 ]) |
| 21 ]); | 19 ]); |
| 22 }); | 20 }); |
| 23 | 21 |
| 24 schedulePub(args: ["global", "activate", "foo"]); | 22 schedulePub(args: ["global", "activate", "foo"]); |
| 25 | 23 |
| 26 d.dir(cachePath, [ | 24 d.dir(cachePath, [ |
| 27 d.dir('bin', [ | 25 d.dir('bin', [ |
| 28 d.file(binStubName('script'), 'junk') | 26 d.file(binStubName('script'), 'junk') |
| 29 ]) | 27 ]) |
| 30 ]).create(); | 28 ]).create(); |
| 31 | 29 |
| 32 schedulePub(args: ["cache", "repair"], | 30 schedulePub(args: ["cache", "repair"], |
| 33 error: contains('Error reading binstub for "script":')); | 31 error: contains('Error reading binstub for "script":')); |
| 34 }); | 32 }); |
| 35 } | 33 } |
| OLD | NEW |