OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS 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 import 'package:scheduled_test/scheduled_test.dart'; |
| 6 |
| 7 import '../descriptor.dart' as d; |
| 8 import '../test_pub.dart'; |
| 9 |
| 10 const MAIN = """ |
| 11 import 'dart:async'; |
| 12 |
| 13 @lazyA import 'a.dart' as a; |
| 14 @lazyB import 'b.dart' as b; |
| 15 |
| 16 const lazyA = const DeferredLibrary('a', uri: 'a.js'); |
| 17 const lazyB = const DeferredLibrary('b', uri: 'b.js'); |
| 18 |
| 19 void main() { |
| 20 Future.wait([lazyA.load(), lazyB.load()]).then((_) { |
| 21 a.fn(); |
| 22 b.fn(); |
| 23 }); |
| 24 } |
| 25 """; |
| 26 |
| 27 const A = """ |
| 28 library a; |
| 29 |
| 30 fn() => print("a"); |
| 31 """; |
| 32 |
| 33 const B = """ |
| 34 library b; |
| 35 |
| 36 fn() => print("b"); |
| 37 """; |
| 38 |
| 39 main() { |
| 40 initConfig(); |
| 41 integration("compiles deferred libraries to separate outputs", () { |
| 42 // Dart2js can take a long time to compile dart code, so we increase the |
| 43 // timeout to cope with that. |
| 44 currentSchedule.timeout *= 3; |
| 45 |
| 46 d.dir(appPath, [ |
| 47 d.appPubspec(), |
| 48 d.dir('web', [ |
| 49 d.file('main.dart', MAIN), |
| 50 d.file('a.dart', A), |
| 51 d.file('b.dart', B) |
| 52 ]) |
| 53 ]).create(); |
| 54 |
| 55 schedulePub(args: ["build"], |
| 56 output: new RegExp(r'Built 4 files to "build".')); |
| 57 |
| 58 d.dir(appPath, [ |
| 59 d.dir('build', [ |
| 60 d.dir('web', [ |
| 61 d.matcherFile('main.dart.js', isNot(isEmpty)), |
| 62 d.matcherFile('main.dart.precompiled.js', isNot(isEmpty)), |
| 63 d.matcherFile('main.dart.js_a.part.js', isNot(isEmpty)), |
| 64 d.matcherFile('main.dart.js_b.part.js', isNot(isEmpty)), |
| 65 ]) |
| 66 ]) |
| 67 ]).validate(); |
| 68 }); |
| 69 } |
OLD | NEW |