8ff42d9c1b
Change-Id: Idc22db2d10ee768179ddf1e2d9ff8e80a7d65f2a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/414620 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
284 lines
5.0 KiB
Dart
284 lines
5.0 KiB
Dart
// Copyright (c) 2024, 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/lsp_protocol/protocol.dart';
|
|
import 'package:analyzer/src/test_utilities/test_code_format.dart';
|
|
import 'package:test/test.dart';
|
|
import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import '../utils/test_code_extensions.dart';
|
|
import 'server_abstract.dart';
|
|
|
|
void main() {
|
|
defineReflectiveSuite(() {
|
|
defineReflectiveTests(AugmentationTest);
|
|
});
|
|
}
|
|
|
|
@reflectiveTest
|
|
class AugmentationTest extends AbstractLspAnalysisServerTest {
|
|
@SkippedTest() // TODO(scheglov): implement augmentation
|
|
Future<void> test_class_body_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {}
|
|
|
|
augment class A {
|
|
^
|
|
}
|
|
|
|
augment class [!A!] {}
|
|
''');
|
|
}
|
|
|
|
@SkippedTest() // TODO(scheglov): implement augmentation
|
|
Future<void> test_class_body_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
^
|
|
}
|
|
|
|
augment class [!A!] {}
|
|
''');
|
|
}
|
|
|
|
@SkippedTest() // TODO(scheglov): implement augmentation
|
|
Future<void> test_class_name_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {}
|
|
|
|
augment class A^ {}
|
|
|
|
augment class [!A!] {}
|
|
''');
|
|
}
|
|
|
|
@SkippedTest() // TODO(scheglov): implement augmentation
|
|
Future<void> test_class_name_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A^ {}
|
|
|
|
augment class [!A!] {}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_constructor_body_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
A();
|
|
}
|
|
|
|
augment class A {
|
|
augment A() {
|
|
^
|
|
}
|
|
}
|
|
|
|
augment class A {
|
|
augment [!A!]();
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_constructor_body_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
A() {
|
|
^
|
|
}
|
|
}
|
|
|
|
augment class A {
|
|
augment [!A!]();
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_constructor_name_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
A();
|
|
}
|
|
|
|
augment class A {
|
|
augment A^();
|
|
}
|
|
|
|
augment class A {
|
|
augment [!A!]();
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_constructor_name_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
A^();
|
|
}
|
|
|
|
augment class A {
|
|
augment [!A!]();
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_getter_body() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
String get foo => '^';
|
|
}
|
|
|
|
augment class A {
|
|
augment String get [!foo!] => '';
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_getter_name() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
String get fo^o => '';
|
|
}
|
|
|
|
augment class A {
|
|
augment String get [!foo!] => '';
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_invalidLocation() async {
|
|
await verifyNoAugmentation('''
|
|
class A {}
|
|
|
|
^
|
|
''');
|
|
}
|
|
|
|
Future<void> test_method_body_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
void foo() {}
|
|
}
|
|
|
|
augment class A {
|
|
augment void foo() {
|
|
^
|
|
}
|
|
}
|
|
|
|
augment class A {
|
|
augment void [!foo!]() {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_method_body_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
void foo() {
|
|
^
|
|
}
|
|
}
|
|
|
|
augment class A {
|
|
augment void [!foo!]() {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_method_name_augmentationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
void foo() {}
|
|
}
|
|
|
|
augment class A {
|
|
augment void fo^o() {}
|
|
}
|
|
|
|
augment class A {
|
|
augment void [!foo!]() {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_method_name_declarationToAugmentation() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
void foo^() {}
|
|
}
|
|
|
|
augment class A {
|
|
augment void [!foo!]() {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_setter_body() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
set foo(String value) {
|
|
^
|
|
}
|
|
}
|
|
|
|
augment class A {
|
|
augment set [!foo!](String value) {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> test_setter_name() async {
|
|
await verifyGoToAugmentation('''
|
|
class A {
|
|
set fo^o(String value) {}
|
|
}
|
|
|
|
augment class A {
|
|
augment set [!foo!](String value) {}
|
|
}
|
|
''');
|
|
}
|
|
|
|
Future<void> verifyGoToAugmentation(String content) async {
|
|
// Build an augmentation library for mainFileUri.
|
|
var code = TestCode.parse('''
|
|
part of '$mainFileUri';
|
|
|
|
$content
|
|
''');
|
|
|
|
newFile(mainFilePath, "part 'main_augmentation.dart';");
|
|
newFile(mainFileAugmentationPath, code.code);
|
|
await initialize();
|
|
var res = await getAugmentation(
|
|
mainFileAugmentationUri,
|
|
code.position.position,
|
|
);
|
|
|
|
expect(
|
|
res,
|
|
equals(Location(uri: mainFileAugmentationUri, range: code.range.range)),
|
|
);
|
|
}
|
|
|
|
Future<void> verifyNoAugmentation(String content) async {
|
|
// Build an augmentation library for mainFileUri.
|
|
var code = TestCode.parse('''
|
|
part of '$mainFileUri';
|
|
|
|
$content
|
|
''');
|
|
|
|
newFile(mainFilePath, "part 'main_augmentation.dart';");
|
|
newFile(mainFileAugmentationPath, code.code);
|
|
await initialize();
|
|
var res = await getAugmentation(
|
|
mainFileAugmentationUri,
|
|
code.position.position,
|
|
);
|
|
|
|
expect(res, isNull);
|
|
}
|
|
}
|