| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library pub_tests; | |
| 6 | |
| 7 import '../../descriptor.dart' as d; | |
| 8 import '../../test_pub.dart'; | |
| 9 import '../../serve/utils.dart'; | |
| 10 | |
| 11 const GROUP = """ | |
| 12 import 'package:barback/barback.dart'; | |
| 13 | |
| 14 import 'transformer.dart'; | |
| 15 | |
| 16 class RewriteGroup implements TransformerGroup { | |
| 17 RewriteGroup.asPlugin(); | |
| 18 | |
| 19 Iterable<Iterable> get phases => [[new RewriteTransformer.asPlugin()]]; | |
| 20 } | |
| 21 """; | |
| 22 | |
| 23 main() { | |
| 24 initConfig(); | |
| 25 withBarbackVersions("any", () { | |
| 26 integration("works on a transformer group", () { | |
| 27 d.dir(appPath, [d.pubspec({ | |
| 28 "name": "myapp", | |
| 29 "transformers": [{ | |
| 30 "myapp/src/group": { | |
| 31 "\$include": ["web/a.txt", "web/b.txt"], | |
| 32 "\$exclude": "web/a.txt" | |
| 33 } | |
| 34 }] | |
| 35 }), | |
| 36 d.dir( | |
| 37 "lib", | |
| 38 [ | |
| 39 d.dir( | |
| 40 "src", | |
| 41 [ | |
| 42 d.file("transformer.dart", REWRITE_TRANSFORMER), | |
| 43 d.file("group.dart", GROUP)])]), | |
| 44 d.dir( | |
| 45 "web", | |
| 46 [ | |
| 47 d.file("a.txt", "a.txt"), | |
| 48 d.file("b.txt", "b.txt"), | |
| 49 d.file("c.txt", "c.txt")])]).create(); | |
| 50 | |
| 51 createLockFile('myapp', pkg: ['barback']); | |
| 52 | |
| 53 pubServe(); | |
| 54 requestShould404("a.out"); | |
| 55 requestShouldSucceed("b.out", "b.txt.out"); | |
| 56 requestShould404("c.out"); | |
| 57 endPubServe(); | |
| 58 }); | |
| 59 }); | |
| 60 } | |
| OLD | NEW |