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 '../descriptor.dart' as d; | 5 import '../descriptor.dart' as d; |
6 import '../test_pub.dart'; | 6 import '../test_pub.dart'; |
7 | 7 |
8 const SCRIPT = """ | 8 const SCRIPT = """ |
9 main() { | 9 main() { |
10 print("should not get here!"); | 10 print("should not get here!"); |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 void apply(Transform transform) { | 24 void apply(Transform transform) { |
25 // Don't run on the transformer itself. | 25 // Don't run on the transformer itself. |
26 if (transform.primaryInput.id.path.startsWith("lib")) return; | 26 if (transform.primaryInput.id.path.startsWith("lib")) return; |
27 transform.logger.error('\${transform.primaryInput.id}.'); | 27 transform.logger.error('\${transform.primaryInput.id}.'); |
28 } | 28 } |
29 } | 29 } |
30 """; | 30 """; |
31 | 31 |
32 main() { | 32 main() { |
33 withBarbackVersions("any", () { | 33 integration('does not run if a transformer has an error', () { |
34 integration('does not run if a transformer has an error', () { | 34 d.dir(appPath, [ |
35 d.dir(appPath, [ | 35 d.pubspec({ |
36 d.pubspec({ | 36 "name": "myapp", |
37 "name": "myapp", | 37 "transformers": ["myapp/src/transformer"] |
38 "transformers": ["myapp/src/transformer"] | 38 }), |
39 }), | 39 d.dir("lib", [ |
40 d.dir("lib", [ | 40 d.dir("src", [ |
41 d.dir("src", [ | 41 d.file("transformer.dart", TRANSFORMER) |
42 d.file("transformer.dart", TRANSFORMER) | 42 ]) |
43 ]) | 43 ]), |
44 ]), | 44 d.dir("bin", [ |
45 d.dir("bin", [ | 45 d.file("script.dart", SCRIPT) |
46 d.file("script.dart", SCRIPT) | 46 ]) |
47 ]) | 47 ]).create(); |
48 ]).create(); | |
49 | 48 |
50 createLockFile('myapp', pkg: ['barback']); | 49 createLockFile('myapp', pkg: ['barback']); |
51 | 50 |
52 var pub = pubRun(args: ["bin/script"]); | 51 var pub = pubRun(args: ["bin/script"]); |
53 | 52 |
54 pub.stderr.expect("[Error from Failing]:"); | 53 pub.stderr.expect("[Error from Failing]:"); |
55 pub.stderr.expect("myapp|bin/script.dart."); | 54 pub.stderr.expect("myapp|bin/script.dart."); |
56 | 55 |
57 // Note: no output from the script. | 56 // Note: no output from the script. |
58 pub.shouldExit(); | 57 pub.shouldExit(); |
59 }); | 58 }); |
60 }); | |
61 } | 59 } |
OLD | NEW |