OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.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 '../descriptor.dart' as d; | 7 import '../descriptor.dart' as d; |
8 import '../test_pub.dart'; | 8 import '../test_pub.dart'; |
9 import '../serve/utils.dart'; | 9 import '../serve/utils.dart'; |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 } | 35 } |
36 | 36 |
37 void declareOutputs(DeclaringAggregateTransform transform) { | 37 void declareOutputs(DeclaringAggregateTransform transform) { |
38 transform.declareOutput(new AssetId(transform.package, | 38 transform.declareOutput(new AssetId(transform.package, |
39 p.url.join(transform.key, 'out.final'))); | 39 p.url.join(transform.key, 'out.final'))); |
40 } | 40 } |
41 } | 41 } |
42 """; | 42 """; |
43 | 43 |
44 main() { | 44 main() { |
45 initConfig(); | |
46 withBarbackVersions(">=0.14.1", () { | 45 withBarbackVersions(">=0.14.1", () { |
47 integration("loads a declaring aggregate transformer", () { | 46 integration("loads a declaring aggregate transformer", () { |
48 d.dir(appPath, [ | 47 d.dir(appPath, [ |
49 d.pubspec({ | 48 d.pubspec({ |
50 "name": "myapp", | 49 "name": "myapp", |
51 "transformers": ["myapp/lazy", "myapp/aggregate"] | 50 "transformers": ["myapp/lazy", "myapp/aggregate"] |
52 }), | 51 }), |
53 d.dir("lib", [ | 52 d.dir("lib", [ |
54 d.file("lazy.dart", LAZY_TRANSFORMER), | 53 d.file("lazy.dart", LAZY_TRANSFORMER), |
55 d.file("aggregate.dart", AGGREGATE_TRANSFORMER), | 54 d.file("aggregate.dart", AGGREGATE_TRANSFORMER), |
56 ]), | 55 ]), |
57 d.dir("web", [ | 56 d.dir("web", [ |
58 d.file("foo.txt", "foo"), | 57 d.file("foo.txt", "foo"), |
59 d.file("bar.txt", "bar") | 58 d.file("bar.txt", "bar") |
60 ]) | 59 ]) |
61 ]).create(); | 60 ]).create(); |
62 | 61 |
63 createLockFile('myapp', pkg: ['barback']); | 62 createLockFile('myapp', pkg: ['barback']); |
64 | 63 |
65 var server = pubServe(); | 64 var server = pubServe(); |
66 // The transformer should preserve laziness. | 65 // The transformer should preserve laziness. |
67 server.stdout.expect("Build completed successfully"); | 66 server.stdout.expect("Build completed successfully"); |
68 | 67 |
69 requestShouldSucceed("out.final", "bar.out\nfoo.out"); | 68 requestShouldSucceed("out.final", "bar.out\nfoo.out"); |
70 endPubServe(); | 69 endPubServe(); |
71 }); | 70 }); |
72 }); | 71 }); |
73 } | 72 } |
OLD | NEW |