blob: 1f1762204ef21d01fb2fadc2fb6b0e6b28e477fd [file] [log] [blame]
// 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:analyzer/src/error/codes.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(MapKeyTypeNotAssignableTest);
defineReflectiveTests(MapKeyTypeNotAssignableWithUIAsCodeTest);
});
}
@reflectiveTest
class MapKeyTypeNotAssignableTest extends DriverResolutionTest {
test_explicitTypeArgs_const() async {
await assertErrorsInCode('''
var v = const <String, int>{42 : 1};
''', [StaticWarningCode.MAP_KEY_TYPE_NOT_ASSIGNABLE]);
}
test_explicitTypeArgs_const_actualTypeMatch() async {
await assertNoErrorsInCode('''
const dynamic x = null;
var v = const <String, int>{x : 1};
''');
}
@FailingTest(issue: 'https://github.com/dart-lang/sdk/issues/21119')
test_explicitTypeArgs_const_actualTypeMismatch() async {
await assertErrorsInCode('''
const dynamic x = 42;
var v = const <String, int>{x : 1};
''', [CheckedModeCompileTimeErrorCode.MAP_KEY_TYPE_NOT_ASSIGNABLE]);
}
test_explicitTypeArgs_notConst() async {
await assertErrorsInCode('''
var v = <String, int>{42 : 1};
''', [StaticWarningCode.MAP_KEY_TYPE_NOT_ASSIGNABLE]);
}
}
@reflectiveTest
class MapKeyTypeNotAssignableWithUIAsCodeTest
extends MapKeyTypeNotAssignableTest {
@override
AnalysisOptionsImpl get analysisOptions => AnalysisOptionsImpl()
..enabledExperiments = ['control-flow-collections', 'spread-collections'];
test_spread_valid_const() async {
await assertNoErrorsInCode('''
var v = const <String, int>{...{'a' : 1, 'b' : 2}};
''');
}
test_spread_valid_nonConst() async {
await assertNoErrorsInCode('''
var v = <String, int>{...{'a' : 1, 'b' : 2}};
''');
}
}