| 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 import 'package:scheduled_test/scheduled_test.dart'; | 5 import 'package:scheduled_test/scheduled_test.dart'; |
| 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 |
| 11 main() { | 11 main() { |
| 12 initConfig(); | 12 initConfig(); |
| 13 withBarbackVersions("any", () { | 13 withBarbackVersions("any", () { |
| 14 integration("compiles a Dart file that imports a generated file in another " | 14 integration( |
| 15 "package to JS", () { | 15 "compiles a Dart file that imports a generated file in another " |
| 16 d.dir("foo", [ | 16 "package to JS", |
| 17 d.pubspec({ | 17 () { |
| 18 d.dir("foo", [d.pubspec({ |
| 18 "name": "foo", | 19 "name": "foo", |
| 19 "version": "0.0.1", | 20 "version": "0.0.1", |
| 20 "transformers": ["foo/transformer"] | 21 "transformers": ["foo/transformer"] |
| 21 }), | 22 }), d.dir("lib", [d.file("foo.dart", """ |
| 22 d.dir("lib", [ | |
| 23 d.file("foo.dart", """ | |
| 24 library foo; | 23 library foo; |
| 25 const TOKEN = "before"; | 24 const TOKEN = "before"; |
| 26 foo() => TOKEN; | 25 foo() => TOKEN; |
| 27 """), | 26 """), d.file("transformer.dart", dartTransformer("munge"))])]).create(); |
| 28 d.file("transformer.dart", dartTransformer("munge")) | |
| 29 ]) | |
| 30 ]).create(); | |
| 31 | 27 |
| 32 d.dir(appPath, [ | 28 d.dir(appPath, [d.appPubspec({ |
| 33 d.appPubspec({ | |
| 34 "foo": { | 29 "foo": { |
| 35 "path": "../foo" | 30 "path": "../foo" |
| 36 } | 31 } |
| 37 }), | 32 }), d.dir("web", [d.file("main.dart", """ |
| 38 d.dir("web", [ | |
| 39 d.file("main.dart", """ | |
| 40 import "package:foo/foo.dart"; | 33 import "package:foo/foo.dart"; |
| 41 main() => print(foo()); | 34 main() => print(foo()); |
| 42 """) | 35 """)])]).create(); |
| 43 ]) | |
| 44 ]).create(); | |
| 45 | 36 |
| 46 createLockFile("myapp", sandbox: ["foo"], pkg: ["barback"]); | 37 createLockFile("myapp", sandbox: ["foo"], pkg: ["barback"]); |
| 47 | 38 |
| 48 pubServe(); | 39 pubServe(); |
| 49 requestShouldSucceed("main.dart.js", contains("(before, munge)")); | 40 requestShouldSucceed("main.dart.js", contains("(before, munge)")); |
| 50 endPubServe(); | 41 endPubServe(); |
| 51 }); | 42 }); |
| 52 }); | 43 }); |
| 53 } | 44 } |
| OLD | NEW |