41b3e0abcc
Change-Id: Id697b0736b95a913c31247a66425027852f1ddc5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/236800 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
225 lines
7.0 KiB
Dart
225 lines
7.0 KiB
Dart
// Copyright (c) 2014, 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/protocol/protocol.dart';
|
|
import 'package:analysis_server/protocol/protocol_constants.dart';
|
|
import 'package:analysis_server/protocol/protocol_generated.dart'
|
|
hide AnalysisOptions;
|
|
import 'package:analysis_server/src/analysis_server.dart';
|
|
import 'package:analysis_server/src/domain_analysis.dart';
|
|
import 'package:analysis_server/src/server/crash_reporting_attachments.dart';
|
|
import 'package:analysis_server/src/utilities/mocks.dart';
|
|
import 'package:analysis_server/src/utilities/progress.dart';
|
|
import 'package:analyzer/instrumentation/instrumentation.dart';
|
|
import 'package:analyzer/src/dart/analysis/driver.dart';
|
|
import 'package:analyzer/src/generated/engine.dart';
|
|
import 'package:analyzer/src/generated/sdk.dart';
|
|
import 'package:analyzer/src/test_utilities/mock_sdk.dart';
|
|
import 'package:analyzer/src/test_utilities/resource_provider_mixin.dart';
|
|
import 'package:meta/meta.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'mocks.dart';
|
|
|
|
int findIdentifierLength(String search) {
|
|
var length = 0;
|
|
while (length < search.length) {
|
|
var c = search.codeUnitAt(length);
|
|
if (!(c >= 'a'.codeUnitAt(0) && c <= 'z'.codeUnitAt(0) ||
|
|
c >= 'A'.codeUnitAt(0) && c <= 'Z'.codeUnitAt(0) ||
|
|
c >= '0'.codeUnitAt(0) && c <= '9'.codeUnitAt(0) ||
|
|
c == '_'.codeUnitAt(0))) {
|
|
break;
|
|
}
|
|
length++;
|
|
}
|
|
return length;
|
|
}
|
|
|
|
/// An abstract base for all 'analysis' domain tests.
|
|
class AbstractAnalysisTest with ResourceProviderMixin {
|
|
late MockServerChannel serverChannel;
|
|
late TestPluginManager pluginManager;
|
|
late AnalysisServer server;
|
|
late RequestHandler handler;
|
|
|
|
final List<GeneralAnalysisService> generalServices =
|
|
<GeneralAnalysisService>[];
|
|
final Map<AnalysisService, List<String>> analysisSubscriptions = {};
|
|
|
|
late String projectPath;
|
|
late String testFolder;
|
|
late String testFile;
|
|
late String testCode;
|
|
|
|
AbstractAnalysisTest();
|
|
|
|
AnalysisDomainHandler get analysisHandler =>
|
|
server.handlers.singleWhere((handler) => handler is AnalysisDomainHandler)
|
|
as AnalysisDomainHandler;
|
|
|
|
AnalysisOptions get analysisOptions => testDiver.analysisOptions;
|
|
|
|
AnalysisDriver get testDiver => server.getAnalysisDriver(testFile)!;
|
|
|
|
void addAnalysisSubscription(AnalysisService service, String file) {
|
|
// add file to subscription
|
|
var files = analysisSubscriptions[service];
|
|
if (files == null) {
|
|
files = <String>[];
|
|
analysisSubscriptions[service] = files;
|
|
}
|
|
files.add(file);
|
|
// set subscriptions
|
|
var request =
|
|
AnalysisSetSubscriptionsParams(analysisSubscriptions).toRequest('0');
|
|
handleSuccessfulRequest(request);
|
|
}
|
|
|
|
void addGeneralAnalysisSubscription(GeneralAnalysisService service) {
|
|
generalServices.add(service);
|
|
var request =
|
|
AnalysisSetGeneralSubscriptionsParams(generalServices).toRequest('0');
|
|
handleSuccessfulRequest(request);
|
|
}
|
|
|
|
String addTestFile(String content) {
|
|
newFile2(testFile, content);
|
|
testCode = content;
|
|
return testFile;
|
|
}
|
|
|
|
AnalysisServer createAnalysisServer() {
|
|
//
|
|
// Create an SDK in the mock file system.
|
|
//
|
|
var sdkRoot = newFolder('/sdk');
|
|
createMockSdk(
|
|
resourceProvider: resourceProvider,
|
|
root: sdkRoot,
|
|
);
|
|
|
|
//
|
|
// Create server
|
|
//
|
|
var options = AnalysisServerOptions();
|
|
return AnalysisServer(
|
|
serverChannel,
|
|
resourceProvider,
|
|
options,
|
|
DartSdkManager(sdkRoot.path),
|
|
CrashReportingAttachmentsBuilder.empty,
|
|
InstrumentationService.NULL_SERVICE);
|
|
}
|
|
|
|
/// Creates a project [projectPath].
|
|
Future<void> createProject({Map<String, String>? packageRoots}) async {
|
|
newFolder(projectPath);
|
|
await setRoots(included: [projectPath], excluded: []);
|
|
}
|
|
|
|
void doAllDeclarationsTrackerWork() {
|
|
while (server.declarationsTracker!.hasWork) {
|
|
server.declarationsTracker!.doWork();
|
|
}
|
|
}
|
|
|
|
/// Returns the offset of [search] in the file at the given [path].
|
|
/// Fails if not found.
|
|
int findFileOffset(String path, String search) {
|
|
var file = getFile(path);
|
|
var code = file.createSource().contents.data;
|
|
var offset = code.indexOf(search);
|
|
expect(offset, isNot(-1), reason: '"$search" in\n$code');
|
|
return offset;
|
|
}
|
|
|
|
/// Returns the offset of [search] in [testCode].
|
|
/// Fails if not found.
|
|
int findOffset(String search) {
|
|
var offset = testCode.indexOf(search);
|
|
expect(offset, isNot(-1));
|
|
return offset;
|
|
}
|
|
|
|
/// Validates that the given [request] is handled successfully.
|
|
Response handleSuccessfulRequest(Request request, {RequestHandler? handler}) {
|
|
handler ??= this.handler;
|
|
var response = handler.handleRequest(request, NotCancelableToken())!;
|
|
expect(response, isResponseSuccess(request.id));
|
|
return response;
|
|
}
|
|
|
|
String modifyTestFile(String content) {
|
|
modifyFile(testFile, content);
|
|
testCode = content;
|
|
return testFile;
|
|
}
|
|
|
|
void processNotification(Notification notification) {
|
|
if (notification.event == SERVER_NOTIFICATION_ERROR) {
|
|
fail('${notification.toJson()}');
|
|
}
|
|
}
|
|
|
|
void removeGeneralAnalysisSubscription(GeneralAnalysisService service) {
|
|
generalServices.remove(service);
|
|
var request =
|
|
AnalysisSetGeneralSubscriptionsParams(generalServices).toRequest('0');
|
|
handleSuccessfulRequest(request);
|
|
}
|
|
|
|
void setPriorityFiles(List<String> files) {
|
|
var request = AnalysisSetPriorityFilesParams(files).toRequest('0');
|
|
handleSuccessfulRequest(request);
|
|
}
|
|
|
|
Future<Response> setRoots({
|
|
required List<String> included,
|
|
required List<String> excluded,
|
|
bool validateSuccessResponse = true,
|
|
}) async {
|
|
var request = AnalysisSetAnalysisRootsParams(
|
|
included.map(convertPath).toList(),
|
|
excluded.map(convertPath).toList(),
|
|
packageRoots: {},
|
|
).toRequest('0');
|
|
var response = await waitResponse(request);
|
|
if (validateSuccessResponse) {
|
|
expect(response, isResponseSuccess(request.id));
|
|
}
|
|
return response;
|
|
}
|
|
|
|
@mustCallSuper
|
|
void setUp() async {
|
|
serverChannel = MockServerChannel();
|
|
projectPath = convertPath('/project');
|
|
testFolder = convertPath('/project/bin');
|
|
testFile = convertPath('/project/bin/test.dart');
|
|
pluginManager = TestPluginManager();
|
|
server = createAnalysisServer();
|
|
server.pluginManager = pluginManager;
|
|
handler = analysisHandler;
|
|
serverChannel.notifications.listen(processNotification);
|
|
}
|
|
|
|
@mustCallSuper
|
|
void tearDown() {
|
|
server.done();
|
|
}
|
|
|
|
/// Returns a [Future] that completes when the server's analysis is complete.
|
|
Future waitForTasksFinished() {
|
|
return server.onAnalysisComplete;
|
|
}
|
|
|
|
/// Completes with a successful [Response] for the given [request].
|
|
/// Otherwise fails.
|
|
Future<Response> waitResponse(Request request,
|
|
{bool throwOnError = true}) async {
|
|
return serverChannel.sendRequest(request, throwOnError: throwOnError);
|
|
}
|
|
}
|