blob: 75d799de04c0805851a87661ca82989ce2a352db [file] [log] [blame]
// Copyright (c) 2015, 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.
library analyzer.test.src.task.dart_test;
import 'package:analyzer/dart/ast/ast.dart';
import 'package:analyzer/dart/ast/standard_resolution_map.dart';
import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/dart/ast/visitor.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/type.dart';
import 'package:analyzer/error/error.dart';
import 'package:analyzer/src/context/cache.dart';
import 'package:analyzer/src/dart/element/element.dart';
import 'package:analyzer/src/error/codes.dart';
import 'package:analyzer/src/generated/constant.dart';
import 'package:analyzer/src/generated/engine.dart'
show AnalysisOptionsImpl, CacheState;
import 'package:analyzer/src/generated/resolver.dart';
import 'package:analyzer/src/generated/sdk.dart';
import 'package:analyzer/src/generated/source.dart';
import 'package:analyzer/src/services/lint.dart';
import 'package:analyzer/src/task/dart.dart';
import 'package:analyzer/src/task/html.dart';
import 'package:analyzer/src/task/strong/ast_properties.dart' as strong_ast;
import 'package:analyzer/task/dart.dart';
import 'package:analyzer/task/general.dart';
import 'package:analyzer/task/model.dart';
import 'package:test/test.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../../generated/resolver_test_case.dart';
import '../../generated/test_support.dart';
import '../../utils.dart';
import '../context/abstract_context.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(BuildCompilationUnitElementTaskTest);
defineReflectiveTests(BuildDirectiveElementsTaskTest);
defineReflectiveTests(BuildEnumMemberElementsTaskTest);
defineReflectiveTests(BuildExportNamespaceTaskTest);
defineReflectiveTests(BuildLibraryElementTaskTest);
defineReflectiveTests(BuildPublicNamespaceTaskTest);
defineReflectiveTests(BuildSourceExportClosureTaskTest);
defineReflectiveTests(BuildTypeProviderTaskTest);
defineReflectiveTests(ComputeConstantDependenciesTaskTest);
defineReflectiveTests(ComputeConstantValueTaskTest);
defineReflectiveTests(ComputeInferableStaticVariableDependenciesTaskTest);
defineReflectiveTests(ComputeLibraryCycleTaskTest);
defineReflectiveTests(ContainingLibrariesTaskTest);
defineReflectiveTests(DartErrorsTaskTest);
defineReflectiveTests(EvaluateUnitConstantsTaskTest);
defineReflectiveTests(GatherUsedImportedElementsTaskTest);
defineReflectiveTests(GatherUsedLocalElementsTaskTest);
defineReflectiveTests(GenerateHintsTaskTest);
defineReflectiveTests(GenerateLintsTaskTest);
defineReflectiveTests(InferInstanceMembersInUnitTaskTest);
defineReflectiveTests(InferStaticVariableTypesInUnitTaskTest);
defineReflectiveTests(InferStaticVariableTypeTaskTest);
defineReflectiveTests(LibraryErrorsReadyTaskTest);
defineReflectiveTests(LibraryUnitErrorsTaskTest);
defineReflectiveTests(ParseDartTaskTest);
defineReflectiveTests(PartiallyResolveUnitReferencesTaskTest);
defineReflectiveTests(ReferencedNamesBuilderTest);
defineReflectiveTests(ResolveDirectiveElementsTaskTest);
defineReflectiveTests(ResolveInstanceFieldsInUnitTaskTest);
defineReflectiveTests(ResolveLibraryTaskTest);
defineReflectiveTests(ResolveLibraryTypeNamesTaskTest);
defineReflectiveTests(ResolveTopLevelUnitTypeBoundsTaskTest);
defineReflectiveTests(ResolveUnitTaskTest);
defineReflectiveTests(ResolveUnitTypeNamesTaskTest);
defineReflectiveTests(ResolveVariableReferencesTaskTest);
defineReflectiveTests(ScanDartTaskTest);
defineReflectiveTests(StrongModeInferenceTest);
defineReflectiveTests(StrongModeVerifyUnitTaskTest);
defineReflectiveTests(VerifyUnitTaskTest);
});
}
isInstanceOf isBuildCompilationUnitElementTask =
new isInstanceOf<BuildCompilationUnitElementTask>();
isInstanceOf isBuildDirectiveElementsTask =
new isInstanceOf<BuildDirectiveElementsTask>();
isInstanceOf isBuildEnumMemberElementsTask =
new isInstanceOf<BuildEnumMemberElementsTask>();
isInstanceOf isBuildExportNamespaceTask =
new isInstanceOf<BuildExportNamespaceTask>();
isInstanceOf isBuildLibraryElementTask =
new isInstanceOf<BuildLibraryElementTask>();
isInstanceOf isBuildPublicNamespaceTask =
new isInstanceOf<BuildPublicNamespaceTask>();
isInstanceOf isBuildSourceExportClosureTask =
new isInstanceOf<BuildSourceExportClosureTask>();
isInstanceOf isBuildTypeProviderTask =
new isInstanceOf<BuildTypeProviderTask>();
isInstanceOf isComputeConstantDependenciesTask =
new isInstanceOf<ComputeConstantDependenciesTask>();
isInstanceOf isComputeConstantValueTask =
new isInstanceOf<ComputeConstantValueTask>();
isInstanceOf isComputeInferableStaticVariableDependenciesTask =
new isInstanceOf<ComputeInferableStaticVariableDependenciesTask>();
isInstanceOf isContainingLibrariesTask =
new isInstanceOf<ContainingLibrariesTask>();
isInstanceOf isDartErrorsTask = new isInstanceOf<DartErrorsTask>();
isInstanceOf isEvaluateUnitConstantsTask =
new isInstanceOf<EvaluateUnitConstantsTask>();
isInstanceOf isGatherUsedImportedElementsTask =
new isInstanceOf<GatherUsedImportedElementsTask>();
isInstanceOf isGatherUsedLocalElementsTask =
new isInstanceOf<GatherUsedLocalElementsTask>();
isInstanceOf isGenerateHintsTask = new isInstanceOf<GenerateHintsTask>();
isInstanceOf isGenerateLintsTask = new isInstanceOf<GenerateLintsTask>();
isInstanceOf isInferInstanceMembersInUnitTask =
new isInstanceOf<InferInstanceMembersInUnitTask>();
isInstanceOf isInferStaticVariableTypesInUnitTask =
new isInstanceOf<InferStaticVariableTypesInUnitTask>();
isInstanceOf isInferStaticVariableTypeTask =
new isInstanceOf<InferStaticVariableTypeTask>();
isInstanceOf isLibraryErrorsReadyTask =
new isInstanceOf<LibraryErrorsReadyTask>();
isInstanceOf isLibraryUnitErrorsTask =
new isInstanceOf<LibraryUnitErrorsTask>();
isInstanceOf isParseDartTask = new isInstanceOf<ParseDartTask>();
isInstanceOf isPartiallyResolveUnitReferencesTask =
new isInstanceOf<PartiallyResolveUnitReferencesTask>();
isInstanceOf isResolveDirectiveElementsTask =
new isInstanceOf<ResolveDirectiveElementsTask>();
isInstanceOf isResolveLibraryReferencesTask =
new isInstanceOf<ResolveLibraryReferencesTask>();
isInstanceOf isResolveLibraryTask = new isInstanceOf<ResolveLibraryTask>();
isInstanceOf isResolveLibraryTypeNamesTask =
new isInstanceOf<ResolveLibraryTypeNamesTask>();
isInstanceOf isResolveTopLevelUnitTypeBoundsTask =
new isInstanceOf<ResolveTopLevelUnitTypeBoundsTask>();
isInstanceOf isResolveUnitTask = new isInstanceOf<ResolveUnitTask>();
isInstanceOf isResolveUnitTypeNamesTask =
new isInstanceOf<ResolveUnitTypeNamesTask>();
isInstanceOf isResolveVariableReferencesTask =
new isInstanceOf<ResolveVariableReferencesTask>();
isInstanceOf isScanDartTask = new isInstanceOf<ScanDartTask>();
isInstanceOf isStrongModeVerifyUnitTask =
new isInstanceOf<StrongModeVerifyUnitTask>();
isInstanceOf isVerifyUnitTask = new isInstanceOf<VerifyUnitTask>();
final LintCode _testLintCode = new LintCode('test lint', 'test lint code');
@reflectiveTest
class BuildCompilationUnitElementTaskTest extends _AbstractDartTaskTest {
Source source;
LibrarySpecificUnit target;
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT1);
expect(outputs[RESOLVED_UNIT1], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT1], isTrue);
}
test_perform_find_constants() {
_performBuildTask('''
const x = 1;
class C {
static const y = 1;
const C([p = 1]);
}
@x
f() {
const z = 1;
}
''');
CompilationUnit unit = outputs[RESOLVED_UNIT1];
CompilationUnitElement unitElement = outputs[COMPILATION_UNIT_ELEMENT];
Annotation annotation = unit.declarations
.firstWhere((m) => m is FunctionDeclaration)
.metadata[0];
List<ConstantEvaluationTarget> expectedConstants =
<ConstantEvaluationTarget>[
unitElement.accessors.firstWhere((e) => e.isGetter).variable,
unitElement.types[0].fields[0],
unitElement.functions[0].localVariables[0],
unitElement.types[0].constructors[0],
resolutionMap.elementAnnotationForAnnotation(annotation),
unitElement.types[0].constructors[0].parameters[0]
];
expect(
outputs[COMPILATION_UNIT_CONSTANTS].toSet(), expectedConstants.toSet());
}
test_perform_library() {
_performBuildTask(r'''
library lib;
import 'lib2.dart';
export 'lib3.dart';
part 'part.dart';
final x = '';
class A {
static final y = 0;
}
class B = Object with A;
''');
expect(outputs, hasLength(4));
expect(outputs[COMPILATION_UNIT_CONSTANTS], isNotNull);
expect(outputs[COMPILATION_UNIT_ELEMENT], isNotNull);
expect(outputs[RESOLVED_UNIT1], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT1], isTrue);
}
test_perform_reuseElement() {
_performBuildTask(r'''
library lib;
class A {}
class B = Object with A;
''');
CompilationUnit unit = outputs[RESOLVED_UNIT1];
CompilationUnitElement unitElement = outputs[COMPILATION_UNIT_ELEMENT];
expect(unit, isNotNull);
expect(unitElement, isNotNull);
// invalidate RESOLVED_UNIT1
CacheEntry cacheEntry = analysisCache.get(target);
cacheEntry.setState(RESOLVED_UNIT1, CacheState.INVALID);
// compute again
computeResult(target, RESOLVED_UNIT1,
matcher: isBuildCompilationUnitElementTask);
expect(outputs[COMPILATION_UNIT_ELEMENT], same(unitElement));
expect(outputs[RESOLVED_UNIT1], isNot(same(unit)));
}
void _performBuildTask(String content) {
source = newSource('/test.dart', content);
target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT1,
matcher: isBuildCompilationUnitElementTask);
}
}
@reflectiveTest
class BuildDirectiveElementsTaskTest extends _AbstractDartTaskTest {
/**
* Verify that the given [element] has exactly one annotation, and that its
* [ElementAnnotationImpl] is unresolved and points back to [element].
*
* The compilation unit stored in the [ElementAnnotationImpl] should be
* [compilationUnit].
*/
void checkMetadata(Element element, CompilationUnitElement compilationUnit) {
expect(element.metadata, hasLength(1));
expect(element.metadata[0], new isInstanceOf<ElementAnnotationImpl>());
ElementAnnotationImpl elementAnnotation = element.metadata[0];
expect(elementAnnotation.element, isNull); // Not yet resolved
expect(elementAnnotation.compilationUnit, isNotNull);
expect(elementAnnotation.compilationUnit, compilationUnit);
}
test_perform() {
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
import 'libB.dart';
export 'libC.dart';
''',
'/libB.dart': '''
library libB;
''',
'/libC.dart': '''
library libC;
'''
});
Source sourceA = sources[0];
Source sourceB = sources[1];
Source sourceC = sources[2];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
LibraryElement libraryElementA = outputs[LIBRARY_ELEMENT2];
LibraryElement libraryElementB = _getImportLibraryInput(sourceB);
LibraryElement libraryElementC = _getExportLibraryInput(sourceC);
// no errors
_assertErrorsWithCodes([]);
// validate directives
CompilationUnit libraryUnitA = context
.getCacheEntry(new LibrarySpecificUnit(sourceA, sourceA))
.getValue(RESOLVED_UNIT1);
{
ImportDirective importNode = libraryUnitA.directives[1];
ImportElement importElement = importNode.element;
expect(importElement, isNotNull);
expect(importElement.importedLibrary, libraryElementB);
expect(importElement.prefix, isNull);
expect(importElement.nameOffset, 14);
expect(importElement.uriOffset, 21);
expect(importElement.uriEnd, 32);
}
{
ExportDirective exportNode = libraryUnitA.directives[2];
ExportElement exportElement = exportNode.element;
expect(exportElement, isNotNull);
expect(exportElement.exportedLibrary, libraryElementC);
expect(exportElement.nameOffset, 34);
expect(exportElement.uriOffset, 41);
expect(exportElement.uriEnd, 52);
}
// validate LibraryElement
expect(libraryElementA.hasExtUri, isFalse);
// has an artificial "dart:core" import
{
List<ImportElement> imports = libraryElementA.imports;
expect(imports, hasLength(2));
expect(imports[1].importedLibrary.isDartCore, isTrue);
expect(imports[1].isSynthetic, isTrue);
}
}
test_perform_combinators() {
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
import 'libB.dart' show A, B hide C, D;
''',
'/libB.dart': '''
library libB;
'''
});
Source sourceA = sources[0];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
CompilationUnit libraryUnitA = context
.getCacheEntry(new LibrarySpecificUnit(sourceA, sourceA))
.getValue(RESOLVED_UNIT1);
// no errors
_assertErrorsWithCodes([]);
// validate directives
ImportDirective importNode = libraryUnitA.directives[1];
ImportElement importElement = importNode.element;
List<NamespaceCombinator> combinators = importElement.combinators;
expect(combinators, hasLength(2));
{
ShowElementCombinator combinator = combinators[0];
expect(combinator.offset, 33);
expect(combinator.end, 42);
expect(combinator.shownNames, ['A', 'B']);
}
{
HideElementCombinator combinator = combinators[1];
expect(combinator.hiddenNames, ['C', 'D']);
}
}
test_perform_configurations_export() {
context.declaredVariables.define('dart.library.io', 'true');
context.declaredVariables.define('dart.library.html', 'true');
newSource('/foo.dart', '');
var foo_io = newSource('/foo_io.dart', '');
newSource('/foo_html.dart', '');
var testSource = newSource(
'/test.dart',
r'''
export 'foo.dart'
if (dart.library.io) 'foo_io.dart'
if (dart.library.html) 'foo_html.dart';
''');
// Perform the task.
computeResult(testSource, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
LibraryElement testLibrary = outputs[LIBRARY_ELEMENT2];
// Validate the export element.
ExportElement export = testLibrary.exports[0];
expect(export.exportedLibrary.source, foo_io);
expect(export.uri, 'foo_io.dart');
}
test_perform_configurations_import() {
context.declaredVariables.define('dart.library.io', 'true');
context.declaredVariables.define('dart.library.html', 'true');
newSource('/foo.dart', '');
var foo_io = newSource('/foo_io.dart', '');
newSource('/foo_html.dart', '');
var testSource = newSource(
'/test.dart',
r'''
import 'foo.dart'
if (dart.library.io) 'foo_io.dart'
if (dart.library.html) 'foo_html.dart';
''');
// Perform the task.
computeResult(testSource, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
LibraryElement testLibrary = outputs[LIBRARY_ELEMENT2];
// Validate the import element.
ImportElement import = testLibrary.imports[0];
expect(import.importedLibrary.source, foo_io);
expect(import.uri, 'foo_io.dart');
}
test_perform_dartCoreContext() {
List<Source> sources = newSources({'/libA.dart': ''});
Source source = sources[0];
// perform task
computeResult(source, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
LibraryElement libraryElement = outputs[LIBRARY_ELEMENT2];
// verify that dart:core has SDK context
{
LibraryElement coreLibrary = libraryElement.importedLibraries[0];
DartSdk dartSdk = context.sourceFactory.dartSdk;
expect(coreLibrary.context, same(dartSdk.context));
}
}
test_perform_error_exportOfNonLibrary() {
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
export 'part.dart';
''',
'/part.dart': '''
part of notLib;
'''
});
Source sourceA = sources[0];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// validate errors
_assertErrorsWithCodes([CompileTimeErrorCode.EXPORT_OF_NON_LIBRARY]);
}
test_perform_error_importOfNonLibrary() {
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
import 'part.dart';
''',
'/part.dart': '''
part of notLib;
'''
});
Source sourceA = sources[0];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// validate errors
_assertErrorsWithCodes([CompileTimeErrorCode.IMPORT_OF_NON_LIBRARY]);
}
test_perform_explicitDartCoreImport() {
List<Source> sources = newSources({
'/lib.dart': '''
library lib;
import 'dart:core' show List;
'''
});
Source source = sources[0];
// perform task
computeResult(source, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
LibraryElement libraryElement = outputs[LIBRARY_ELEMENT2];
// has an explicit "dart:core" import
{
List<ImportElement> imports = libraryElement.imports;
expect(imports, hasLength(1));
expect(imports[0].importedLibrary.isDartCore, isTrue);
expect(imports[0].isSynthetic, isFalse);
}
}
test_perform_hasExtUri() {
List<Source> sources = newSources({
'/lib.dart': '''
import 'dart-ext:doesNotExist.dart';
'''
});
Source source = sources[0];
// perform task
computeResult(source, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
LibraryElement libraryElement = outputs[LIBRARY_ELEMENT2];
expect(libraryElement.hasExtUri, isTrue);
}
test_perform_importPrefix() {
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
import 'libB.dart' as pref;
import 'libC.dart' as pref;
''',
'/libB.dart': '''
library libB;
''',
'/libC.dart': '''
library libC;
'''
});
Source sourceA = sources[0];
Source sourceB = sources[1];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// prepare outputs
CompilationUnit libraryUnitA = context
.getCacheEntry(new LibrarySpecificUnit(sourceA, sourceA))
.getValue(RESOLVED_UNIT1);
// validate directives
ImportDirective importNodeB = libraryUnitA.directives[1];
SimpleIdentifier prefixNodeB = importNodeB.prefix;
ImportElement importElementB = importNodeB.element;
PrefixElement prefixElement = importElementB.prefix;
expect(importElementB, isNotNull);
expect(importElementB.importedLibrary, _getImportLibraryInput(sourceB));
expect(prefixElement, isNotNull);
expect(importElementB.prefixOffset, prefixElement.nameOffset);
expect(prefixNodeB.staticElement, prefixElement);
// PrefixElement "pref" is shared
ImportDirective importNodeC = libraryUnitA.directives[2];
SimpleIdentifier prefixNodeC = importNodeC.prefix;
ImportElement importElementC = importNodeC.element;
expect(prefixNodeC.staticElement, prefixElement);
expect(importElementC.prefix, prefixElement);
}
test_perform_metadata() {
List<Source> sources = newSources({
'/libA.dart': '''
@a library libA;
@b import 'libB.dart';
@c export 'libC.dart';
@d part 'part.dart';''',
'/libB.dart': 'library libB;',
'/libC.dart': 'library libC;',
'/part.dart': 'part of libA;'
});
Source sourceA = sources[0];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// Get outputs
LibraryElement libraryA =
context.getCacheEntry(sourceA).getValue(LIBRARY_ELEMENT2);
// Validate metadata
checkMetadata(libraryA, libraryA.definingCompilationUnit);
checkMetadata(libraryA.imports[0], libraryA.definingCompilationUnit);
checkMetadata(libraryA.exports[0], libraryA.definingCompilationUnit);
checkMetadata(libraryA.parts[0], libraryA.definingCompilationUnit);
}
test_perform_metadata_partOf() {
// We don't record annotations on `part of` directives because the element
// associated with a `part of` directive is the library, and the convention
// is to annotate the library at the site of the `library` declaration.
List<Source> sources = newSources({
'/libA.dart': '''
library libA;
part 'part.dart';''',
'/part.dart': '@a part of libA;'
});
Source sourceA = sources[0];
Source sourcePart = sources[1];
// perform task
computeResult(sourceA, LIBRARY_ELEMENT2,
matcher: isBuildDirectiveElementsTask);
// Get outputs
LibraryElement libraryA =
context.getCacheEntry(sourceA).getValue(LIBRARY_ELEMENT2);
CompilationUnit part = context
.getCacheEntry(new LibrarySpecificUnit(sourceA, sourcePart))
.getValue(RESOLVED_UNIT1);
// Validate metadata
expect(part.directives[0], new isInstanceOf<PartOfDirective>());
expect(part.directives[0].element, same(libraryA));
expect(
resolutionMap.elementDeclaredByDirective(part.directives[0]).metadata,
isEmpty);
}
void _assertErrorsWithCodes(List<ErrorCode> expectedErrorCodes) {
_fillErrorListener(BUILD_DIRECTIVES_ERRORS);
errorListener.assertErrorsWithCodes(expectedErrorCodes);
}
_getExportLibraryInput(Source source) {
var key = BuildDirectiveElementsTask.EXPORTS_LIBRARY_ELEMENT_INPUT_NAME;
return task.inputs[key][source];
}
_getImportLibraryInput(Source source) {
var key = BuildDirectiveElementsTask.IMPORTS_LIBRARY_ELEMENT_INPUT_NAME;
return task.inputs[key][source];
}
}
@reflectiveTest
class BuildEnumMemberElementsTaskTest extends _AbstractDartTaskTest {
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT3);
expect(outputs[RESOLVED_UNIT3], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT3], isTrue);
}
test_perform() {
Source source = newSource(
'/test.dart',
'''
enum MyEnum {
A, B
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT3,
matcher: isBuildEnumMemberElementsTask);
CompilationUnit unit = outputs[RESOLVED_UNIT3];
// validate Element
ClassElement enumElement =
resolutionMap.elementDeclaredByCompilationUnit(unit).getEnum('MyEnum');
List<FieldElement> fields = enumElement.fields;
expect(fields, hasLength(4));
{
FieldElementImpl index = fields[0];
expect(index, isNotNull);
expect(index.name, 'index');
expect(index.isStatic, isFalse);
expect(index.evaluationResult, isNull);
_assertGetter(index);
}
{
ConstFieldElementImpl values = fields[1];
expect(values, isNotNull);
expect(values.name, 'values');
expect(values.isStatic, isTrue);
expect(values.evaluationResult, isNotNull);
_assertGetter(values);
}
{
ConstFieldElementImpl constant = fields[2];
expect(constant, isNotNull);
expect(constant.name, 'A');
expect(constant.isStatic, isTrue);
expect(constant.evaluationResult, isNotNull);
_assertGetter(constant);
}
{
ConstFieldElementImpl constant = fields[3];
expect(constant, isNotNull);
expect(constant.name, 'B');
expect(constant.isStatic, isTrue);
expect(constant.evaluationResult, isNotNull);
_assertGetter(constant);
}
// validate nodes
EnumDeclaration enumNode = unit.declarations[0];
expect(enumNode.name.staticElement, same(enumElement));
expect(enumNode.constants[0].element, same(enumElement.getField('A')));
expect(enumNode.constants[1].element, same(enumElement.getField('B')));
}
static void _assertGetter(FieldElement field) {
PropertyAccessorElement getter = field.getter;
expect(getter, isNotNull);
expect(getter.variable, same(field));
expect(getter.type, isNotNull);
}
}
@reflectiveTest
class BuildExportNamespaceTaskTest extends _AbstractDartTaskTest {
test_perform_entryPoint() {
Source sourceA = newSource(
'/a.dart',
'''
library lib_a;
export 'b.dart';
''');
Source sourceB = newSource(
'/b.dart',
'''
library lib_b;
main() {}
''');
computeResult(sourceA, LIBRARY_ELEMENT4,
matcher: isBuildExportNamespaceTask);
// validate
LibraryElement library = outputs[LIBRARY_ELEMENT4];
FunctionElement entryPoint = library.entryPoint;
expect(entryPoint, isNotNull);
expect(entryPoint.source, sourceB);
}
test_perform_hideCombinator() {
Source sourceA = newSource(
'/a.dart',
'''
library lib_a;
export 'b.dart' hide B1;
class A1 {}
class A2 {}
class _A3 {}
''');
newSource(
'/b.dart',
'''
library lib_b;
class B1 {}
class B2 {}
class B3 {}
class _B4 {}
''');
newSource(
'/c.dart',
'''
library lib_c;
class C1 {}
class C2 {}
class C3 {}
''');
computeResult(sourceA, LIBRARY_ELEMENT4,
matcher: isBuildExportNamespaceTask);
// validate
LibraryElement library = outputs[LIBRARY_ELEMENT4];
Namespace namespace = library.exportNamespace;
Iterable<String> definedKeys = namespace.definedNames.keys;
expect(definedKeys, unorderedEquals(['A1', 'A2', 'B2', 'B3']));
}
test_perform_showCombinator() {
Source sourceA = newSource(
'/a.dart',
'''
library lib_a;
export 'b.dart' show B1;
class A1 {}
class A2 {}
class _A3 {}
''');
newSource(
'/b.dart',
'''
library lib_b;
class B1 {}
class B2 {}
class _B3 {}
''');
computeResult(sourceA, LIBRARY_ELEMENT4,
matcher: isBuildExportNamespaceTask);
// validate
LibraryElement library = outputs[LIBRARY_ELEMENT4];
Namespace namespace = library.exportNamespace;
Iterable<String> definedKeys = namespace.definedNames.keys;
expect(definedKeys, unorderedEquals(['A1', 'A2', 'B1']));
}
test_perform_showCombinator_setter() {
Source sourceA = newSource(
'/a.dart',
'''
library lib_a;
export 'b.dart' show topLevelB;
class A {}
''');
newSource(
'/b.dart',
'''
library lib_b;
int topLevelB;
''');
computeResult(sourceA, LIBRARY_ELEMENT4,
matcher: isBuildExportNamespaceTask);
// validate
LibraryElement library = outputs[LIBRARY_ELEMENT4];
Namespace namespace = library.exportNamespace;
Iterable<String> definedKeys = namespace.definedNames.keys;
expect(definedKeys, unorderedEquals(['A', 'topLevelB', 'topLevelB=']));
}
}
@reflectiveTest
class BuildLibraryElementTaskTest extends _AbstractDartTaskTest {
Source librarySource;
CompilationUnit libraryUnit;
CompilationUnitElement libraryUnitElement;
List<CompilationUnit> partUnits;
LibraryElement libraryElement;
test_perform() {
enableUriInPartOf();
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part1.dart';
part 'part2.dart';
''',
'/part1.dart': '''
part of lib;
''',
'/part2.dart': '''
part of 'lib.dart';
'''
});
expect(outputs, hasLength(3));
// simple outputs
expect(outputs[BUILD_LIBRARY_ERRORS], isEmpty);
expect(outputs[IS_LAUNCHABLE], isFalse);
// LibraryElement output
expect(libraryElement, isNotNull);
expect(libraryElement.entryPoint, isNull);
expect(libraryElement.source, same(librarySource));
expect(libraryElement.definingCompilationUnit, libraryUnitElement);
expect(libraryElement.parts,
unorderedEquals([partUnits[0].element, partUnits[1].element]));
// LibraryElement references
expect((libraryUnit.directives[0] as LibraryDirective).element,
same(libraryElement));
expect((partUnits[0].directives[0] as PartOfDirective).element,
same(libraryElement));
expect((partUnits[1].directives[0] as PartOfDirective).element,
same(libraryElement));
// CompilationUnitElement(s)
CompilationUnitElement firstPart;
CompilationUnitElement secondPart;
if (resolutionMap.elementDeclaredByCompilationUnit(partUnits[0]).uri ==
'part1.dart') {
firstPart = partUnits[0].element;
secondPart = partUnits[1].element;
} else {
firstPart = partUnits[1].element;
secondPart = partUnits[0].element;
}
expect(firstPart.uri, 'part1.dart');
expect(firstPart.uriOffset, 18);
expect(firstPart.uriEnd, 30);
expect(
(libraryUnit.directives[1] as PartDirective).element, same(firstPart));
expect(secondPart.uri, 'part2.dart');
expect(secondPart.uriOffset, 37);
expect(secondPart.uriEnd, 49);
expect(
(libraryUnit.directives[2] as PartDirective).element, same(secondPart));
}
test_perform_error_missingLibraryDirectiveWithPart_hasCommon() {
_performBuildTask({
'/lib.dart': '''
part 'partA.dart';
part 'partB.dart';
''',
'/partA.dart': '''
part of my_lib;
''',
'/partB.dart': '''
part of my_lib;
'''
});
_assertErrorsWithCodes(
[ResolverErrorCode.MISSING_LIBRARY_DIRECTIVE_WITH_PART]);
AnalysisError error = errorListener.errors[0];
expect(error.getProperty(ErrorProperty.PARTS_LIBRARY_NAME), 'my_lib');
}
test_perform_error_missingLibraryDirectiveWithPart_noCommon() {
_performBuildTask({
'/lib.dart': '''
part 'partA.dart';
part 'partB.dart';
''',
'/partA.dart': '''
part of libA;
''',
'/partB.dart': '''
part of libB;
'''
});
_assertErrorsWithCodes(
[ResolverErrorCode.MISSING_LIBRARY_DIRECTIVE_WITH_PART]);
AnalysisError error = errorListener.errors[0];
expect(error.getProperty(ErrorProperty.PARTS_LIBRARY_NAME), isNull);
}
test_perform_error_partDoesNotExist() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part.dart';
'''
});
// we already report URI_DOES_NOT_EXIST, no need to report other errors
_assertErrorsWithCodes([]);
}
test_perform_error_partOfDifferentLibrary() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part.dart';
''',
'/part.dart': '''
part of someOtherLib;
'''
});
_assertErrorsWithCodes([StaticWarningCode.PART_OF_DIFFERENT_LIBRARY]);
}
test_perform_error_partOfNonPart() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part.dart';
''',
'/part.dart': '''
// no part of
'''
});
_assertErrorsWithCodes([CompileTimeErrorCode.PART_OF_NON_PART]);
}
test_perform_invalidUri_part() {
String invalidUri = resourceProvider.pathContext.separator == '/'
? '//////////'
: '\\\\\\\\\\\\';
_performBuildTask({
'/lib.dart': '''
library lib;
part '$invalidUri';
'''
});
expect(libraryElement.parts, isEmpty);
}
test_perform_isLaunchable_inDefiningUnit() {
_performBuildTask({
'/lib.dart': '''
library lib;
main() {
}
'''
});
expect(outputs[IS_LAUNCHABLE], isTrue);
expect(libraryElement.entryPoint, isNotNull);
}
test_perform_isLaunchable_inPartUnit() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part.dart';
''',
'/part.dart': '''
part of lib;
main() {
}
'''
});
expect(outputs[IS_LAUNCHABLE], isTrue);
expect(libraryElement.entryPoint, isNotNull);
}
test_perform_noSuchFilePart() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'no-such-file.dart';
'''
});
expect(libraryElement.parts, hasLength(1));
CompilationUnitElement part = libraryElement.parts[0];
expect(part, isNotNull);
expect(part.source, isNotNull);
expect(part.library, same(libraryElement));
expect(context.exists(part.source), isFalse);
}
test_perform_patchTopLevelAccessors() {
_performBuildTask({
'/lib.dart': '''
library lib;
part 'part1.dart';
part 'part2.dart';
''',
'/part1.dart': '''
part of lib;
int get test => 0;
''',
'/part2.dart': '''
part of lib;
void set test(_) {}
'''
});
CompilationUnitElement unitElement1 = partUnits
.singleWhere((u) => resolutionMap
.elementDeclaredByCompilationUnit(u)
.name
.endsWith('part1.dart'))
.element;
CompilationUnitElement unitElement2 = partUnits
.singleWhere((u) => resolutionMap
.elementDeclaredByCompilationUnit(u)
.name
.endsWith('part2.dart'))
.element;
PropertyAccessorElement getter = unitElement1.accessors[0];
PropertyAccessorElement setter = unitElement2.accessors[0];
PropertyInducingElement variable = getter.variable;
expect(getter.isGetter, isTrue);
expect(setter.isSetter, isTrue);
expect(variable, isNotNull);
expect(setter.variable, same(variable));
expect(unitElement1.topLevelVariables, [variable]);
expect(unitElement2.topLevelVariables, [variable]);
}
void _assertErrorsWithCodes(List<ErrorCode> expectedErrorCodes) {
_fillErrorListener(BUILD_LIBRARY_ERRORS);
errorListener.assertErrorsWithCodes(expectedErrorCodes);
}
void _performBuildTask(Map<String, String> sourceMap) {
List<Source> sources = newSources(sourceMap);
Source libSource = sources.first;
computeResult(libSource, LIBRARY_ELEMENT1,
matcher: isBuildLibraryElementTask);
libraryUnit = context
.getCacheEntry(new LibrarySpecificUnit(libSource, libSource))
.getValue(RESOLVED_UNIT1);
libraryUnitElement = libraryUnit.element;
librarySource = libraryUnitElement.source;
libraryElement = outputs[LIBRARY_ELEMENT1];
partUnits = task.inputs[BuildLibraryElementTask.PARTS_UNIT_INPUT]
as List<CompilationUnit>;
}
}
@reflectiveTest
class BuildPublicNamespaceTaskTest extends _AbstractDartTaskTest {
test_perform() {
List<Source> sources = newSources({
'/lib.dart': '''
library lib;
part 'part.dart';
a() {}
_b() {}
''',
'/part.dart': '''
part of lib;
_c() {}
d() {}
'''
});
computeResult(sources.first, LIBRARY_ELEMENT3,
matcher: isBuildPublicNamespaceTask);
// validate
LibraryElement library = outputs[LIBRARY_ELEMENT3];
Namespace namespace = library.publicNamespace;
expect(namespace.definedNames.keys, unorderedEquals(['a', 'd']));
}
}
@reflectiveTest
class BuildSourceExportClosureTaskTest extends _AbstractDartTaskTest {
List<Source> getExportSourceClosure(Map<ResultDescriptor, dynamic> outputs) {
return outputs[EXPORT_SOURCE_CLOSURE] as List<Source>;
}
test_perform_exportClosure() {
Source sourceA = newSource(
'/a.dart',
'''
library lib_a;
export 'b.dart';
''');
Source sourceB = newSource(
'/b.dart',
'''
library lib_b;
export 'c.dart';
''');
Source sourceC = newSource(
'/c.dart',
'''
library lib_c;
export 'a.dart';
''');
Source sourceD = newSource(
'/d.dart',
'''
library lib_d;
''');
// a.dart
{
computeResult(sourceA, EXPORT_SOURCE_CLOSURE,
matcher: isBuildSourceExportClosureTask);
List<Source> closure = getExportSourceClosure(outputs);
expect(closure, unorderedEquals([sourceA, sourceB, sourceC]));
}
// c.dart
{
computeResult(sourceC, EXPORT_SOURCE_CLOSURE,
matcher: isBuildSourceExportClosureTask);
List<Source> closure = getExportSourceClosure(outputs);
expect(closure, unorderedEquals([sourceA, sourceB, sourceC]));
}
// d.dart
{
computeResult(sourceD, EXPORT_SOURCE_CLOSURE,
matcher: isBuildSourceExportClosureTask);
List<Source> closure = getExportSourceClosure(outputs);
expect(closure, unorderedEquals([sourceD]));
}
}
}
@reflectiveTest
class BuildTypeProviderTaskTest extends _AbstractDartTaskTest {
test_perform() {
computeResult(AnalysisContextTarget.request, TYPE_PROVIDER,
matcher: isBuildTypeProviderTask);
// validate
TypeProvider typeProvider = outputs[TYPE_PROVIDER];
expect(typeProvider, isNotNull);
expect(typeProvider.boolType, isNotNull);
expect(typeProvider.intType, isNotNull);
expect(typeProvider.futureType, isNotNull);
}
}
@reflectiveTest
class ComputeConstantDependenciesTaskTest extends _AbstractDartTaskTest {
Annotation findClassAnnotation(CompilationUnit unit, String className) {
for (CompilationUnitMember member in unit.declarations) {
if (member is ClassDeclaration && member.name.name == className) {
expect(member.metadata, hasLength(1));
return member.metadata[0];
}
}
fail('Annotation not found');
return null;
}
test_annotation_with_args() {
Source source = newSource(
'/test.dart',
'''
const x = 1;
@D(x) class C {}
class D { const D(value); }
''');
// First compute the resolved unit for the source.
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT1);
CompilationUnit unit = outputs[RESOLVED_UNIT1];
// Find the elements for x and D's constructor, and the annotation on C.
CompilationUnitElement compilationUnitElement =
resolutionMap.elementDeclaredByCompilationUnit(unit);
List<PropertyAccessorElement> accessors = compilationUnitElement.accessors;
Element x = accessors
.firstWhere((PropertyAccessorElement accessor) =>
accessor.isGetter && accessor.name == 'x')
.variable;
List<ClassElement> types = compilationUnitElement.types;
Element constructorForD =
types.firstWhere((ClassElement cls) => cls.name == 'D').constructors[0];
Annotation annotation = findClassAnnotation(unit, 'C');
// Now compute the dependencies for the annotation, and check that it is
// the set [x, constructorForD].
// TODO(paulberry): test librarySource != source
computeResult(resolutionMap.elementAnnotationForAnnotation(annotation),
CONSTANT_DEPENDENCIES,
matcher: isComputeConstantDependenciesTask);
expect(
outputs[CONSTANT_DEPENDENCIES].toSet(), [x, constructorForD].toSet());
}
test_annotation_with_nonConstArg() {
Source source = newSource(
'/test.dart',
'''
class A {
const A(x);
}
class C {
@A(const [(_) => null])
String s;
}
''');
// First compute the resolved unit for the source.
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT1);
CompilationUnit unit = outputs[RESOLVED_UNIT1];
// Find the annotation on the field.
ClassDeclaration classC = unit.declarations[1];
Annotation annotation = classC.members[0].metadata[0];
// Now compute the dependencies for the annotation, and check that it is
// the right size.
computeResult(resolutionMap.elementAnnotationForAnnotation(annotation),
CONSTANT_DEPENDENCIES,
matcher: isComputeConstantDependenciesTask);
expect(outputs[CONSTANT_DEPENDENCIES], hasLength(1));
}
test_annotation_without_args() {
Source source = newSource(
'/test.dart',
'''
const x = 1;
@x class C {}
''');
// First compute the resolved unit for the source.
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT1);
CompilationUnit unit = outputs[RESOLVED_UNIT1];
// Find the element for x and the annotation on C.
List<PropertyAccessorElement> accessors =
resolutionMap.elementDeclaredByCompilationUnit(unit).accessors;
Element x = accessors
.firstWhere((PropertyAccessorElement accessor) =>
accessor.isGetter && accessor.name == 'x')
.variable;
Annotation annotation = findClassAnnotation(unit, 'C');
// Now compute the dependencies for the annotation, and check that it is
// the list [x].
computeResult(resolutionMap.elementAnnotationForAnnotation(annotation),
CONSTANT_DEPENDENCIES,
matcher: isComputeConstantDependenciesTask);
expect(outputs[CONSTANT_DEPENDENCIES], [x]);
}
test_enumConstant() {
Source source = newSource(
'/test.dart',
'''
enum E {A, B, C}
''');
// First compute the resolved unit for the source.
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT3);
CompilationUnit unit = outputs[RESOLVED_UNIT3];
// Find the element for 'A'
EnumDeclaration enumDeclaration = unit.declarations[0];
EnumConstantDeclaration constantDeclaration = enumDeclaration.constants[0];
FieldElement constantElement = constantDeclaration.element;
// Now compute the dependencies for the constant and check that there are
// none.
computeResult(constantElement, CONSTANT_DEPENDENCIES,
matcher: isComputeConstantDependenciesTask);
expect(outputs[CONSTANT_DEPENDENCIES], isEmpty);
}
test_perform() {
Source source = newSource(
'/test.dart',
'''
const x = y;
const y = 1;
''');
// First compute the resolved unit for the source.
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT1);
CompilationUnit unit = outputs[RESOLVED_UNIT1];
// Find the elements for the constants x and y.
List<PropertyAccessorElement> accessors =
resolutionMap.elementDeclaredByCompilationUnit(unit).accessors;
Element x = accessors
.firstWhere((PropertyAccessorElement accessor) =>
accessor.isGetter && accessor.name == 'x')
.variable;
Element y = accessors
.firstWhere((PropertyAccessorElement accessor) =>
accessor.isGetter && accessor.name == 'y')
.variable;
// Now compute the dependencies for x, and check that it is the list [y].
computeResult(x, CONSTANT_DEPENDENCIES,
matcher: isComputeConstantDependenciesTask);
expect(outputs[CONSTANT_DEPENDENCIES], [y]);
}
}
@reflectiveTest
class ComputeConstantValueTaskTest extends _AbstractDartTaskTest {
EvaluationResultImpl computeClassAnnotation(
Source source, CompilationUnit unit, String className) {
for (CompilationUnitMember member in unit.declarations) {
if (member is ClassDeclaration && member.name.name == className) {
expect(member.metadata, hasLength(1));
Annotation annotation = member.metadata[0];
ElementAnnotationImpl target = annotation.elementAnnotation;
computeResult(target, CONSTANT_VALUE,
matcher: isComputeConstantValueTask);
expect(outputs[CONSTANT_VALUE], same(target));
EvaluationResultImpl evaluationResult =
(annotation.elementAnnotation as ElementAnnotationImpl)
.evaluationResult;
return evaluationResult;
}
}
fail('Annotation not found');
return null;
}
test_annotation_non_const_constructor() {
// Calling a non-const constructor from an annotation that is illegal, but
// shouldn't crash analysis.
Source source = newSource(
'/test.dart',
'''
class A {
final int i;
A(this.i);
}
@A(5)
class C {}
''');
// First compute the resolved unit for the source.
CompilationUnit unit = _resolveSource(source);
// Compute the constant value of the annotation on C.
EvaluationResultImpl evaluationResult =
computeClassAnnotation(source, unit, 'C');
// And check that it has no value stored in it.
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNull);
}
test_annotation_with_args() {
Source source = newSource(
'/test.dart',
'''
const x = 1;
@D(x) class C {}
class D {
const D(this.value);
final value;
}
''');
// First compute the resolved unit for the source.
CompilationUnit unit = _resolveSource(source);
// Compute the constant value of the annotation on C.
EvaluationResultImpl evaluationResult =
computeClassAnnotation(source, unit, 'C');
// And check that it has the expected value.
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNotNull);
expect(evaluationResult.value.type, isNotNull);
expect(evaluationResult.value.type.name, 'D');
expect(evaluationResult.value.fields, contains('value'));
expect(evaluationResult.value.fields['value'].toIntValue(), 1);
}
test_annotation_without_args() {
Source source = newSource(
'/test.dart',
'''
const x = 1;
@x class C {}
''');
// First compute the resolved unit for the source.
CompilationUnit unit = _resolveSource(source);
// Compute the constant value of the annotation on C.
EvaluationResultImpl evaluationResult =
computeClassAnnotation(source, unit, 'C');
// And check that it has the expected value.
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNotNull);
expect(evaluationResult.value.toIntValue(), 1);
}
test_circular_reference() {
_checkCircularities(
'x',
['y'],
'''
const x = y + 1;
const y = x + 1;
''');
}
test_circular_reference_one_element() {
// See dartbug.com/23490.
_checkCircularities('x', [], 'const x = x;');
}
test_circular_reference_strongly_connected_component() {
// When there is a circularity, all elements in the strongly connected
// component should be marked as having an error.
_checkCircularities(
'a',
['b', 'c', 'd'],
'''
const a = b;
const b = c + d;
const c = a;
const d = a;
''');
}
test_const_constructor_calls_implicit_super_constructor_implicitly() {
// Note: the situation below is a compile-time error (since the synthetic
// constructor for Base is non-const), but we need to handle it without
// throwing an exception.
EvaluationResultImpl evaluationResult = _computeTopLevelVariableConstValue(
'x',
'''
class Base {}
class Derived extends Base {
const Derived();
}
const x = const Derived();
''');
expect(evaluationResult, isNotNull);
}
test_dependency() {
EvaluationResultImpl evaluationResult = _computeTopLevelVariableConstValue(
'x',
'''
const x = y + 1;
const y = 1;
''');
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNotNull);
expect(evaluationResult.value.toIntValue(), 2);
}
test_external_const_factory() {
EvaluationResultImpl evaluationResult = _computeTopLevelVariableConstValue(
'x',
'''
const x = const C.foo();
class C extends B {
external const factory C.foo();
}
class B {}
''');
expect(evaluationResult, isNotNull);
}
test_simple_constant() {
EvaluationResultImpl evaluationResult = _computeTopLevelVariableConstValue(
'x',
'''
const x = 1;
''');
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNotNull);
expect(evaluationResult.value.toIntValue(), 1);
}
void _checkCircularities(
String variableName, List<String> otherVariables, String content) {
// Evaluating the first constant should produce an error.
CompilationUnit unit = _resolveUnit(content);
_expectCircularityError(_evaluateConstant(unit, variableName));
// And all the other constants involved in the strongly connected component
// should be set to the same error state.
for (String otherVariableName in otherVariables) {
PropertyInducingElement otherVariableElement =
AstFinder.getTopLevelVariableElement(unit, otherVariableName);
_expectCircularityError(
(otherVariableElement as TopLevelVariableElementImpl)
.evaluationResult);
}
}
EvaluationResultImpl _computeTopLevelVariableConstValue(
String variableName, String content) {
return _evaluateConstant(_resolveUnit(content), variableName);
}
EvaluationResultImpl _evaluateConstant(
CompilationUnit unit, String variableName) {
// Find the element for the given constant.
PropertyInducingElement variableElement =
AstFinder.getTopLevelVariableElement(unit, variableName);
// Now compute the value of the constant.
computeResult(variableElement, CONSTANT_VALUE,
matcher: isComputeConstantValueTask);
expect(outputs[CONSTANT_VALUE], same(variableElement));
EvaluationResultImpl evaluationResult =
(variableElement as TopLevelVariableElementImpl).evaluationResult;
return evaluationResult;
}
void _expectCircularityError(EvaluationResultImpl evaluationResult) {
expect(evaluationResult, isNotNull);
expect(evaluationResult.value, isNull);
expect(evaluationResult.errors, hasLength(1));
expect(evaluationResult.errors[0].errorCode,
CompileTimeErrorCode.RECURSIVE_COMPILE_TIME_CONSTANT);
}
CompilationUnit _resolveSource(Source source) {
LibrarySpecificUnit librarySpecificUnit =
new LibrarySpecificUnit(source, source);
computeResult(librarySpecificUnit, RESOLVED_UNIT1);
CompilationUnit unit = outputs[RESOLVED_UNIT1];
return unit;
}
CompilationUnit _resolveUnit(String content) =>
_resolveSource(newSource('/test.dart', content));
}
@reflectiveTest
class ComputeInferableStaticVariableDependenciesTaskTest
extends _AbstractDartTaskTest {
@override
void setUp() {
super.setUp();
// Variable dependencies are only available in strong mode.
enableStrongMode();
}
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT7);
expect(outputs[RESOLVED_UNIT7], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT7], isTrue);
}
test_perform() {
AnalysisTarget source = newSource(
'/test.dart',
'''
const a = b;
const b = 0;
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
TopLevelVariableElement elementA = resolutionMap
.elementDeclaredByCompilationUnit(unit)
.topLevelVariables[0];
TopLevelVariableElement elementB = resolutionMap
.elementDeclaredByCompilationUnit(unit)
.topLevelVariables[1];
computeResult(elementA, INFERABLE_STATIC_VARIABLE_DEPENDENCIES,
matcher: isComputeInferableStaticVariableDependenciesTask);
expect(outputs, hasLength(1));
List<VariableElement> dependencies =
outputs[INFERABLE_STATIC_VARIABLE_DEPENDENCIES]
as List<VariableElement>;
expect(dependencies, unorderedEquals([elementB]));
}
}
@reflectiveTest
class ComputeLibraryCycleTaskTest extends _AbstractDartTaskTest {
List<LibraryElement> getLibraryCycle(Map<ResultDescriptor, dynamic> outputs) {
return outputs[LIBRARY_CYCLE] as List<LibraryElement>;
}
List<LibrarySpecificUnit> getLibraryCycleDependencies(
Map<ResultDescriptor, dynamic> outputs) {
return outputs[LIBRARY_CYCLE_DEPENDENCIES] as List<LibrarySpecificUnit>;
}
List<LibrarySpecificUnit> getLibraryCycleUnits(
Map<ResultDescriptor, dynamic> outputs) {
return outputs[LIBRARY_CYCLE_UNITS] as List<LibrarySpecificUnit>;
}
@override
void setUp() {
super.setUp();
enableStrongMode();
}
void test_library_cycle_incremental() {
enableStrongMode();
Source a = newSource(
'/a.dart',
'''
library a;
''');
Source b = newSource(
'/b.dart',
'''
library b;
import 'a.dart';
''');
Source c = newSource(
'/c.dart',
'''
library c;
import 'b.dart';
''');
_assertLibraryCycle(a, [a]);
_assertLibraryCycle(b, [b]);
_assertLibraryCycle(c, [c]);
// Create a cycle.
context.setContents(
a,
'''
library a;
import 'c.dart';
''');
_expectInvalid(a);
_expectInvalid(b);
_expectInvalid(c);
_assertLibraryCycle(a, [a, b, c]);
_assertLibraryCycle(b, [a, b, c]);
_assertLibraryCycle(c, [a, b, c]);
// Break the cycle again.
context.setContents(
a,
'''
library a;
''');
_expectInvalid(a);
_expectInvalid(b);
_expectInvalid(c);
_assertLibraryCycle(a, [a]);
_assertLibraryCycle(b, [b]);
_assertLibraryCycle(c, [c]);
}
void test_library_cycle_incremental_partial() {
enableStrongMode();
Source a = newSource(
'/a.dart',
r'''
library a;
''');
Source b = newSource(
'/b.dart',
r'''
library b;
import 'a.dart';
''');
Source c = newSource(
'/c.dart',
r'''
library c;
import 'b.dart';
''');
_assertLibraryCycle(a, [a]);
_assertLibraryCycle(b, [b]);
// 'c' is not reachable, so we have not yet computed its library cycles.
// Complete the cycle, via 'c'.
context.setContents(
a,
r'''
library a;
import 'c.dart';
''');
_expectInvalid(a);
_expectInvalid(b);
_expectInvalid(c);
// Ensure that everything reachable through 'c' was invalidated,
// and recomputed to include all three sources.
_assertLibraryCycle(a, [a, b, c]);
_assertLibraryCycle(b, [a, b, c]);
_assertLibraryCycle(c, [a, b, c]);
}
void test_library_cycle_incremental_partial2() {
enableStrongMode();
Source a = newSource(
'/a.dart',
r'''
library a;
import 'b.dart';
''');
Source b = newSource(
'/b.dart',
r'''
library b;
import 'a.dart';
''');
Source c = newSource(
'/c.dart',
r'''
library c;
import 'b.dart';
''');
_assertLibraryCycle(a, [a, b]);
_assertLibraryCycle(b, [a, b]);
_assertLibraryCycle(c, [c]);
// Include 'c' into the cycle.
context.setContents(
a,
r'''
library a;
import 'b.dart';
import 'c.dart';
''');
_expectInvalid(a);
_expectInvalid(b);
_expectInvalid(c);
// Start processing with 'b', so that when we resolve 'b' directives,
// and invalidate library cycles, the 'a' directives are not resolved yet,
// so we don't know that the cycle must include 'c'.
_assertLibraryCycle(b, [a, b, c]);
_assertLibraryCycle(a, [a, b, c]);
_assertLibraryCycle(c, [a, b, c]);
}
void test_library_cycle_linear() {
List<Source> sources = newSources({
'/a.dart': '''
''',
'/b.dart': '''
import 'a.dart';
'''
});
List<Map<ResultDescriptor, dynamic>> results =
computeLibraryResultsMap(sources, LIBRARY_CYCLE);
List<LibraryElement> component0 = getLibraryCycle(results[0]);
List<LibraryElement> component1 = getLibraryCycle(results[1]);
expect(component0, hasLength(1));
expect(component1, hasLength(1));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results[0]);
List<LibrarySpecificUnit> units1 = getLibraryCycleUnits(results[1]);
expect(units0, hasLength(1));
expect(units1, hasLength(1));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results[0]);
List<LibrarySpecificUnit> dep1 = getLibraryCycleDependencies(results[1]);
expect(dep0, hasLength(1)); // dart:core
expect(dep1, hasLength(2)); // dart:core, a.dart
}
void test_library_cycle_loop() {
List<Source> sources = newSources({
'/a.dart': '''
import 'c.dart';
''',
'/b.dart': '''
import 'a.dart';
''',
'/c.dart': '''
import 'b.dart';
'''
});
List<Map<ResultDescriptor, dynamic>> results =
computeLibraryResultsMap(sources, LIBRARY_CYCLE).toList();
List<LibraryElement> component0 = getLibraryCycle(results[0]);
List<LibraryElement> component1 = getLibraryCycle(results[1]);
List<LibraryElement> component2 = getLibraryCycle(results[2]);
expect(component0, hasLength(3));
expect(component1, hasLength(3));
expect(component2, hasLength(3));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results[0]);
List<LibrarySpecificUnit> units1 = getLibraryCycleUnits(results[1]);
List<LibrarySpecificUnit> units2 = getLibraryCycleUnits(results[2]);
expect(units0, hasLength(3));
expect(units1, hasLength(3));
expect(units2, hasLength(3));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results[0]);
List<LibrarySpecificUnit> dep1 = getLibraryCycleDependencies(results[1]);
List<LibrarySpecificUnit> dep2 = getLibraryCycleDependencies(results[2]);
expect(dep0, hasLength(1)); // dart:core
expect(dep1, hasLength(1)); // dart:core
expect(dep2, hasLength(1)); // dart:core
}
void test_library_cycle_override_inference_incremental() {
enableStrongMode();
Source lib1Source = newSource(
'/my_lib1.dart',
'''
library my_lib1;
import 'my_lib3.dart';
''');
Source lib2Source = newSource(
'/my_lib2.dart',
'''
library my_lib2;
import 'my_lib1.dart';
''');
Source lib3Source = newSource(
'/my_lib3.dart',
'''
library my_lib3;
import 'my_lib2.dart';
class A {
int foo(int x) => null;
}
class B extends A {
foo(x) => null;
}
''');
AnalysisTarget lib1Target = new LibrarySpecificUnit(lib1Source, lib1Source);
AnalysisTarget lib2Target = new LibrarySpecificUnit(lib2Source, lib2Source);
AnalysisTarget lib3Target = new LibrarySpecificUnit(lib3Source, lib3Source);
computeResult(lib1Target, RESOLVED_UNIT);
computeResult(lib2Target, RESOLVED_UNIT);
computeResult(lib3Target, RESOLVED_UNIT);
CompilationUnit unit = outputs[RESOLVED_UNIT];
ClassElement b = unit.declarations[1].element;
expect(b.getMethod('foo').returnType.toString(), 'int');
// add a dummy edit.
context.setContents(
lib1Source,
'''
library my_lib1;
import 'my_lib3.dart';
var foo = 123;
''');
_expectInvalid(lib1Source);
_expectInvalid(lib2Source);
_expectInvalid(lib3Source);
computeResult(lib1Target, RESOLVED_UNIT);
computeResult(lib2Target, RESOLVED_UNIT);
computeResult(lib3Target, RESOLVED_UNIT);
unit = outputs[RESOLVED_UNIT];
b = unit.declarations[1].element;
expect(b.getMethod('foo').returnType.toString(), 'int',
reason: 'edit should not affect member inference');
}
void test_library_cycle_self_loop() {
List<Source> sources = newSources({
'/a.dart': '''
import 'a.dart';
'''
});
List<Map<ResultDescriptor, dynamic>> results =
computeLibraryResultsMap(sources, LIBRARY_CYCLE).toList();
List<LibraryElement> component0 = getLibraryCycle(results[0]);
expect(component0, hasLength(1));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results[0]);
expect(units0, hasLength(1));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results[0]);
expect(dep0, hasLength(1)); // dart:core
}
void test_library_cycle_singleton() {
Source source = newSource(
'/test.dart',
'''
import 'dart:core';
''');
computeResult(source, LIBRARY_CYCLE);
List<LibraryElement> component = getLibraryCycle(outputs);
List<LibrarySpecificUnit> units = getLibraryCycleUnits(outputs);
List<LibrarySpecificUnit> deps = getLibraryCycleDependencies(outputs);
expect(component, hasLength(1));
expect(units, hasLength(1));
expect(deps, hasLength(1));
}
void test_library_cycle_tree() {
List<Source> sources = newSources({
'/a.dart': '''
''',
'/b.dart': '''
''',
'/c.dart': '''
import 'a.dart';
import 'b.dart';
'''
});
List<Map<ResultDescriptor, dynamic>> results =
computeLibraryResultsMap(sources, LIBRARY_CYCLE);
List<LibraryElement> component0 = getLibraryCycle(results[0]);
List<LibraryElement> component1 = getLibraryCycle(results[1]);
List<LibraryElement> component2 = getLibraryCycle(results[2]);
expect(component0, hasLength(1));
expect(component1, hasLength(1));
expect(component2, hasLength(1));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results[0]);
List<LibrarySpecificUnit> units1 = getLibraryCycleUnits(results[1]);
List<LibrarySpecificUnit> units2 = getLibraryCycleUnits(results[2]);
expect(units0, hasLength(1));
expect(units1, hasLength(1));
expect(units2, hasLength(1));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results[0]);
List<LibrarySpecificUnit> dep1 = getLibraryCycleDependencies(results[1]);
List<LibrarySpecificUnit> dep2 = getLibraryCycleDependencies(results[2]);
expect(dep0, hasLength(1)); // dart:core
expect(dep1, hasLength(1)); // dart:core,
expect(dep2, hasLength(3)); // dart:core, a.dart, b.dart
}
void test_library_double_loop() {
List<Source> sources = newSources({
'/a.dart': '''
import 'b.dart';
''',
'/b.dart': '''
import 'a.dart';
''',
'/c.dart': '''
import 'd.dart' as foo;
import 'a.dart' as bar;
export 'b.dart';
''',
'/d.dart': '''
import 'c.dart' as foo;
import 'b.dart' as bar;
export 'a.dart';
'''
});
List<Map<ResultDescriptor, dynamic>> results =
computeLibraryResultsMap(sources, LIBRARY_CYCLE).toList();
List<LibraryElement> component0 = getLibraryCycle(results[0]);
List<LibraryElement> component1 = getLibraryCycle(results[1]);
List<LibraryElement> component2 = getLibraryCycle(results[2]);
List<LibraryElement> component3 = getLibraryCycle(results[3]);
expect(component0, hasLength(2));
expect(component1, hasLength(2));
expect(component2, hasLength(2));
expect(component3, hasLength(2));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results[0]);
List<LibrarySpecificUnit> units1 = getLibraryCycleUnits(results[1]);
List<LibrarySpecificUnit> units2 = getLibraryCycleUnits(results[2]);
List<LibrarySpecificUnit> units3 = getLibraryCycleUnits(results[3]);
expect(units0, hasLength(2));
expect(units1, hasLength(2));
expect(units2, hasLength(2));
expect(units3, hasLength(2));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results[0]);
List<LibrarySpecificUnit> dep1 = getLibraryCycleDependencies(results[1]);
List<LibrarySpecificUnit> dep2 = getLibraryCycleDependencies(results[2]);
List<LibrarySpecificUnit> dep3 = getLibraryCycleDependencies(results[3]);
expect(dep0, hasLength(1)); // dart:core
expect(dep1, hasLength(1)); // dart:core
expect(dep2, hasLength(3)); // dart:core, a.dart, b.dart
expect(dep3, hasLength(3)); // dart:core, a.dart, b.dart
}
void test_library_double_loop_parts() {
List<Source> sources = newSources({
'/a.dart': '''
import 'b.dart';
part 'aa.dart';
part 'ab.dart';
''',
'/b.dart': '''
import 'a.dart';
''',
'/aa.dart': '''
''',
'/ab.dart': '''
''',
'/c.dart': '''
import 'd.dart' as foo;
import 'a.dart' as bar;
export 'b.dart';
''',
'/d.dart': '''
import 'c.dart' as foo;
import 'b.dart' as bar;
export 'a.dart';
part 'da.dart';
part 'db.dart';
''',
'/da.dart': '''
''',
'/db.dart': '''
'''
});
computeResult(sources[0], LIBRARY_CYCLE);
Map<ResultDescriptor, dynamic> results0 = outputs;
computeResult(sources[1], LIBRARY_CYCLE);
Map<ResultDescriptor, dynamic> results1 = outputs;
computeResult(sources[4], LIBRARY_CYCLE);
Map<ResultDescriptor, dynamic> results4 = outputs;
computeResult(sources[5], LIBRARY_CYCLE);
Map<ResultDescriptor, dynamic> results5 = outputs;
List<LibraryElement> component0 = getLibraryCycle(results0);
List<LibraryElement> component1 = getLibraryCycle(results1);
List<LibraryElement> component4 = getLibraryCycle(results4);
List<LibraryElement> component5 = getLibraryCycle(results5);
expect(component0, hasLength(2));
expect(component1, hasLength(2));
expect(component4, hasLength(2));
expect(component5, hasLength(2));
List<LibrarySpecificUnit> units0 = getLibraryCycleUnits(results0);
List<LibrarySpecificUnit> units1 = getLibraryCycleUnits(results1);
List<LibrarySpecificUnit> units4 = getLibraryCycleUnits(results4);
List<LibrarySpecificUnit> units5 = getLibraryCycleUnits(results5);
expect(units0, hasLength(4));
expect(units1, hasLength(4));
expect(units4, hasLength(4));
expect(units5, hasLength(4));
List<LibrarySpecificUnit> dep0 = getLibraryCycleDependencies(results0);
List<LibrarySpecificUnit> dep1 = getLibraryCycleDependencies(results1);
List<LibrarySpecificUnit> dep4 = getLibraryCycleDependencies(results4);
List<LibrarySpecificUnit> dep5 = getLibraryCycleDependencies(results5);
expect(dep0, hasLength(1)); // dart:core
expect(dep1, hasLength(1)); // dart:core
expect(dep4, hasLength(5)); // dart:core, a.dart, aa.dart, ab.dart, b.dart
expect(dep5, hasLength(5)); // dart:core, a.dart, aa.dart, ab.dart, b.dart
}
void _assertLibraryCycle(Source source, List<Source> expected) {
computeResult(source, LIBRARY_CYCLE);
List<LibraryElement> cycle = outputs[LIBRARY_CYCLE] as List<LibraryElement>;
expect(cycle.map((e) => e.source), unorderedEquals(expected));
}
void _expectInvalid(Source librarySource) {
CacheEntry entry = context.getCacheEntry(librarySource);
expect(entry.getState(LIBRARY_CYCLE), CacheState.INVALID);
}
}
@reflectiveTest
class ContainingLibrariesTaskTest extends _AbstractDartTaskTest {
List<Source> getContainingLibraries(Map<ResultDescriptor, dynamic> outputs) {
return outputs[CONTAINING_LIBRARIES] as List<Source>;
}
test_perform_definingCompilationUnit() {
AnalysisTarget library = newSource('/test.dart', 'library test;');
computeResult(library, INCLUDED_PARTS);
computeResult(library, CONTAINING_LIBRARIES,
matcher: isContainingLibrariesTask);
expect(outputs, hasLength(1));
List<Source> containingLibraries = getContainingLibraries(outputs);
expect(containingLibraries, unorderedEquals([library]));
}
test_perform_partInMultipleLibraries() {
AnalysisTarget library1 =
newSource('/lib1.dart', 'library test; part "part.dart";');
AnalysisTarget library2 =
newSource('/lib2.dart', 'library test; part "part.dart";');
AnalysisTarget part = newSource('/part.dart', 'part of test;');
computeResult(library1, INCLUDED_PARTS);
computeResult(library2, INCLUDED_PARTS);
computeResult(part, SOURCE_KIND);
computeResult(part, CONTAINING_LIBRARIES,
matcher: isContainingLibrariesTask);
expect(outputs, hasLength(1));
List<Source> containingLibraries = getContainingLibraries(outputs);
expect(containingLibraries, unorderedEquals([library1, library2]));
}
test_perform_partInSingleLibrary() {
AnalysisTarget library =
newSource('/lib.dart', 'library test; part "part.dart";');
AnalysisTarget part = newSource('/part.dart', 'part of test;');
computeResult(library, INCLUDED_PARTS);
computeResult(part, SOURCE_KIND);
computeResult(part, CONTAINING_LIBRARIES,
matcher: isContainingLibrariesTask);
expect(outputs, hasLength(1));
List<Source> containingLibraries = getContainingLibraries(outputs);
expect(containingLibraries, unorderedEquals([library]));
}
}
@reflectiveTest
class DartErrorsTaskTest extends _AbstractDartTaskTest {
List<AnalysisError> getDartErrors(Map<ResultDescriptor, dynamic> outputs) {
return outputs[DART_ERRORS] as List<AnalysisError>;
}
test_perform_definingCompilationUnit() {
AnalysisTarget library =
newSource('/test.dart', 'library test; import "dart:math";');
computeResult(library, INCLUDED_PARTS);
computeResult(library, DART_ERRORS, matcher: isDartErrorsTask);
expect(outputs, hasLength(1));
List<AnalysisError> errors = getDartErrors(outputs);
expect(errors, hasLength(1));
}
test_perform_partInSingleLibrary() {
AnalysisTarget library = newSource(
'/lib.dart', 'library test; import "dart:math"; part "part.dart";');
AnalysisTarget part =
newSource('/part.dart', 'part of test; class A extends A {}');
computeResult(library, INCLUDED_PARTS);
computeResult(library, DART_ERRORS);
computeResult(part, DART_ERRORS, matcher: isDartErrorsTask);
expect(outputs, hasLength(1));
List<AnalysisError> errors = getDartErrors(outputs);
// This should contain only the errors in the part file, not the ones in the
// library.
expect(errors, hasLength(1));
}
}
@reflectiveTest
class EvaluateUnitConstantsTaskTest extends _AbstractDartTaskTest {
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT12);
expect(outputs[RESOLVED_UNIT12], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT12], isTrue);
}
test_perform() {
Source source = newSource(
'/test.dart',
'''
class C {
const C();
}
@x
f() {}
const x = const C();
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT12,
matcher: isEvaluateUnitConstantsTask);
CompilationUnit unit = outputs[RESOLVED_UNIT12];
CompilationUnitElement unitElement = unit.element;
expect(
(unitElement.types[0].constructors[0] as ConstructorElementImpl)
.isCycleFree,
isTrue);
expect(
(unitElement.functions[0].metadata[0] as ElementAnnotationImpl)
.evaluationResult,
isNotNull);
expect(
(unitElement.topLevelVariables[0] as TopLevelVariableElementImpl)
.evaluationResult,
isNotNull);
}
}
@reflectiveTest
class GatherUsedImportedElementsTaskTest extends _AbstractDartTaskTest {
UsedImportedElements usedElements;
Set<String> usedElementNames;
test_perform_inBody() {
newSource(
'/a.dart',
r'''
library lib_a;
class A {}
''');
newSource(
'/b.dart',
r'''
library lib_b;
class B {}
''');
Source source = newSource(
'/test.dart',
r'''
import 'a.dart';
import 'b.dart';
main() {
new A();
}''');
_computeUsedElements(source);
// validate
expect(usedElementNames, unorderedEquals(['A']));
}
test_perform_inComment_exportDirective() {
Source source = newSource(
'/test.dart',
r'''
import 'dart:async';
/// Use [Future].
export 'dart:math';
''');
_computeUsedElements(source);
expect(usedElementNames, unorderedEquals(['Future']));
}
test_perform_inComment_importDirective() {
Source source = newSource(
'/test.dart',
r'''
import 'dart:async';
/// Use [Future].
import 'dart:math';
''');
_computeUsedElements(source);
expect(usedElementNames, unorderedEquals(['Future']));
}
test_perform_inComment_libraryDirective() {
Source source = newSource(
'/test.dart',
r'''
/// Use [Future].
library test;
import 'dart:async';
''');
_computeUsedElements(source);
expect(usedElementNames, unorderedEquals(['Future']));
}
test_perform_inComment_topLevelFunction() {
Source source = newSource(
'/test.dart',
r'''
import 'dart:async';
/// Use [Future].
main() {}
''');
_computeUsedElements(source);
expect(usedElementNames, unorderedEquals(['Future']));
}
void _computeUsedElements(Source source) {
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, USED_IMPORTED_ELEMENTS,
matcher: isGatherUsedImportedElementsTask);
usedElements = outputs[USED_IMPORTED_ELEMENTS];
usedElementNames = usedElements.elements.map((e) => e.name).toSet();
}
}
@reflectiveTest
class GatherUsedLocalElementsTaskTest extends _AbstractDartTaskTest {
UsedLocalElements usedElements;
Set<String> usedElementNames;
test_perform_forPart_afterLibraryUpdate() {
Source libSource = newSource(
'/my_lib.dart',
'''
library my_lib;
part 'my_part.dart';
foo() => null;
class _LocalClass {}
''');
Source partSource = newSource(
'/my_part.dart',
'''
part of my_lib;
bar() {
print(_LocalClass);
}
''');
AnalysisTarget libTarget = new LibrarySpecificUnit(libSource, libSource);
AnalysisTarget partTarget = new LibrarySpecificUnit(libSource, partSource);
computeResult(libTarget, USED_LOCAL_ELEMENTS);
computeResult(partTarget, USED_LOCAL_ELEMENTS);
// _LocalClass is used in my_part.dart
{
UsedLocalElements usedElements =
analysisCache.getValue(partTarget, USED_LOCAL_ELEMENTS);
expect(usedElements.elements, contains(predicate((Element e) {
return e.displayName == '_LocalClass';
})));
}
// change my_lib.dart and recompute
context.setContents(
libSource,
'''
library my_lib;
part 'my_part.dart';
String foo() => null;
class _LocalClass {}
''');
computeResult(libTarget, USED_LOCAL_ELEMENTS);
computeResult(partTarget, USED_LOCAL_ELEMENTS);
// _LocalClass should still be used in my_part.dart
{
UsedLocalElements usedElements =
analysisCache.getValue(partTarget, USED_LOCAL_ELEMENTS);
expect(usedElements.elements, contains(predicate((Element e) {
return e.displayName == '_LocalClass';
})));
}
}
test_perform_localVariable() {
Source source = newSource(
'/test.dart',
r'''
main() {
var v1 = 1;
var v2 = 2;
print(v2);
}''');
_computeUsedElements(source);
// validate
expect(usedElementNames, unorderedEquals(['v2']));
}
test_perform_method() {
Source source = newSource(
'/test.dart',
r'''
class A {
_m1() {}
_m2() {}
}
main(A a, p) {
a._m2();
p._m3();
}
''');
_computeUsedElements(source);
// validate
expect(usedElementNames, unorderedEquals(['A', 'a', 'p', '_m2']));
expect(usedElements.members, unorderedEquals(['_m2', '_m3']));
}
void _computeUsedElements(Source source) {
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, USED_LOCAL_ELEMENTS,
matcher: isGatherUsedLocalElementsTask);
usedElements = outputs[USED_LOCAL_ELEMENTS];
usedElementNames = usedElements.elements.map((e) => e.name).toSet();
}
}
@reflectiveTest
class GenerateHintsTaskTest extends _AbstractDartTaskTest {
test_perform_bestPractices_missingReturn() {
Source source = newSource(
'/test.dart',
'''
int main() {
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.MISSING_RETURN]);
}
test_perform_dart2js() {
AnalysisOptionsImpl options = new AnalysisOptionsImpl();
options.dart2jsHint = true;
prepareAnalysisContext(options);
Source source = newSource(
'/test.dart',
'''
main(p) {
if (p is double) {
print('double');
}
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.IS_DOUBLE]);
}
test_perform_deadCode() {
Source source = newSource(
'/test.dart',
'''
main() {
if (false) {
print('how?');
}
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.DEAD_CODE]);
}
test_perform_disabled() {
context.analysisOptions =
new AnalysisOptionsImpl.from(context.analysisOptions)..hint = false;
Source source = newSource(
'/test.dart',
'''
int main() {
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertNoErrors();
}
test_perform_imports_duplicateImport() {
newSource(
'/a.dart',
r'''
library lib_a;
class A {}
''');
Source source = newSource(
'/test.dart',
r'''
import 'a.dart';
import 'a.dart';
main() {
new A();
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.DUPLICATE_IMPORT]);
}
test_perform_imports_unusedImport_one() {
newSource(
'/a.dart',
r'''
library lib_a;
class A {}
''');
newSource(
'/b.dart',
r'''
library lib_b;
class B {}
''');
Source source = newSource(
'/test.dart',
r'''
import 'a.dart';
import 'b.dart';
main() {
new A();
}''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.UNUSED_IMPORT]);
}
test_perform_imports_unusedImport_zero() {
newSource(
'/a.dart',
r'''
library lib_a;
class A {}
''');
Source source = newSource(
'/test.dart',
r'''
import 'a.dart';
main() {
new A();
}''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertNoErrors();
}
test_perform_overrideVerifier() {
Source source = newSource(
'/test.dart',
'''
class A {}
class B {
@override
m() {}
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(
<ErrorCode>[HintCode.OVERRIDE_ON_NON_OVERRIDING_METHOD]);
}
test_perform_todo() {
Source source = newSource(
'/test.dart',
'''
main() {
// TODO(developer) foo bar
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[TodoCode.TODO]);
}
test_perform_unusedLocalElements_class() {
Source source = newSource(
'/test.dart',
'''
class _A {}
class _B {}
main() {
new _A();
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[HintCode.UNUSED_ELEMENT]);
}
test_perform_unusedLocalElements_localVariable() {
Source source = newSource(
'/test.dart',
'''
main() {
var v = 42;
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener
.assertErrorsWithCodes(<ErrorCode>[HintCode.UNUSED_LOCAL_VARIABLE]);
}
test_perform_unusedLocalElements_method() {
Source source = newSource(
'/my_lib.dart',
'''
library my_lib;
part 'my_part.dart';
class A {
_ma() {}
_mb() {}
_mc() {}
}
''');
newSource(
'/my_part.dart',
'''
part of my_lib;
f(A a) {
a._mb();
}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, HINTS, matcher: isGenerateHintsTask);
// validate
_fillErrorListener(HINTS);
errorListener.assertErrorsWithCodes(
<ErrorCode>[HintCode.UNUSED_ELEMENT, HintCode.UNUSED_ELEMENT]);
}
}
@reflectiveTest
class GenerateLintsTaskTest extends _AbstractDartTaskTest {
void enableLints() {
AnalysisOptionsImpl options = context.analysisOptions;
options.lint = true;
context.analysisOptions = options;
}
@override
void setUp() {
super.setUp();
enableLints();
setLints(context, [new GenerateLintsTaskTest_TestLinter()]);
}
@override
void tearDown() {
setLints(context, []);
super.tearDown();
}
test_camel_case_types() {
Source source = newSource(
'/test.dart',
'''
class a { }
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, LINTS, matcher: isGenerateLintsTask);
// validate
_fillErrorListener(LINTS);
errorListener.assertErrorsWithCodes(<ErrorCode>[_testLintCode]);
}
}
class GenerateLintsTaskTest_AstVisitor extends SimpleAstVisitor {
Linter linter;
GenerateLintsTaskTest_AstVisitor(this.linter);
@override
visitClassDeclaration(ClassDeclaration node) {
if (!new RegExp(r'^([_]*)([A-Z]+[a-z0-9]*)+$')
.hasMatch(node.name.toString())) {
linter.reporter.reportErrorForNode(_testLintCode, node, []);
}
}
}
class GenerateLintsTaskTest_TestLinter extends Linter {
@override
String get name => 'GenerateLintsTaskTest_TestLinter';
@override
AstVisitor getVisitor() => new GenerateLintsTaskTest_AstVisitor(this);
}
@reflectiveTest
class InferInstanceMembersInUnitTaskTest extends _AbstractDartTaskTest {
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT10);
expect(outputs[RESOLVED_UNIT10], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT10], isTrue);
}
void test_perform() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
class A {
X f;
Y m(Z x) {}
}
class B extends A {
var f;
m(x) {}
}
class X {}
class Y {}
class Z {}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT10,
matcher: isInferInstanceMembersInUnitTask);
CompilationUnit unit = outputs[RESOLVED_UNIT10];
VariableDeclaration field = AstFinder.getFieldInClass(unit, 'B', 'f');
MethodDeclaration method = AstFinder.getMethodInClass(unit, 'B', 'm');
DartType typeX = resolutionMap
.elementDeclaredByClassDeclaration(AstFinder.getClass(unit, 'X'))
.type;
DartType typeY = resolutionMap
.elementDeclaredByClassDeclaration(AstFinder.getClass(unit, 'Y'))
.type;
DartType typeZ = resolutionMap
.elementDeclaredByClassDeclaration(AstFinder.getClass(unit, 'Z'))
.type;
expect(
resolutionMap.elementDeclaredByVariableDeclaration(field).type, typeX);
expect(resolutionMap.elementDeclaredByMethodDeclaration(method).returnType,
typeY);
expect(
resolutionMap
.elementDeclaredByMethodDeclaration(method)
.parameters[0]
.type,
typeZ);
}
void test_perform_cross_library_const() {
enableStrongMode();
AnalysisTarget firstSource = newSource(
'/first.dart',
'''
library first;
const a = 'hello';
''');
AnalysisTarget secondSource = newSource(
'/second.dart',
'''
import 'first.dart';
const b = a;
class M {
String c = a;
}
''');
computeResult(
new LibrarySpecificUnit(firstSource, firstSource), RESOLVED_UNIT10,
matcher: isInferInstanceMembersInUnitTask);
CompilationUnit firstUnit = outputs[RESOLVED_UNIT10];
computeResult(
new LibrarySpecificUnit(secondSource, secondSource), RESOLVED_UNIT10);
CompilationUnit secondUnit = outputs[RESOLVED_UNIT10];
VariableDeclaration variableA =
AstFinder.getTopLevelVariable(firstUnit, 'a');
VariableDeclaration variableB =
AstFinder.getTopLevelVariable(secondUnit, 'b');
VariableDeclaration variableC =
AstFinder.getFieldInClass(secondUnit, 'M', 'c');
InterfaceType stringType = context.typeProvider.stringType;
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableA).type,
stringType);
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableB).type,
stringType);
expect(variableB.initializer.staticType, stringType);
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableC).type,
stringType);
expect(variableC.initializer.staticType, stringType);
}
void test_perform_reresolution() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
const topLevel = '';
class C {
String field = topLevel;
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT10);
CompilationUnit unit = outputs[RESOLVED_UNIT10];
VariableDeclaration topLevelDecl =
AstFinder.getTopLevelVariable(unit, 'topLevel');
VariableDeclaration fieldDecl =
AstFinder.getFieldInClass(unit, 'C', 'field');
VariableElement topLevel = topLevelDecl.name.staticElement;
VariableElement field = fieldDecl.name.staticElement;
InterfaceType stringType = context.typeProvider.stringType;
expect(topLevel.type, stringType);
expect(field.type, stringType);
expect(fieldDecl.initializer.staticType, stringType);
}
}
@reflectiveTest
class InferStaticVariableTypesInUnitTaskTest extends _AbstractDartTaskTest {
@override
void setUp() {
super.setUp();
enableStrongMode();
}
test_created_resolved_unit() {
Source source = newSource(
'/test.dart',
r'''
library lib;
class A {}
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT8);
expect(outputs[RESOLVED_UNIT8], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT8], isTrue);
}
void test_perform_const_field() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
class M {
static const X = "";
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT8,
matcher: isInferStaticVariableTypesInUnitTask);
CompilationUnit unit = outputs[RESOLVED_UNIT8];
VariableDeclaration declaration = AstFinder.getFieldInClass(unit, 'M', 'X');
InterfaceType stringType = context.typeProvider.stringType;
expect(resolutionMap.elementDeclaredByVariableDeclaration(declaration).type,
stringType);
}
test_perform_hasParseError() {
Source source = newSource(
'/test.dart',
r'''
@(i $=
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT8);
expect(outputs[RESOLVED_UNIT8], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT8], isTrue);
}
void test_perform_nestedDeclarations() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
var f = (int x) {
int squared(int value) => value * value;
var xSquared = squared(x);
return xSquared;
};
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT8,
matcher: isInferStaticVariableTypesInUnitTask);
}
void test_perform_recursive() {
enableStrongMode();
AnalysisTarget firstSource = newSource(
'/first.dart',
'''
import 'second.dart';
var a = new M();
var c = b;
''');
AnalysisTarget secondSource = newSource(
'/second.dart',
'''
import 'first.dart';
var b = a;
class M {}
''');
computeResult(
new LibrarySpecificUnit(firstSource, firstSource), RESOLVED_UNIT8,
matcher: isInferStaticVariableTypesInUnitTask);
CompilationUnit firstUnit = outputs[RESOLVED_UNIT8];
computeResult(
new LibrarySpecificUnit(secondSource, secondSource), RESOLVED_UNIT8);
CompilationUnit secondUnit = outputs[RESOLVED_UNIT8];
VariableDeclaration variableA =
AstFinder.getTopLevelVariable(firstUnit, 'a');
VariableDeclaration variableB =
AstFinder.getTopLevelVariable(secondUnit, 'b');
VariableDeclaration variableC =
AstFinder.getTopLevelVariable(firstUnit, 'c');
ClassDeclaration classM = AstFinder.getClass(secondUnit, 'M');
DartType typeM =
resolutionMap.elementDeclaredByClassDeclaration(classM).type;
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableA).type,
typeM);
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableB).type,
typeM);
expect(variableB.initializer.staticType, typeM);
expect(resolutionMap.elementDeclaredByVariableDeclaration(variableC).type,
typeM);
expect(variableC.initializer.staticType, typeM);
}
void test_perform_simple() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
var X = 1;
var Y = () {
return 1 + X;
};
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT8,
matcher: isInferStaticVariableTypesInUnitTask);
CompilationUnit unit = outputs[RESOLVED_UNIT8];
TopLevelVariableDeclaration declaration = unit.declarations[1];
FunctionExpression function =
declaration.variables.variables[0].initializer;
BlockFunctionBody body = function.body;
ReturnStatement statement = body.block.statements[0];
Expression expression = statement.expression;
InterfaceType intType = context.typeProvider.intType;
expect(expression.staticType, intType);
}
test_staticModeHints_forStaticVariableInference() {
context.analysisOptions =
new AnalysisOptionsImpl.from(context.analysisOptions)
..strongModeHints = true;
Source source = newSource(
'/test.dart',
r'''
var V = [42];
''');
LibrarySpecificUnit target = new LibrarySpecificUnit(source, source);
computeResult(target, RESOLVED_UNIT8);
expect(outputs[RESOLVED_UNIT8], isNotNull);
expect(outputs[CREATED_RESOLVED_UNIT8], isTrue);
// An INFERRED_TYPE_LITERAL error should be generated.
List<AnalysisError> errors =
outputs[STATIC_VARIABLE_RESOLUTION_ERRORS_IN_UNIT]
as List<AnalysisError>;
expect(errors, hasLength(1));
expect(errors[0].errorCode, StrongModeCode.INFERRED_TYPE_LITERAL);
}
}
@reflectiveTest
class InferStaticVariableTypeTaskTest extends _AbstractDartTaskTest {
void test_getDeclaration_staticField() {
AnalysisTarget source = newSource(
'/test.dart',
'''
class C {
var field = '';
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableDeclaration declaration =
AstFinder.getFieldInClass(unit, 'C', 'field');
VariableElement variable = declaration.name.staticElement;
InferStaticVariableTypeTask inferTask =
new InferStaticVariableTypeTask(task.context, variable);
expect(inferTask.getDeclaration(unit), declaration);
}
void test_getDeclaration_topLevel() {
AnalysisTarget source = newSource(
'/test.dart',
'''
var topLevel = '';
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableDeclaration declaration =
AstFinder.getTopLevelVariable(unit, 'topLevel');
VariableElement variable = declaration.name.staticElement;
InferStaticVariableTypeTask inferTask =
new InferStaticVariableTypeTask(task.context, variable);
expect(inferTask.getDeclaration(unit), declaration);
}
void test_perform() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test3.dart',
'''
var topLevel3 = '';
class C {
var field3 = topLevel3;
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableDeclaration topLevelDecl =
AstFinder.getTopLevelVariable(unit, 'topLevel3');
VariableDeclaration fieldDecl =
AstFinder.getFieldInClass(unit, 'C', 'field3');
VariableElement topLevel = topLevelDecl.name.staticElement;
VariableElement field = fieldDecl.name.staticElement;
computeResult(field, INFERRED_STATIC_VARIABLE,
matcher: isInferStaticVariableTypeTask);
InterfaceType stringType = context.typeProvider.stringType;
expect(topLevel.type, stringType);
expect(field.type, stringType);
expect(fieldDecl.initializer.staticType, stringType);
}
void test_perform_const() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
const topLevel = "hello";
class C {
var field = topLevel;
}
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableElement topLevel =
AstFinder.getTopLevelVariable(unit, 'topLevel').name.staticElement;
VariableElement field =
AstFinder.getFieldInClass(unit, 'C', 'field').name.staticElement;
computeResult(field, INFERRED_STATIC_VARIABLE,
matcher: isInferStaticVariableTypeTask);
InterfaceType stringType = context.typeProvider.stringType;
expect(topLevel.type, stringType);
expect(field.type, stringType);
}
void test_perform_cycle() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
var piFirst = true;
var pi = piFirst ? 3.14 : tau / 2;
var tau = piFirst ? pi * 2 : 6.28;
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableElement piFirst =
AstFinder.getTopLevelVariable(unit, 'piFirst').name.staticElement;
VariableElement pi =
AstFinder.getTopLevelVariable(unit, 'pi').name.staticElement;
VariableElement tau =
AstFinder.getTopLevelVariable(unit, 'tau').name.staticElement;
computeResult(piFirst, INFERRED_STATIC_VARIABLE,
matcher: isInferStaticVariableTypeTask);
expect(piFirst.type, context.typeProvider.boolType);
expect(pi.type.isDynamic, isTrue);
expect(tau.type.isDynamic, isTrue);
}
void test_perform_error() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
var a = '' / null;
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableElement a =
AstFinder.getTopLevelVariable(unit, 'a').name.staticElement;
computeResult(a, INFERRED_STATIC_VARIABLE,
matcher: isInferStaticVariableTypeTask);
expect(a.type.isDynamic, isTrue);
}
void test_perform_null() {
enableStrongMode();
AnalysisTarget source = newSource(
'/test.dart',
'''
var a = null;
''');
computeResult(new LibrarySpecificUnit(source, source), RESOLVED_UNIT7);
CompilationUnit unit = outputs[RESOLVED_UNIT7];
VariableElement a =
AstFinder.getTopLevelVariable(unit, 'a').name.staticElement;
computeResult(a, INFERRED_STATIC_VARIABLE,
matcher: isInferStaticVariableTypeTask);
expect(a.type.isDynamic, isTrue);
}
}
@reflectiveTest
class LibraryErrorsReadyTaskTest extends _AbstractDartTaskTest {
test_perform() {
Source library = newSource(
'/lib.dart',
r'''
library lib;
part 'part1.dart';
part 'part2.dart';
X v1;
''');
Source part1 = newSource(
'/part1.dart',
r'''
part of lib;
X v2;
''');
Source part2 = newSource(
'/part2.dart',
r'''
part of lib;
X v3;
''');
computeResult(library, LIBRARY_ERRORS_READY,
matcher: isLibraryErrorsReadyTask);
expect(outputs, hasLength(1));
bool ready = outputs[LIBRARY_ERRORS_READY];
expect(ready, isTrue);
expect(context.getErrors(library).errors, hasLength(1));
expect(context.getErrors(part1).errors, hasLength(1));
expect(context.getErrors(part2).errors, hasLength(1));
}
}
@reflectiveTest
class LibraryUnitErrorsTaskTest extends _AbstractDartTaskTest {
List<AnalysisError> getLibraryUnitErrors(
Map<ResultDescriptor, dynamic> outputs) {
return outputs[LIBRARY_UNIT_ERRORS] as List<AnalysisError>;
}
test_perform_definingCompilationUnit() {
AnalysisTarget library =
newSource('/test.dart', 'library test; import "dart:math";');
computeResult(
new LibrarySpecificUnit(library, library), LIBRARY_UNIT_ERRORS,
matcher: isLibraryUnitErrorsTask);
expect(outputs, hasLength(1));
List<AnalysisError> errors = getLibraryUnitErrors(outputs);
expect(errors, hasLength(1));
}
test_perform_partInSingleLibrary() {
AnalysisTarget library =
newSource('/lib.dart', 'library test; part "part.dart";');
AnalysisTarget part = newSource('/part.dart', 'part of test;');
computeResult(new LibrarySpecificUnit(library, part), LIBRARY_UNIT_ERRORS,
matcher: isLibraryUnitErrorsTask);
expect(outputs, hasLength(1));
List<AnalysisError> errors = getLibraryUnitErrors(outputs);
expect(errors, hasLength(0));
}
}
@reflectiveTest
class ParseDartTaskTest extends _AbstractDartTaskTest {
Source source;
test_perform() {
_performParseTask(r'''
part of lib;
class B {}''');
expect(outputs, hasLength(11));
expect(outputs[EXPLICITLY_IMPORTED_LIBRARIES], hasLength(0));
expect(outputs[EXPORTED_LIBRARIES], hasLength(0));
_assertHasCore(outputs[IMPORTED_LIBRARIES], 1);
expect(outputs[INCLUDED_PARTS], hasLength(0));
expect(outputs[LIBRARY_SPECIFIC_UNITS], hasLength(1));
expect(outputs[PARSE_ERRORS], hasLength(0));
expect(outputs[PARSED_UNIT], isNotNull);
expect(outputs[REFERENCED_NAMES], isNotNull);
expect(outputs[REFERENCED_SOURCES], hasLength(2));
expect(outputs[SOURCE_KIND], SourceKind.PART);
expect(outputs[UNITS], hasLength(1));
}
test_perform_computeSourceKind_noDirectives_hasContainingLibrary() {
// Parse "lib.dart" to let the context know that "test.dart" is included.
computeResult(
newSource(
'/lib.dart',
r'''
library lib;
part 'test.dart';
'''),
PARSED_UNIT);