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 10 matching lines...) Expand all Loading... |
21 Future apply(Transform transform) { | 21 Future apply(Transform transform) { |
22 return transform.primaryInput.readAsString().then((contents) { | 22 return transform.primaryInput.readAsString().then((contents) { |
23 var id = transform.primaryInput.id.changeExtension(".wrong"); | 23 var id = transform.primaryInput.id.changeExtension(".wrong"); |
24 transform.addOutput(new Asset.fromString(id, "\$contents.wrong")); | 24 transform.addOutput(new Asset.fromString(id, "\$contents.wrong")); |
25 }); | 25 }); |
26 } | 26 } |
27 } | 27 } |
28 """; | 28 """; |
29 | 29 |
30 main() { | 30 main() { |
31 withBarbackVersions("any", () { | 31 integration("prefers transformer.dart to <package name>.dart", () { |
32 integration("prefers transformer.dart to <package name>.dart", () { | 32 d.dir(appPath, [ |
33 d.dir(appPath, [ | 33 d.pubspec({ |
34 d.pubspec({ | 34 "name": "myapp", |
35 "name": "myapp", | 35 "transformers": ["myapp"] |
36 "transformers": ["myapp"] | 36 }), |
37 }), | 37 d.dir("lib", [ |
38 d.dir("lib", [ | 38 d.file("transformer.dart", REWRITE_TRANSFORMER), |
39 d.file("transformer.dart", REWRITE_TRANSFORMER), | 39 d.file("myapp.dart", WRONG_TRANSFORMER) |
40 d.file("myapp.dart", WRONG_TRANSFORMER) | 40 ]), |
41 ]), | 41 d.dir("web", [ |
42 d.dir("web", [ | 42 d.file("foo.txt", "foo") |
43 d.file("foo.txt", "foo") | 43 ]) |
44 ]) | 44 ]).create(); |
45 ]).create(); | |
46 | 45 |
47 createLockFile('myapp', pkg: ['barback']); | 46 createLockFile('myapp', pkg: ['barback']); |
48 | 47 |
49 pubServe(); | 48 pubServe(); |
50 requestShouldSucceed("foo.out", "foo.out"); | 49 requestShouldSucceed("foo.out", "foo.out"); |
51 requestShould404("foo.wrong"); | 50 requestShould404("foo.wrong"); |
52 endPubServe(); | 51 endPubServe(); |
53 }); | |
54 }); | 52 }); |
55 } | 53 } |
OLD | NEW |