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