Files
sdk/pkg/analyzer/test/source/error_processor_test.dart
T
Paul Berry e4868ca176 [messages] Clean up ErrorProcessor behavior.
Currently, diagnostic codes associated with lints are named using
`lower_snake_case`, while analyzer diagnonstic codes are named using
`UPPER_SNAKE_CASE`.

However, when the analyzer builds instances of the `ErrorProcessor`
class, it always uses `UPPER_SNAKE_CASE` names.

Some pieces of logic that matched up `ErrorProcessor`s to diagnostic
codes accounted for this difference; others didn't.

This led to a some buggy behaviors:

- If an instance of `ErrorProcessor` got constructed outside of the
  analyzer (by an analyzer client using the analyzer public API), and
  it supplied a `lower_snake_case` name, then
  `ErrorProcessor.appliesTo` would only successfully match if the name
  referred to a lint.

- The resolved correction producer base class `_BaseIgnoreDiagnostic`
  (which forms the basis for the quick fixes "Ignore '...' in
  `analysis_options.yaml`", "Ignore '...' for this line", and "Ignore
  '...' for the whole file") would only notice that a diagnostic was
  unignorable if the case matched exactly. In practice, this meant
  that when operating on instances of `ErrorProcessor` created by the
  analyzer, it wouldn't properly handle lints.

These buggy behaviors have been fixed by:

- Changing the `ErrorProcessor` constructor to always convert the
  `code` to lower case.

- Changing all references to `ErrorProcessor.code` to assume lower
  case.

Change-Id: I6a6a69645284f646e0c070fc2b55c4a90203d74a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/462863
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Paul Berry <paulberry@google.com>
2025-11-19 11:31:21 -08:00

215 lines
6.3 KiB
Dart

// 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.
import 'package:analyzer/dart/analysis/analysis_options.dart';
import 'package:analyzer/diagnostic/diagnostic.dart';
import 'package:analyzer/error/error.dart';
import 'package:analyzer/source/error_processor.dart';
import 'package:analyzer/src/analysis_options/analysis_options_provider.dart';
import 'package:analyzer/src/dart/analysis/analysis_options.dart';
import 'package:analyzer/src/diagnostic/diagnostic.dart' as diag;
import 'package:collection/collection.dart';
import 'package:test/test.dart';
import 'package:yaml/yaml.dart';
import '../generated/test_support.dart';
import '../src/util/yaml_test.dart';
main() {
Diagnostic invalid_assignment = Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: diag.invalidAssignment,
arguments: [
['x'],
['y'],
],
);
Diagnostic assignment_of_do_not_store = Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: diag.assignmentOfDoNotStore,
arguments: [
['x'],
],
);
Diagnostic unused_local_variable = Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: diag.unusedLocalVariable,
arguments: [
['x'],
],
);
Diagnostic use_of_void_result = Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: diag.useOfVoidResult,
);
// We in-line a lint code here in order to avoid adding a dependency on the
// linter package.
Diagnostic annotate_overrides = Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: LintCode(
'annotate_overrides',
'',
uniqueName: 'LintCode.annotate_overrides',
),
);
group('ErrorProcessor', () {
late _TestContext context;
setUp(() {
context = _TestContext();
});
test('configureOptions', () {
context.configureOptions('''
analyzer:
errors:
invalid_assignment: error # severity ERROR
assignment_of_do_not_store: false # ignore
unused_local_variable: true # skipped
use_of_void_result: unsupported_action # skipped
''');
expect(
context.getProcessor(invalid_assignment)!.severity,
DiagnosticSeverity.ERROR,
);
expect(
context.getProcessor(assignment_of_do_not_store)!.severity,
isNull,
);
expect(context.getProcessor(unused_local_variable), isNull);
expect(context.getProcessor(use_of_void_result), isNull);
});
test('does not upgrade other warnings to errors in strong mode', () {
context.configureOptions('''
analyzer:
strong-mode: true
''');
expect(context.getProcessor(unused_local_variable), isNull);
});
test('applies to analyzer warning even if lower case', () {
var errorProcessor = ErrorProcessor('cast_from_null_always_fails');
expect(
errorProcessor.appliesTo(
Diagnostic.tmp(
source: TestSource(),
offset: 0,
length: 1,
diagnosticCode: diag.castFromNullAlwaysFails,
),
),
true,
);
});
});
group('ErrorConfig', () {
var config = '''
analyzer:
errors:
invalid_assignment: unsupported_action # should be skipped
assignment_of_do_not_store: false
unused_local_variable: error
''';
group('processing', () {
test('yaml map', () {
var options = AnalysisOptionsProvider().getOptionsFromString(config);
var errorConfig = ErrorConfig(
(options['analyzer'] as YamlMap)['errors'] as YamlNode?,
);
expect(errorConfig.processors, hasLength(2));
// ignore
var missingReturnProcessor = errorConfig.processors.firstWhere(
(p) => p.appliesTo(assignment_of_do_not_store),
);
expect(missingReturnProcessor.severity, isNull);
// error
var unusedLocalProcessor = errorConfig.processors.firstWhere(
(p) => p.appliesTo(unused_local_variable),
);
expect(unusedLocalProcessor.severity, DiagnosticSeverity.ERROR);
// skip
var invalidAssignmentProcessor = errorConfig.processors
.firstWhereOrNull((p) => p.appliesTo(invalid_assignment));
expect(invalidAssignmentProcessor, isNull);
});
test('string map', () {
var options = wrap({
'invalid_assignment': 'unsupported_action', // should be skipped
'assignment_of_do_not_store': 'false',
'unused_local_variable': 'error',
});
var errorConfig = ErrorConfig(options);
expect(errorConfig.processors, hasLength(2));
// ignore
var missingReturnProcessor = errorConfig.processors.firstWhere(
(p) => p.appliesTo(assignment_of_do_not_store),
);
expect(missingReturnProcessor.severity, isNull);
// error
var unusedLocalProcessor = errorConfig.processors.firstWhere(
(p) => p.appliesTo(unused_local_variable),
);
expect(unusedLocalProcessor.severity, DiagnosticSeverity.ERROR);
// skip
var invalidAssignmentProcessor = errorConfig.processors
.firstWhereOrNull((p) => p.appliesTo(invalid_assignment));
expect(invalidAssignmentProcessor, isNull);
});
});
test('configure lints', () {
var options = AnalysisOptionsProvider().getOptionsFromString(
'analyzer:\n errors:\n annotate_overrides: warning\n',
);
var errorConfig = ErrorConfig(
(options['analyzer'] as YamlMap)['errors'] as YamlNode?,
);
expect(errorConfig.processors, hasLength(1));
ErrorProcessor processor = errorConfig.processors.first;
expect(processor.appliesTo(annotate_overrides), true);
expect(processor.severity, DiagnosticSeverity.WARNING);
});
});
}
class _TestContext {
late AnalysisOptions analysisOptions;
void configureOptions(String options) {
analysisOptions = AnalysisOptionsImpl.fromYaml(
optionsMap: AnalysisOptionsProvider().getOptionsFromString(options),
);
}
ErrorProcessor? getProcessor(Diagnostic diagnostic) {
return ErrorProcessor.getProcessor(analysisOptions, diagnostic);
}
}