efb050e2c1
BUG= R=ahe@google.com, floitsch@google.com Committed: https://code.google.com/p/dart/source/detail?r=37659 Reverted: https://code.google.com/p/dart/source/detail?r=37663 Review URL: https://codereview.chromium.org//330913004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37740 260f80e4-7a28-3924-810f-c04153c831b5
98 lines
2.8 KiB
Dart
98 lines
2.8 KiB
Dart
// 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 that the helper [Compiler.inUserCode] works as intended.
|
|
|
|
import 'package:async_helper/async_helper.dart';
|
|
import 'package:expect/expect.dart';
|
|
|
|
import 'memory_compiler.dart';
|
|
|
|
const SOURCE = const {
|
|
'main.dart': """
|
|
library main;
|
|
|
|
import 'dart:async';
|
|
import 'foo.dart';
|
|
import 'pkg/sub/bar.dart';
|
|
import 'package:sub/bar.dart';
|
|
import 'package:sup/boz.dart';
|
|
|
|
main() {}
|
|
""",
|
|
|
|
'foo.dart': """
|
|
library foo;
|
|
""",
|
|
|
|
'pkg/sub/bar.dart': """
|
|
library sub.bar;
|
|
|
|
import 'package:sup/boz.dart';
|
|
import 'baz.dart';
|
|
""",
|
|
|
|
'pkg/sub/baz.dart': """
|
|
library sub.baz;
|
|
""",
|
|
|
|
'pkg/sup/boz.dart': """
|
|
library sup.boz;
|
|
""",
|
|
};
|
|
|
|
void test(List<Uri> entryPoints, Map<String, bool> expectedResults) {
|
|
var compiler = compilerFor(SOURCE,
|
|
options: ['--analyze-only', '--analyze-all'],
|
|
packageRoot: Uri.parse('memory:pkg/'));
|
|
Uri mainUri = null;
|
|
if (entryPoints.length == 1) {
|
|
mainUri = entryPoints[0];
|
|
} else {
|
|
compiler.librariesToAnalyzeWhenRun = entryPoints;
|
|
}
|
|
asyncTest(() => compiler.run(mainUri).then((_) {
|
|
expectedResults.forEach((String uri, bool expectedResult) {
|
|
var element = compiler.libraryLoader.lookupLibrary(Uri.parse(uri));
|
|
Expect.isNotNull(element, "Unknown library '$uri'.");
|
|
Expect.equals(expectedResult, compiler.inUserCode(element),
|
|
expectedResult ? "Library '$uri' expected to be in user code"
|
|
: "Library '$uri' not expected to be in user code");
|
|
});
|
|
}));
|
|
}
|
|
|
|
void main() {
|
|
test([Uri.parse('memory:main.dart')],
|
|
{'memory:main.dart': true,
|
|
'memory:foo.dart': true,
|
|
'memory:pkg/sub/bar.dart': true,
|
|
'memory:pkg/sub/baz.dart': true,
|
|
'package:sub/bar.dart': false,
|
|
'package:sub/baz.dart': false,
|
|
'package:sup/boz.dart': false,
|
|
'dart:core': false,
|
|
'dart:async': false});
|
|
test([Uri.parse('dart:async')],
|
|
{'dart:core': true,
|
|
'dart:async': true});
|
|
test([Uri.parse('package:sub/bar.dart')],
|
|
{'package:sub/bar.dart': true,
|
|
'package:sub/baz.dart': true,
|
|
'package:sup/boz.dart': false,
|
|
'dart:core': false});
|
|
test([Uri.parse('package:sub/bar.dart'), Uri.parse('package:sup/boz.dart')],
|
|
{'package:sub/bar.dart': true,
|
|
'package:sub/baz.dart': true,
|
|
'package:sup/boz.dart': true,
|
|
'dart:core': false});
|
|
test([Uri.parse('dart:async'), Uri.parse('package:sub/bar.dart')],
|
|
{'package:sub/bar.dart': true,
|
|
'package:sub/baz.dart': true,
|
|
'package:sup/boz.dart': false,
|
|
'dart:core': true,
|
|
'dart:async': true});
|
|
}
|
|
|