| OLD | NEW |
| 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; | 1 library pub_tests; |
| 6 | |
| 7 import '../../descriptor.dart' as d; | 2 import '../../descriptor.dart' as d; |
| 8 import '../../test_pub.dart'; | 3 import '../../test_pub.dart'; |
| 9 import '../../serve/utils.dart'; | 4 import '../../serve/utils.dart'; |
| 10 | |
| 11 main() { | 5 main() { |
| 12 initConfig(); | 6 initConfig(); |
| 13 withBarbackVersions("any", () { | 7 withBarbackVersions("any", () { |
| 14 integration("applies includes before excludes if both are present", () { | 8 integration("applies includes before excludes if both are present", () { |
| 15 d.dir(appPath, [ | 9 d.dir(appPath, [d.pubspec({ |
| 16 d.pubspec({ | |
| 17 "name": "myapp", | 10 "name": "myapp", |
| 18 "transformers": [ | 11 "transformers": [{ |
| 19 { | |
| 20 "myapp/src/transformer": { | 12 "myapp/src/transformer": { |
| 21 "\$include": ["web/a.txt", "web/b.txt"], | 13 "\$include": ["web/a.txt", "web/b.txt"], |
| 22 "\$exclude": "web/a.txt" | 14 "\$exclude": "web/a.txt" |
| 23 } | 15 } |
| 24 } | 16 }] |
| 25 ] | |
| 26 }), | 17 }), |
| 27 d.dir("lib", [d.dir("src", [ | 18 d.dir("lib", [d.dir("src", [d.file("transformer.dart", REWRITE_TRANS
FORMER)])]), |
| 28 d.file("transformer.dart", REWRITE_TRANSFORMER) | 19 d.dir( |
| 29 ])]), | 20 "web", |
| 30 d.dir("web", [ | 21 [ |
| 31 d.file("a.txt", "a.txt"), | 22 d.file("a.txt", "a.txt"), |
| 32 d.file("b.txt", "b.txt"), | 23 d.file("b.txt", "b.txt"), |
| 33 d.file("c.txt", "c.txt") | 24 d.file("c.txt", "c.txt")])]).create(); |
| 34 ]) | |
| 35 ]).create(); | |
| 36 | |
| 37 createLockFile('myapp', pkg: ['barback']); | 25 createLockFile('myapp', pkg: ['barback']); |
| 38 | |
| 39 pubServe(); | 26 pubServe(); |
| 40 requestShould404("a.out"); | 27 requestShould404("a.out"); |
| 41 requestShouldSucceed("b.out", "b.txt.out"); | 28 requestShouldSucceed("b.out", "b.txt.out"); |
| 42 requestShould404("c.out"); | 29 requestShould404("c.out"); |
| 43 endPubServe(); | 30 endPubServe(); |
| 44 }); | 31 }); |
| 45 }); | 32 }); |
| 46 } | 33 } |
| OLD | NEW |