LSP-client-example

Форк
0
/
diagnostics.test.ts 
41 строка · 1.8 Кб
1
/* --------------------------------------------------------------------------------------------
2
 * Copyright (c) Microsoft Corporation. All rights reserved.
3
 * Licensed under the MIT License. See License.txt in the project root for license information.
4
 * ------------------------------------------------------------------------------------------ */
5

6
import * as vscode from 'vscode';
7
import * as assert from 'assert';
8
import { getDocUri, activate } from './helper';
9

10
suite('Should get diagnostics', () => {
11
	const docUri = getDocUri('diagnostics.txt');
12

13
	test('Diagnoses uppercase texts', async () => {
14
		await testDiagnostics(docUri, [
15
			{ message: 'ANY is all uppercase.', range: toRange(0, 0, 0, 3), severity: vscode.DiagnosticSeverity.Warning, source: 'ex' },
16
			{ message: 'ANY is all uppercase.', range: toRange(0, 14, 0, 17), severity: vscode.DiagnosticSeverity.Warning, source: 'ex' },
17
			{ message: 'OS is all uppercase.', range: toRange(0, 18, 0, 20), severity: vscode.DiagnosticSeverity.Warning, source: 'ex' }
18
		]);
19
	});
20
});
21

22
function toRange(sLine: number, sChar: number, eLine: number, eChar: number) {
23
	const start = new vscode.Position(sLine, sChar);
24
	const end = new vscode.Position(eLine, eChar);
25
	return new vscode.Range(start, end);
26
}
27

28
async function testDiagnostics(docUri: vscode.Uri, expectedDiagnostics: vscode.Diagnostic[]) {
29
	await activate(docUri);
30

31
	const actualDiagnostics = vscode.languages.getDiagnostics(docUri);
32

33
	assert.equal(actualDiagnostics.length, expectedDiagnostics.length);
34

35
	expectedDiagnostics.forEach((expectedDiagnostic, i) => {
36
		const actualDiagnostic = actualDiagnostics[i];
37
		assert.equal(actualDiagnostic.message, expectedDiagnostic.message);
38
		assert.deepEqual(actualDiagnostic.range, expectedDiagnostic.range);
39
		assert.equal(actualDiagnostic.severity, expectedDiagnostic.severity);
40
	});
41
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.