OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, 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 12 matching lines...) Expand all Loading... |
23 .then((contents) { | 23 .then((contents) { |
24 var id = transform.primaryInput.id.changeExtension(".out"); | 24 var id = transform.primaryInput.id.changeExtension(".out"); |
25 transform.addOutput(new Asset.fromString(id, "\$contents.out")); | 25 transform.addOutput(new Asset.fromString(id, "\$contents.out")); |
26 }); | 26 }); |
27 } | 27 } |
28 } | 28 } |
29 """; | 29 """; |
30 | 30 |
31 main() { | 31 main() { |
32 integration("a transform can use readInputAsString", () { | 32 integration("a transform can use readInputAsString", () { |
| 33 serveBarback(); |
| 34 |
33 d.dir(appPath, [ | 35 d.dir(appPath, [ |
34 d.pubspec({ | 36 d.pubspec({ |
35 "name": "myapp", | 37 "name": "myapp", |
36 "transformers": ["myapp/src/transformer"] | 38 "transformers": ["myapp/src/transformer"], |
| 39 "dependencies": {"barback": "any"} |
37 }), | 40 }), |
38 d.dir("lib", [d.dir("src", [ | 41 d.dir("lib", [d.dir("src", [ |
39 d.file("transformer.dart", TRANSFORMER) | 42 d.file("transformer.dart", TRANSFORMER) |
40 ])]), | 43 ])]), |
41 d.dir("web", [ | 44 d.dir("web", [ |
42 d.file("foo.txt", "foo") | 45 d.file("foo.txt", "foo") |
43 ]) | 46 ]) |
44 ]).create(); | 47 ]).create(); |
45 | 48 |
46 createLockFile('myapp', pkg: ['barback']); | 49 pubGet(); |
47 | |
48 pubServe(); | 50 pubServe(); |
49 requestShouldSucceed("foo.out", "foo.out"); | 51 requestShouldSucceed("foo.out", "foo.out"); |
50 endPubServe(); | 52 endPubServe(); |
51 }); | 53 }); |
52 } | 54 } |
OLD | NEW |