blob: 90c7192c80630151e1376f5e0d6a7f3ee009a87f [file] [log] [blame] [edit]
// 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/diagnostic/diagnostic.dart' as diag;
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(diag.implementsRepeated, 33, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element: <testLibrary>::@class::A
type: A
NamedType
name: A
element: <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(diag.implementsRepeated, 46, 1)]);
}
test_class_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
class A {}
typedef B = A;
class C implements A, B {}
''',
[error(diag.implementsRepeated, 48, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element: <testLibrary>::@class::A
type: A
NamedType
name: B
element: <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(diag.implementsRepeated, 43, 1),
error(diag.implementsRepeated, 46, 1),
error(diag.implementsRepeated, 49, 1),
],
);
}
test_enum_implements_2times() async {
await assertErrorsInCode(
r'''
class A {}
enum E implements A, A {
v
}
''',
[error(diag.implementsRepeated, 32, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element: <testLibrary>::@class::A
type: A
NamedType
name: A
element: <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(diag.implementsRepeated, 45, 1)]);
}
test_enum_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
class A {}
typedef B = A;
enum E implements A, B {
v
}
''',
[error(diag.implementsRepeated, 47, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: A
element: <testLibrary>::@class::A
type: A
NamedType
name: B
element: <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(diag.implementsRepeated, 42, 1),
error(diag.implementsRepeated, 45, 1),
error(diag.implementsRepeated, 48, 1),
],
);
}
test_extensionType_implements_2times() async {
await assertErrorsInCode(
r'''
extension type A(int it) implements int, int {}
''',
[error(diag.implementsRepeated, 41, 3)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: int
element: dart:core::@class::int
type: int
NamedType
name: int
element: 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(diag.implementsRepeated, 63, 3)]);
}
test_extensionType_implements_2times_viaTypeAlias() async {
await assertErrorsInCode(
r'''
typedef A = int;
extension type B(int it) implements int, A {}
''',
[error(diag.implementsRepeated, 58, 1)],
);
var node = findNode.singleImplementsClause;
assertResolvedNodeText(node, r'''
ImplementsClause
implementsKeyword: implements
interfaces
NamedType
name: int
element: dart:core::@class::int
type: int
NamedType
name: A
element: <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(diag.implementsRepeated, 41, 3),
error(diag.implementsRepeated, 46, 3),
error(diag.implementsRepeated, 51, 3),
],
);
}
test_mixin_implements_2times() async {
await assertErrorsInCode(
r'''
class A {}
mixin M implements A, A {}
''',
[error(diag.implementsRepeated, 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(diag.implementsRepeated, 46, 1)]);
}
test_mixin_implements_4times() async {
await assertErrorsInCode(
r'''
class A {}
mixin M implements A, A, A, A {}
''',
[
error(diag.implementsRepeated, 33, 1),
error(diag.implementsRepeated, 36, 1),
error(diag.implementsRepeated, 39, 1),
],
);
}
}