mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 01:25:38 -05:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
264 lines
8.7 KiB
TypeScript
264 lines
8.7 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
import * as assert from 'assert';
|
|
import URI, { UriComponents } from 'vs/base/common/uri';
|
|
import Severity from 'vs/base/common/severity';
|
|
import { DiagnosticCollection } from 'vs/workbench/api/node/extHostDiagnostics';
|
|
import { Diagnostic, DiagnosticSeverity, Range } from 'vs/workbench/api/node/extHostTypes';
|
|
import { MainThreadDiagnosticsShape } from 'vs/workbench/api/node/extHost.protocol';
|
|
import { IMarkerData } from 'vs/platform/markers/common/markers';
|
|
import { mock } from 'vs/workbench/test/electron-browser/api/mock';
|
|
|
|
suite('ExtHostDiagnostics', () => {
|
|
|
|
class DiagnosticsShape extends mock<MainThreadDiagnosticsShape>() {
|
|
$changeMany(owner: string, entries: [UriComponents, IMarkerData[]][]): void {
|
|
//
|
|
}
|
|
$clear(owner: string): void {
|
|
//
|
|
}
|
|
}
|
|
|
|
test('disposeCheck', function () {
|
|
|
|
const collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
|
|
collection.dispose();
|
|
collection.dispose(); // that's OK
|
|
assert.throws(() => collection.name);
|
|
assert.throws(() => collection.clear());
|
|
assert.throws(() => collection.delete(URI.parse('aa:bb')));
|
|
// tslint:disable-next-line:semicolon
|
|
assert.throws(() => collection.forEach(() => { ; }));
|
|
assert.throws(() => collection.get(URI.parse('aa:bb')));
|
|
assert.throws(() => collection.has(URI.parse('aa:bb')));
|
|
assert.throws(() => collection.set(URI.parse('aa:bb'), []));
|
|
assert.throws(() => collection.set(URI.parse('aa:bb'), undefined));
|
|
});
|
|
|
|
|
|
test('diagnostic collection, forEach, clear, has', function () {
|
|
let collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
assert.equal(collection.name, 'test');
|
|
collection.dispose();
|
|
assert.throws(() => collection.name);
|
|
|
|
let c = 0;
|
|
collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
collection.forEach(() => c++);
|
|
assert.equal(c, 0);
|
|
|
|
collection.set(URI.parse('foo:bar'), [
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
|
|
]);
|
|
collection.forEach(() => c++);
|
|
assert.equal(c, 1);
|
|
|
|
c = 0;
|
|
collection.clear();
|
|
collection.forEach(() => c++);
|
|
assert.equal(c, 0);
|
|
|
|
collection.set(URI.parse('foo:bar1'), [
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
|
|
]);
|
|
collection.set(URI.parse('foo:bar2'), [
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
|
|
]);
|
|
collection.forEach(() => c++);
|
|
assert.equal(c, 2);
|
|
|
|
assert.ok(collection.has(URI.parse('foo:bar1')));
|
|
assert.ok(collection.has(URI.parse('foo:bar2')));
|
|
assert.ok(!collection.has(URI.parse('foo:bar3')));
|
|
collection.delete(URI.parse('foo:bar1'));
|
|
assert.ok(!collection.has(URI.parse('foo:bar1')));
|
|
|
|
collection.dispose();
|
|
});
|
|
|
|
test('diagnostic collection, immutable read', function () {
|
|
let collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
collection.set(URI.parse('foo:bar'), [
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-1'),
|
|
new Diagnostic(new Range(0, 0, 1, 1), 'message-2')
|
|
]);
|
|
|
|
let array = collection.get(URI.parse('foo:bar'));
|
|
assert.throws(() => array.length = 0);
|
|
assert.throws(() => array.pop());
|
|
assert.throws(() => array[0] = new Diagnostic(new Range(0, 0, 0, 0), 'evil'));
|
|
|
|
collection.forEach((uri, array) => {
|
|
assert.throws(() => array.length = 0);
|
|
assert.throws(() => array.pop());
|
|
assert.throws(() => array[0] = new Diagnostic(new Range(0, 0, 0, 0), 'evil'));
|
|
});
|
|
|
|
array = collection.get(URI.parse('foo:bar'));
|
|
assert.equal(array.length, 2);
|
|
|
|
collection.dispose();
|
|
});
|
|
|
|
|
|
test('diagnostics collection, set with dupliclated tuples', function () {
|
|
let collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
let uri = URI.parse('sc:hightower');
|
|
collection.set([
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-1')]],
|
|
[URI.parse('some:thing'), [new Diagnostic(new Range(0, 0, 1, 1), 'something')]],
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-2')]],
|
|
]);
|
|
|
|
let array = collection.get(uri);
|
|
assert.equal(array.length, 2);
|
|
let [first, second] = array;
|
|
assert.equal(first.message, 'message-1');
|
|
assert.equal(second.message, 'message-2');
|
|
|
|
// clear
|
|
collection.delete(uri);
|
|
assert.ok(!collection.has(uri));
|
|
|
|
// bad tuple clears 1/2
|
|
collection.set([
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-1')]],
|
|
[URI.parse('some:thing'), [new Diagnostic(new Range(0, 0, 1, 1), 'something')]],
|
|
[uri, undefined]
|
|
]);
|
|
assert.ok(!collection.has(uri));
|
|
|
|
// clear
|
|
collection.delete(uri);
|
|
assert.ok(!collection.has(uri));
|
|
|
|
// bad tuple clears 2/2
|
|
collection.set([
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-1')]],
|
|
[URI.parse('some:thing'), [new Diagnostic(new Range(0, 0, 1, 1), 'something')]],
|
|
[uri, undefined],
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-2')]],
|
|
[uri, [new Diagnostic(new Range(0, 0, 0, 1), 'message-3')]],
|
|
]);
|
|
|
|
array = collection.get(uri);
|
|
assert.equal(array.length, 2);
|
|
[first, second] = array;
|
|
assert.equal(first.message, 'message-2');
|
|
assert.equal(second.message, 'message-3');
|
|
|
|
collection.dispose();
|
|
});
|
|
|
|
test('diagnostics collection, set tuple overrides, #11547', function () {
|
|
|
|
let lastEntries: [UriComponents, IMarkerData[]][];
|
|
let collection = new DiagnosticCollection('test', new class extends DiagnosticsShape {
|
|
$changeMany(owner: string, entries: [UriComponents, IMarkerData[]][]): void {
|
|
lastEntries = entries;
|
|
return super.$changeMany(owner, entries);
|
|
}
|
|
});
|
|
let uri = URI.parse('sc:hightower');
|
|
|
|
collection.set([[uri, [new Diagnostic(new Range(0, 0, 1, 1), 'error')]]]);
|
|
assert.equal(collection.get(uri).length, 1);
|
|
assert.equal(collection.get(uri)[0].message, 'error');
|
|
assert.equal(lastEntries.length, 1);
|
|
let [[, data1]] = lastEntries;
|
|
assert.equal(data1.length, 1);
|
|
assert.equal(data1[0].message, 'error');
|
|
lastEntries = undefined;
|
|
|
|
collection.set([[uri, [new Diagnostic(new Range(0, 0, 1, 1), 'warning')]]]);
|
|
assert.equal(collection.get(uri).length, 1);
|
|
assert.equal(collection.get(uri)[0].message, 'warning');
|
|
assert.equal(lastEntries.length, 1);
|
|
let [[, data2]] = lastEntries;
|
|
assert.equal(data2.length, 1);
|
|
assert.equal(data2[0].message, 'warning');
|
|
lastEntries = undefined;
|
|
});
|
|
|
|
test('diagnostics collection, tuples and undefined (small array), #15585', function () {
|
|
|
|
const collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
let uri = URI.parse('sc:hightower');
|
|
let uri2 = URI.parse('sc:nomad');
|
|
let diag = new Diagnostic(new Range(0, 0, 0, 1), 'ffff');
|
|
|
|
collection.set([
|
|
[uri, [diag, diag, diag]],
|
|
[uri, undefined],
|
|
[uri, [diag]],
|
|
|
|
[uri2, [diag, diag]],
|
|
[uri2, undefined],
|
|
[uri2, [diag]],
|
|
]);
|
|
|
|
assert.equal(collection.get(uri).length, 1);
|
|
assert.equal(collection.get(uri2).length, 1);
|
|
});
|
|
|
|
test('diagnostics collection, tuples and undefined (large array), #15585', function () {
|
|
|
|
const collection = new DiagnosticCollection('test', new DiagnosticsShape());
|
|
const tuples: [URI, Diagnostic[]][] = [];
|
|
|
|
for (let i = 0; i < 500; i++) {
|
|
let uri = URI.parse('sc:hightower#' + i);
|
|
let diag = new Diagnostic(new Range(0, 0, 0, 1), i.toString());
|
|
|
|
tuples.push([uri, [diag, diag, diag]]);
|
|
tuples.push([uri, undefined]);
|
|
tuples.push([uri, [diag]]);
|
|
}
|
|
|
|
collection.set(tuples);
|
|
|
|
for (let i = 0; i < 500; i++) {
|
|
let uri = URI.parse('sc:hightower#' + i);
|
|
assert.equal(collection.has(uri), true);
|
|
assert.equal(collection.get(uri).length, 1);
|
|
}
|
|
});
|
|
|
|
test('diagnostic capping', function () {
|
|
|
|
let lastEntries: [UriComponents, IMarkerData[]][];
|
|
let collection = new DiagnosticCollection('test', new class extends DiagnosticsShape {
|
|
$changeMany(owner: string, entries: [UriComponents, IMarkerData[]][]): void {
|
|
lastEntries = entries;
|
|
return super.$changeMany(owner, entries);
|
|
}
|
|
});
|
|
let uri = URI.parse('aa:bb');
|
|
|
|
let diagnostics: Diagnostic[] = [];
|
|
for (let i = 0; i < 500; i++) {
|
|
diagnostics.push(new Diagnostic(new Range(i, 0, i + 1, 0), `error#${i}`, i < 300
|
|
? DiagnosticSeverity.Warning
|
|
: DiagnosticSeverity.Error));
|
|
}
|
|
|
|
collection.set(uri, diagnostics);
|
|
assert.equal(collection.get(uri).length, 500);
|
|
assert.equal(lastEntries.length, 1);
|
|
assert.equal(lastEntries[0][1].length, 251);
|
|
assert.equal(lastEntries[0][1][0].severity, Severity.Error);
|
|
assert.equal(lastEntries[0][1][200].severity, Severity.Warning);
|
|
assert.equal(lastEntries[0][1][250].severity, Severity.Error);
|
|
});
|
|
});
|