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 initConfig(); | |
32 withBarbackVersions("any", () { | 31 withBarbackVersions("any", () { |
33 integration("prefers transformer.dart to <package name>.dart", () { | 32 integration("prefers transformer.dart to <package name>.dart", () { |
34 d.dir(appPath, [ | 33 d.dir(appPath, [ |
35 d.pubspec({ | 34 d.pubspec({ |
36 "name": "myapp", | 35 "name": "myapp", |
37 "transformers": ["myapp"] | 36 "transformers": ["myapp"] |
38 }), | 37 }), |
39 d.dir("lib", [ | 38 d.dir("lib", [ |
40 d.file("transformer.dart", REWRITE_TRANSFORMER), | 39 d.file("transformer.dart", REWRITE_TRANSFORMER), |
41 d.file("myapp.dart", WRONG_TRANSFORMER) | 40 d.file("myapp.dart", WRONG_TRANSFORMER) |
42 ]), | 41 ]), |
43 d.dir("web", [ | 42 d.dir("web", [ |
44 d.file("foo.txt", "foo") | 43 d.file("foo.txt", "foo") |
45 ]) | 44 ]) |
46 ]).create(); | 45 ]).create(); |
47 | 46 |
48 createLockFile('myapp', pkg: ['barback']); | 47 createLockFile('myapp', pkg: ['barback']); |
49 | 48 |
50 pubServe(); | 49 pubServe(); |
51 requestShouldSucceed("foo.out", "foo.out"); | 50 requestShouldSucceed("foo.out", "foo.out"); |
52 requestShould404("foo.wrong"); | 51 requestShould404("foo.wrong"); |
53 endPubServe(); | 52 endPubServe(); |
54 }); | 53 }); |
55 }); | 54 }); |
56 } | 55 } |
OLD | NEW |