blob: 0b8ef3afd343b57b3c615696ae090cbf903b1f2a [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Test of the graph segmentation algorithm used by deferred loading
// to determine which elements can be deferred and which libraries
// much be included in the initial download (loaded eagerly).
import 'package:async_helper/async_helper.dart';
import 'package:compiler/src/dart2jslib.dart';
import 'package:expect/expect.dart';
import 'memory_compiler.dart';
void main() {
Compiler compiler = compilerFor(MEMORY_SOURCE_FILES);
asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) {
lookupLibrary(name) {
return compiler.libraryLoader.lookupLibrary(Uri.parse(name));
}
var main = compiler.mainApp.find(Compiler.MAIN);
var outputUnitForElement = compiler.deferredLoadTask.outputUnitForElement;
var mainOutputUnit = compiler.deferredLoadTask.mainOutputUnit;
var backend = compiler.backend;
var classes = backend.emitter.neededClasses;
var lib1 = lookupLibrary("memory:lib1.dart");
var lib2 = lookupLibrary("memory:lib2.dart");
var foo1 = lib1.find("foo1");
var foo2 = lib2.find("foo2");
Expect.notEquals(mainOutputUnit, outputUnitForElement(foo2));
}));
}
// lib1 imports lib2 deferred. But mainlib never uses DeferredLibrary.
// Test that this case works.
const Map MEMORY_SOURCE_FILES = const {
"main.dart":"""
library mainlib;
import 'lib1.dart' as lib1;
void main() {
lib1.foo1();
}
""",
"lib1.dart":"""
library lib1;
import 'lib2.dart' deferred as lib2;
const def = const DeferredLibrary('lib2');
void foo1() {
lib1.loadLibrary().then((_) => lib2.foo2());
}
""",
"lib2.dart":"""
library lib2;
void foo2() {}
""",
};