blob: 2c2c07c8ecc45e486fc097bfe92854919c25a0d0 [file] [log] [blame]
// Copyright (c) 2021, 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:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ImplementsRepeatedTest);
});
}
@reflectiveTest
class ImplementsRepeatedTest extends PubPackageResolutionTest {
test_class_implements_2times() async {
await assertErrorsInCode(
r'''
class A {}
class B implements A, A {}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 33, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
''');
}
@SkippedTest() // TODO(scheglov): implement augmentation
test_class_implements_2times_augmentation() async {
var a = newFile('$testPackageLibPath/a.dart', r'''
part 'b.dart';
class A {}
class B implements A {}
''');
var b = newFile('$testPackageLibPath/b.dart', r'''
part of 'a.dart';
augment class B implements A {}
''');
await assertErrorsInFile2(a, []);
await assertErrorsInFile2(b, [
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 46, 1),
]);
}
test_class_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
class A {}
typedef B = A;
class C implements A, B {}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 48, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
NamedType
name: B
element2: <testLibrary>::@typeAlias::B
type: A
alias: <testLibrary>::@typeAlias::B
''');
}
test_class_implements_4times() async {
await assertErrorsInCode(
r'''
class A {} class C{}
class B implements A, A, A, A {}
''',
[
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 43, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 46, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 49, 1),
],
);
}
test_enum_implements_2times() async {
await assertErrorsInCode(
r'''
class A {}
enum E implements A, A {
v
}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 32, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
''');
}
@SkippedTest() // TODO(scheglov): implement augmentation
test_enum_implements_2times_augmentation() async {
var a = newFile('$testPackageLibPath/a.dart', r'''
part 'b.dart';
class A {}
enum E implements A {v}
''');
var b = newFile('$testPackageLibPath/b.dart', r'''
part of 'a.dart';
augment enum E implements A {}
''');
await assertErrorsInFile2(a, []);
await assertErrorsInFile2(b, [
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 45, 1),
]);
}
test_enum_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
class A {}
typedef B = A;
enum E implements A, B {
v
}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 47, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element2: <testLibrary>::@class::A
type: A
NamedType
name: B
element2: <testLibrary>::@typeAlias::B
type: A
alias: <testLibrary>::@typeAlias::B
''');
}
test_enum_implements_4times() async {
await assertErrorsInCode(
r'''
class A {} class C{}
enum E implements A, A, A, A {
v
}
''',
[
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 42, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 45, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 48, 1),
],
);
}
test_extensionType_implements_2times() async {
await assertErrorsInCode(
r'''
extension type A(int it) implements int, int {}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 41, 3)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: int
element2: dart:core::@class::int
type: int
NamedType
name: int
element2: dart:core::@class::int
type: int
''');
}
@SkippedTest() // TODO(scheglov): implement augmentation
test_extensionType_implements_2times_augmentation() async {
var a = newFile('$testPackageLibPath/a.dart', r'''
part 'b.dart';
extension type A(int it) implements int {}
''');
var b = newFile('$testPackageLibPath/b.dart', r'''
part of 'a.dart';
augment extension type A(int it) implements int {}
''');
await assertErrorsInFile2(a, []);
await assertErrorsInFile2(b, [
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 63, 3),
]);
}
test_extensionType_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
typedef A = int;
extension type B(int it) implements int, A {}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 58, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: int
element2: dart:core::@class::int
type: int
NamedType
name: A
element2: <testLibrary>::@typeAlias::A
type: int
alias: <testLibrary>::@typeAlias::A
''');
}
test_extensionType_implements_4times() async {
await assertErrorsInCode(
r'''
extension type A(int it) implements int, int, int, int {}
''',
[
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 41, 3),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 46, 3),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 51, 3),
],
);
}
test_mixin_implements_2times() async {
await assertErrorsInCode(
r'''
class A {}
mixin M implements A, A {}
''',
[error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 33, 1)],
);
}
@SkippedTest() // TODO(scheglov): implement augmentation
test_mixin_implements_2times_augmentation() async {
var a = newFile('$testPackageLibPath/a.dart', r'''
part 'b.dart';
class A {}
mixin M implements A {}
''');
var b = newFile('$testPackageLibPath/b.dart', r'''
part of 'a.dart';
augment mixin M implements A {}
''');
await assertErrorsInFile2(a, []);
await assertErrorsInFile2(b, [
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 46, 1),
]);
}
test_mixin_implements_4times() async {
await assertErrorsInCode(
r'''
class A {}
mixin M implements A, A, A, A {}
''',
[
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 33, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 36, 1),
error(CompileTimeErrorCode.IMPLEMENTS_REPEATED, 39, 1),
],
);
}
}