blob: 2e1e1e21b00a93ac603cf186651f620fd1542f8e [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.
// @dart = 2.9
import 'package:analysis_server/lsp_protocol/protocol_generated.dart';
import 'package:test/test.dart';
import 'server_abstract.dart';
mixin CompletionTestMixin on AbstractLspAnalysisServerTest {
int sortTextSorter(CompletionItem item1, CompletionItem item2) =>
(item1.sortText ?? item1.label).compareTo(item2.sortText ?? item2.label);
Future<void> verifyCompletions(
Uri fileUri,
String content, {
List<String> expectCompletions,
String applyEditsFor,
bool resolve = false,
String expectedContent,
String expectedContentIfInserting,
bool verifyInsertReplaceRanges = false,
}) async {
// If verifyInsertReplaceRanges is true, we need both expected contents.
assert(verifyInsertReplaceRanges == false ||
(expectedContent != null && expectedContentIfInserting != null));
if (!initialized) {
var textDocCapabilities =
withCompletionItemSnippetSupport(emptyTextDocumentClientCapabilities);
if (verifyInsertReplaceRanges) {
textDocCapabilities =
withCompletionItemInsertReplaceSupport(textDocCapabilities);
}
await initialize(textDocumentCapabilities: textDocCapabilities);
}
await openFile(fileUri, withoutMarkers(content));
final res = await getCompletion(fileUri, positionFromMarker(content));
await closeFile(fileUri);
// Sort the completions by sortText and filter to those we expect, so the ordering
// can be compared.
final sortedResults = res
.where((r) => expectCompletions.contains(r.label))
.toList()
..sort(sortTextSorter);
expect(sortedResults.map((item) => item.label), equals(expectCompletions));
// Check the edits apply correctly.
if (applyEditsFor != null) {
var item = res.singleWhere((c) => c.label == applyEditsFor);
final insertFormat = item.insertTextFormat;
if (resolve) {
item = await resolveCompletion(item);
}
if (verifyInsertReplaceRanges &&
expectedContent != expectedContentIfInserting) {
// Replacing.
final replaced = applyTextEdits(
withoutMarkers(content),
[textEditForReplace(item.textEdit)],
);
expect(withCaret(replaced, insertFormat), equals(expectedContent));
// Inserting.
final inserted = applyTextEdits(
withoutMarkers(content),
[textEditForInsert(item.textEdit)],
);
expect(withCaret(inserted, insertFormat),
equals(expectedContentIfInserting));
} else {
final updated = applyTextEdits(
withoutMarkers(content),
[toTextEdit(item.textEdit)],
);
expect(withCaret(updated, insertFormat), equals(expectedContent));
}
}
}
/// Replaces the LSP snippet placeholder '${0:}' with '^' for easier verifying
/// of the cursor position in completions.
String withCaret(String contents, InsertTextFormat format) =>
format == InsertTextFormat.Snippet
? contents.replaceFirst(r'${0:}', '^')
: contents;
}