blob: fdb52f5cf36a07fd7ff6e8023a80bbb751b40654 [file]
// Copyright (c) 2019, 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.
import 'package:analysis_server/src/services/correction/sort_members.dart';
import 'package:analyzer/dart/analysis/analysis_context_collection.dart';
import 'package:analyzer/dart/analysis/results.dart';
import 'package:analyzer/dart/analysis/session.dart';
import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/file_system/physical_file_system.dart';
import 'package:analyzer_testing/package_root.dart';
import 'package:args/args.dart';
import 'package:test/test.dart';
/// The purpose of this test is to validate that all elements
/// (classes, enums, etc, methods, functions, fields, operators, etc.) are
/// sorted alphabetically by name (either manually or via an IDE, e.g.
/// VS Code 'Dart: Sort Members' command or IntelliJ 'Sort Members'
/// context menu.)
/// Pass `--update` as argument to this script to have the sorted files
/// written back.
void main([List<String> args = const <String>[]]) {
var parsed = argParser.parse(args);
if (parsed.flag('update')) {
updateUnsorted = true;
}
var sources = parsed.multiOption('source');
group('analysis_server', () => buildTestsForAnalysisServer(sources));
group('analyzer', () => buildTestsForAnalyzer(sources));
group('analyzer_cli', () => buildTestsForAnalyzerCli(sources));
group('analyzer_plugin', () => buildTestsForAnalyzerPlugin(sources));
group('linter', () => buildTestsForLinter(sources));
}
final argParser = ArgParser()
..addFlag('update', help: 'Writes the sorted files')
..addMultiOption(
'source',
abbr: 's',
help: 'Absolute paths to sources to check',
);
bool updateUnsorted = false;
void buildTests({
required String packagePath,
required List<String> excludedPaths,
required List<String> explicitSources,
}) {
var provider = PhysicalResourceProvider.INSTANCE;
var pkgRootPath = provider.pathContext.normalize(packageRoot);
packagePath = _toPlatformPath(pkgRootPath, packagePath);
excludedPaths = excludedPaths.map((e) {
return _toPlatformPath(packagePath, e);
}).toList();
var collection = AnalysisContextCollection(
includedPaths: <String>[packagePath],
resourceProvider: provider,
);
for (var context in collection.contexts) {
buildTestsIn(
context.currentSession,
packagePath,
excludedPaths,
provider.getFolder(packagePath),
explicitSources,
);
}
}
void buildTestsForAnalysisServer(List<String> explicitSources) {
var excludedPaths = <String>[
// TODO(brianwilkerson): Fix the generator to sort the generated files and
// remove these exclusions.
'lib/protocol/protocol_constants.dart',
'lib/protocol/protocol_generated.dart',
'integration_test/support/integration_test_methods.dart',
'integration_test/support/protocol_matchers.dart',
// The following are not generated, but can't be sorted because they contain
// ignore comments in the directives, which sorting deletes.
'lib/src/services/kythe/schema.dart',
];
buildTests(
packagePath: 'analysis_server',
excludedPaths: excludedPaths,
explicitSources: explicitSources,
);
}
void buildTestsForAnalyzer(List<String> explicitSources) {
buildTests(
packagePath: 'analyzer',
excludedPaths: [
'lib/src/context/packages.dart',
'lib/src/summary/format.dart',
'lib/src/wolf/ir/ir.g.dart',
'test/generated/test_all.dart',
],
explicitSources: explicitSources,
);
}
void buildTestsForAnalyzerCli(List<String> explicitSources) {
buildTests(
packagePath: 'analyzer_cli',
excludedPaths: ['test/data'],
explicitSources: explicitSources,
);
}
void buildTestsForAnalyzerPlugin(List<String> explicitSources) {
// TODO(brianwilkerson): Fix the generator to sort the generated files and
// remove these exclusions.
var excludedPaths = <String>[
'lib/protocol/protocol_common.dart',
'lib/protocol/protocol_generated.dart',
'test/integration/support/integration_test_methods.dart',
'test/integration/support/protocol_matchers.dart',
];
buildTests(
packagePath: 'analyzer_plugin',
excludedPaths: excludedPaths,
explicitSources: explicitSources,
);
}
void buildTestsForLinter(List<String> explicitSources) {
buildTests(
packagePath: 'linter',
excludedPaths: ['test_data'],
explicitSources: explicitSources,
);
}
void buildTestsIn(
AnalysisSession session,
String testDirPath,
List<String> excludedPath,
Folder directory,
List<String> explicitSources,
) {
var pathContext = session.resourceProvider.pathContext;
var children = directory.getChildren();
children.sort((first, second) => first.shortName.compareTo(second.shortName));
for (var child in children) {
if (child is Folder) {
if (!excludedPath.contains(child.path)) {
buildTestsIn(
session,
testDirPath,
excludedPath,
child,
explicitSources,
);
}
} else if (child is File && child.shortName.endsWith('.dart')) {
var path = child.path;
if (excludedPath.contains(path)) {
continue;
}
if (explicitSources.isNotEmpty && !explicitSources.contains(child.path)) {
continue;
}
var relativePath = pathContext.relative(path, from: testDirPath);
test(relativePath, () {
var result = session.getParsedUnit(path);
if (result is! ParsedUnitResult) {
fail('Could not parse $path');
}
var code = result.content;
var unit = result.unit;
var diagnostics = result.diagnostics;
if (diagnostics.isNotEmpty) {
fail('Diagnostics found when parsing $path');
}
var sorter = MemberSorter(
code,
unit,
result.analysisOptions.codeStyleOptions,
result.lineInfo,
);
var edits = sorter.sort();
if (edits.isNotEmpty) {
if (updateUnsorted) {
var newCode = code;
for (var edit in edits) {
newCode = edit.apply(newCode);
}
child.writeAsStringSync(newCode);
} else {
fail('Unsorted file $path');
}
}
});
}
}
}
String _toPlatformPath(String pathPath, String relativePosixPath) {
var pathContext = PhysicalResourceProvider.INSTANCE.pathContext;
return pathContext.joinAll([pathPath, ...relativePosixPath.split('/')]);
}