mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-27 02:27:53 +01:00
* Converted another ~70 test files to strictNullChecks These are the remaining test files that didn't require any changes to non-test file types. I'll send those in separately. Most changes were automatic and small (`!`s). The only non-trival change is that `extHostSearch.ts` needs an interface for its test data. Again used [TypeStat](https://github.com/JoshuaKGoldberg/TypeStat) when possible per #65581. I'm happy to split this up into smaller PRs if you'd prefer! * Added missing `!`s to `commands.test.ts`
176 lines
6.4 KiB
TypeScript
176 lines
6.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as assert from 'assert';
|
|
import { ITextModel } from 'vs/editor/common/model';
|
|
import { URI } from 'vs/base/common/uri';
|
|
import { ResourceEditorInput } from 'vs/workbench/common/editor/resourceEditorInput';
|
|
import { ResourceEditorModel } from 'vs/workbench/common/editor/resourceEditorModel';
|
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
|
import { workbenchInstantiationService, TestTextFileService } from 'vs/workbench/test/workbenchTestServices';
|
|
import { toResource } from 'vs/base/test/common/utils';
|
|
import { ITextModelService } from 'vs/editor/common/services/resolverService';
|
|
import { IModelService } from 'vs/editor/common/services/modelService';
|
|
import { IModeService } from 'vs/editor/common/services/modeService';
|
|
import { TextFileEditorModel } from 'vs/workbench/services/textfile/common/textFileEditorModel';
|
|
import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles';
|
|
import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService';
|
|
import { TextFileEditorModelManager } from 'vs/workbench/services/textfile/common/textFileEditorModelManager';
|
|
import { Event } from 'vs/base/common/event';
|
|
import { snapshotToString } from 'vs/platform/files/common/files';
|
|
import { timeout } from 'vs/base/common/async';
|
|
|
|
class ServiceAccessor {
|
|
constructor(
|
|
@ITextModelService public textModelResolverService: ITextModelService,
|
|
@IModelService public modelService: IModelService,
|
|
@IModeService public modeService: IModeService,
|
|
@ITextFileService public textFileService: TestTextFileService,
|
|
@IUntitledEditorService public untitledEditorService: IUntitledEditorService
|
|
) {
|
|
}
|
|
}
|
|
|
|
suite('Workbench - TextModelResolverService', () => {
|
|
|
|
let instantiationService: IInstantiationService;
|
|
let accessor: ServiceAccessor;
|
|
let model: TextFileEditorModel;
|
|
|
|
setup(() => {
|
|
instantiationService = workbenchInstantiationService();
|
|
accessor = instantiationService.createInstance(ServiceAccessor);
|
|
});
|
|
|
|
teardown(() => {
|
|
if (model) {
|
|
model.dispose();
|
|
model = (void 0)!;
|
|
}
|
|
(<TextFileEditorModelManager>accessor.textFileService.models).clear();
|
|
(<TextFileEditorModelManager>accessor.textFileService.models).dispose();
|
|
accessor.untitledEditorService.revertAll();
|
|
});
|
|
|
|
test('resolve resource', function () {
|
|
const dispose = accessor.textModelResolverService.registerTextModelContentProvider('test', {
|
|
provideTextContent: function (resource: URI): Promise<ITextModel> {
|
|
if (resource.scheme === 'test') {
|
|
let modelContent = 'Hello Test';
|
|
let languageSelection = accessor.modeService.create('json');
|
|
return Promise.resolve(accessor.modelService.createModel(modelContent, languageSelection, resource));
|
|
}
|
|
|
|
return Promise.resolve(null!);
|
|
}
|
|
});
|
|
|
|
let resource = URI.from({ scheme: 'test', authority: null!, path: 'thePath' });
|
|
let input: ResourceEditorInput = instantiationService.createInstance(ResourceEditorInput, 'The Name', 'The Description', resource);
|
|
|
|
return input.resolve().then(async model => {
|
|
assert.ok(model);
|
|
assert.equal(snapshotToString((model as ResourceEditorModel).createSnapshot()), 'Hello Test');
|
|
|
|
let disposed = false;
|
|
let disposedPromise = new Promise(resolve => {
|
|
Event.once(model.onDispose)(() => {
|
|
disposed = true;
|
|
resolve();
|
|
});
|
|
});
|
|
input.dispose();
|
|
await disposedPromise;
|
|
assert.equal(disposed, true);
|
|
|
|
dispose.dispose();
|
|
});
|
|
});
|
|
|
|
test('resolve file', function () {
|
|
model = instantiationService.createInstance(TextFileEditorModel, toResource.call(this, '/path/file_resolver.txt'), 'utf8');
|
|
(<TextFileEditorModelManager>accessor.textFileService.models).add(model.getResource(), model);
|
|
|
|
return model.load().then(() => {
|
|
return accessor.textModelResolverService.createModelReference(model.getResource()).then(ref => {
|
|
const model = ref.object;
|
|
const editorModel = model.textEditorModel;
|
|
|
|
assert.ok(editorModel);
|
|
assert.equal(editorModel.getValue(), 'Hello Html');
|
|
|
|
let disposed = false;
|
|
Event.once(model.onDispose)(() => {
|
|
disposed = true;
|
|
});
|
|
|
|
ref.dispose();
|
|
return timeout(0).then(() => { // due to the reference resolving the model first which is async
|
|
assert.equal(disposed, true);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
test('resolve untitled', function () {
|
|
const service = accessor.untitledEditorService;
|
|
const input = service.createOrGet();
|
|
|
|
return input.resolve().then(() => {
|
|
return accessor.textModelResolverService.createModelReference(input.getResource()).then(ref => {
|
|
const model = ref.object;
|
|
const editorModel = model.textEditorModel;
|
|
|
|
assert.ok(editorModel);
|
|
ref.dispose();
|
|
|
|
input.dispose();
|
|
});
|
|
});
|
|
});
|
|
|
|
test('even loading documents should be refcounted', async () => {
|
|
let resolveModel!: Function;
|
|
let waitForIt = new Promise(c => resolveModel = c);
|
|
|
|
const disposable = accessor.textModelResolverService.registerTextModelContentProvider('test', {
|
|
provideTextContent: (resource: URI): Promise<ITextModel> => {
|
|
return waitForIt.then(_ => {
|
|
let modelContent = 'Hello Test';
|
|
let languageSelection = accessor.modeService.create('json');
|
|
return accessor.modelService.createModel(modelContent, languageSelection, resource);
|
|
});
|
|
}
|
|
});
|
|
|
|
const uri = URI.from({ scheme: 'test', authority: null!, path: 'thePath' });
|
|
|
|
const modelRefPromise1 = accessor.textModelResolverService.createModelReference(uri);
|
|
const modelRefPromise2 = accessor.textModelResolverService.createModelReference(uri);
|
|
|
|
resolveModel();
|
|
|
|
const modelRef1 = await modelRefPromise1;
|
|
const model1 = modelRef1.object;
|
|
const modelRef2 = await modelRefPromise2;
|
|
const model2 = modelRef2.object;
|
|
const textModel = model1.textEditorModel;
|
|
|
|
assert.equal(model1, model2, 'they are the same model');
|
|
assert(!textModel.isDisposed(), 'the text model should not be disposed');
|
|
|
|
modelRef1.dispose();
|
|
assert(!textModel.isDisposed(), 'the text model should still not be disposed');
|
|
|
|
let p1 = new Promise(resolve => textModel.onWillDispose(resolve));
|
|
modelRef2.dispose();
|
|
|
|
await p1;
|
|
assert(textModel.isDisposed(), 'the text model should finally be disposed');
|
|
|
|
disposable.dispose();
|
|
});
|
|
});
|