114d7b980a
Bug: https://github.com/dart-lang/sdk/issues/45236 Change-Id: I01175a2b2b1eb3ce6cdf30ade794d8186c6e8ead Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/191622 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
93 lines
2.9 KiB
Dart
93 lines
2.9 KiB
Dart
// Copyright (c) 2017, 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 'dart:async';
|
|
|
|
import 'package:analyzer/file_system/file_system.dart';
|
|
import 'package:analyzer/src/test_utilities/resource_provider_mixin.dart';
|
|
import 'package:analyzer_plugin/plugin/outline_mixin.dart';
|
|
import 'package:analyzer_plugin/protocol/protocol.dart';
|
|
import 'package:analyzer_plugin/protocol/protocol_common.dart';
|
|
import 'package:analyzer_plugin/protocol/protocol_generated.dart';
|
|
import 'package:analyzer_plugin/src/utilities/outline/outline.dart';
|
|
import 'package:analyzer_plugin/utilities/outline/outline.dart';
|
|
import 'package:test/test.dart';
|
|
import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'mocks.dart';
|
|
|
|
void main() {
|
|
defineReflectiveTests(OutlineMixinTest);
|
|
}
|
|
|
|
@reflectiveTest
|
|
class OutlineMixinTest with ResourceProviderMixin {
|
|
late String packagePath1;
|
|
late String filePath1;
|
|
late ContextRoot contextRoot1;
|
|
|
|
late MockChannel channel;
|
|
late _TestServerPlugin plugin;
|
|
|
|
void setUp() {
|
|
packagePath1 = convertPath('/package1');
|
|
filePath1 = join(packagePath1, 'lib', 'test.dart');
|
|
newFile(filePath1);
|
|
contextRoot1 = ContextRoot(packagePath1, <String>[]);
|
|
|
|
channel = MockChannel();
|
|
plugin = _TestServerPlugin(resourceProvider);
|
|
plugin.start(channel);
|
|
}
|
|
|
|
Future<void> test_sendOutlineNotification() async {
|
|
await plugin.handleAnalysisSetContextRoots(
|
|
AnalysisSetContextRootsParams([contextRoot1]));
|
|
|
|
var notificationReceived = Completer<void>();
|
|
channel.listen(null, onNotification: (Notification notification) {
|
|
expect(notification, isNotNull);
|
|
var params = AnalysisOutlineParams.fromNotification(notification);
|
|
expect(params.file, filePath1);
|
|
expect(params.outline, hasLength(3));
|
|
notificationReceived.complete();
|
|
});
|
|
await plugin.sendOutlineNotification(filePath1);
|
|
await notificationReceived.future;
|
|
}
|
|
}
|
|
|
|
class _TestOutlineContributor implements OutlineContributor {
|
|
int elementCount;
|
|
|
|
_TestOutlineContributor(this.elementCount);
|
|
|
|
@override
|
|
void computeOutline(OutlineRequest request, OutlineCollector collector) {
|
|
for (var i = 0; i < elementCount; i++) {
|
|
collector.startElement(Element(ElementKind.METHOD, 'm$i', 0), 20 * i, 20);
|
|
collector.endElement();
|
|
}
|
|
}
|
|
}
|
|
|
|
class _TestServerPlugin extends MockServerPlugin with OutlineMixin {
|
|
_TestServerPlugin(ResourceProvider resourceProvider)
|
|
: super(resourceProvider);
|
|
|
|
@override
|
|
List<OutlineContributor> getOutlineContributors(String path) {
|
|
return <OutlineContributor>[
|
|
_TestOutlineContributor(2),
|
|
_TestOutlineContributor(1)
|
|
];
|
|
}
|
|
|
|
@override
|
|
Future<OutlineRequest> getOutlineRequest(String path) async {
|
|
var result = MockResolvedUnitResult(path: path);
|
|
return DartOutlineRequestImpl(resourceProvider, result);
|
|
}
|
|
}
|