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 import 'package:pub/src/exit_codes.dart' as exit_codes; | 5 import 'package:pub/src/exit_codes.dart' as exit_codes; |
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('Errors if the script is in a non-immediate dependency.', () { | 11 integration('Errors if the script is in a non-immediate dependency.', () { |
13 d.dir("foo", [ | 12 d.dir("foo", [ |
14 d.libPubspec("foo", "1.0.0"), | 13 d.libPubspec("foo", "1.0.0"), |
15 d.dir("bin", [ | 14 d.dir("bin", [ |
16 d.file("bar.dart", "main() => print('foobar');") | 15 d.file("bar.dart", "main() => print('foobar');") |
17 ]) | 16 ]) |
18 ]).create(); | 17 ]).create(); |
19 | 18 |
20 d.dir("bar", [ | 19 d.dir("bar", [ |
21 d.libPubspec("bar", "1.0.0", deps: { | 20 d.libPubspec("bar", "1.0.0", deps: { |
22 "foo": {"path": "../foo"} | 21 "foo": {"path": "../foo"} |
23 }) | 22 }) |
24 ]).create(); | 23 ]).create(); |
25 | 24 |
26 d.dir(appPath, [ | 25 d.dir(appPath, [ |
27 d.appPubspec({ | 26 d.appPubspec({ |
28 "bar": {"path": "../bar"} | 27 "bar": {"path": "../bar"} |
29 }) | 28 }) |
30 ]).create(); | 29 ]).create(); |
31 | 30 |
32 pubGet(); | 31 pubGet(); |
33 | 32 |
34 var pub = pubRun(args: ["foo:script"]); | 33 var pub = pubRun(args: ["foo:script"]); |
35 pub.stderr.expect('Package "foo" is not an immediate dependency.'); | 34 pub.stderr.expect('Package "foo" is not an immediate dependency.'); |
36 pub.stderr.expect('Cannot run executables in transitive dependencies.'); | 35 pub.stderr.expect('Cannot run executables in transitive dependencies.'); |
37 pub.shouldExit(exit_codes.DATA); | 36 pub.shouldExit(exit_codes.DATA); |
38 }); | 37 }); |
39 } | 38 } |
OLD | NEW |