blob: d6f6cf6c5868244492ef2fb30df2bca08b2c3776 [file] [log] [blame]
// Copyright (c) 2018, 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/fix.dart';
import 'package:analyzer/src/dart/analysis/experiments.dart';
import 'package:analyzer_plugin/utilities/fixes/fixes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'fix_processor.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(UpdateSdkConstraintsTest);
});
}
@reflectiveTest
class UpdateSdkConstraintsTest extends FixProcessorTest {
@override
FixKind get kind => DartFixKind.UPDATE_SDK_CONSTRAINTS;
Future<void> test_any() async {
await testUpdate(from: 'any', to: '^2.1.0');
}
Future<void> test_asInConstContext() async {
await testUpdate(content: '''
const dynamic a = 2;
const c = a as int;
''', to: '^2.2.2');
}
Future<void> test_boolOperator() async {
await testUpdate(content: '''
const c = true & false;
''', to: '^2.2.2');
}
Future<void> test_caret() async {
await testUpdate(from: '^2.0.0', to: '^2.1.0');
}
Future<void> test_compound() async {
await testUpdate(from: "'>=2.0.0 <3.0.0'", to: "'>=2.1.0 <3.0.0'");
}
Future<void> test_eqEqOperatorInConstContext() async {
await testUpdate(content: '''
class A {
const A();
}
const a = A();
const c = a == null;
''', to: '^2.2.2');
}
Future<void> test_gt() async {
await testUpdate(from: "'>2.0.0'", to: "'>=2.1.0'");
}
Future<void> test_gte() async {
await testUpdate(from: "'>=2.0.0'", to: "'>=2.1.0'");
}
Future<void> test_gtGtGtOperator() async {
writeTestPackageConfig(languageVersion: latestLanguageVersion);
createAnalysisOptionsFile(experiments: [EnableString.triple_shift]);
await testUpdate(content: '''
class C {
C operator >>>(C other) => this;
}
''', to: '^2.2.2');
}
Future<void> test_isInConstContext() async {
await testUpdate(content: '''
const a = 0;
const c = a is int;
''', to: '^2.2.2');
}
Future<void> test_setLiteral() async {
await testUpdate(content: '''
var s = <int>{};
''', to: '^2.2.0');
}
Future<void> testUpdate(
{String content, String from = '^2.0.0', String to}) async {
updateTestPubspecFile('''
environment:
sdk: $from
''');
await resolveTestCode(content ??
'''
Future<int> zero() async => 0;
''');
await assertHasFix('''
environment:
sdk: $to
''', target: testPubspecPath);
}
}