searchModel.test.ts 5.6 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
'use strict';

import * as assert from 'assert';
8
import {Match, FileMatch, SearchResult, EmptyMatch} from 'vs/workbench/parts/search/common/searchModel';
9
import {Model} from 'vs/editor/common/model/model';
10
import {Emitter} from 'vs/base/common/event';
B
Benjamin Pasero 已提交
11
import {IModel} from 'vs/editor/common/editorCommon';
J
Johannes Rieken 已提交
12
import URI from 'vs/base/common/uri';
13 14 15 16 17
import {IRequestService} from 'vs/platform/request/common/request';
import {IWorkspaceContextService} from 'vs/platform/workspace/common/workspace';
import {IModelService} from 'vs/editor/common/services/modelService';
import {ServiceCollection} from 'vs/platform/instantiation/common/serviceCollection';
import {InstantiationService} from 'vs/platform/instantiation/common/instantiationService';
B
Benjamin Pasero 已提交
18
import {TestContextService} from 'vs/workbench/test/common/servicesTestUtils';
E
Erich Gamma 已提交
19 20 21
import {IInstantiationService} from 'vs/platform/instantiation/common/instantiation';
import {IFileMatch} from 'vs/platform/search/common/search';

J
Johannes Rieken 已提交
22 23
function toUri(path: string): URI {
	return URI.file('C:\\' + path);
E
Erich Gamma 已提交
24 25 26 27 28 29 30
}

suite('Search - Model', () => {
	let instantiation: IInstantiationService;
	let oneModel: IModel;

	setup(() => {
31
		let emitter = new Emitter<any>();
E
Erich Gamma 已提交
32

33
		oneModel = Model.createFromString('line1\nline2\nline3', undefined, undefined, URI.parse('file:///folder/file.txt'));
34 35 36 37
		let services = new ServiceCollection();
		services.set(IWorkspaceContextService, new TestContextService());
		services.set(IRequestService, <any>{
			getRequestUrl: () => 'file:///folder/file.txt'
E
Erich Gamma 已提交
38
		});
39 40 41 42 43
		services.set(IModelService, <any>{
			getModel: () => oneModel,
			onModelAdded: emitter.event
		});
		instantiation = new InstantiationService(services);
E
Erich Gamma 已提交
44 45 46 47 48 49
	});

	teardown(() => {
		oneModel.dispose();
	});

B
Benjamin Pasero 已提交
50
	test('Line Match', function () {
E
Erich Gamma 已提交
51 52 53 54 55 56 57 58 59
		let fileMatch = new FileMatch(null, toUri('folder\\file.txt'));
		let lineMatch = new Match(fileMatch, 'foo bar', 1, 0, 3);
		assert.equal(lineMatch.text(), 'foo bar');
		assert.equal(lineMatch.range().startLineNumber, 2);
		assert.equal(lineMatch.range().endLineNumber, 2);
		assert.equal(lineMatch.range().startColumn, 1);
		assert.equal(lineMatch.range().endColumn, 4);
	});

B
Benjamin Pasero 已提交
60
	test('Line Match - Remove', function () {
E
Erich Gamma 已提交
61 62 63 64 65 66

		let fileMatch = new FileMatch(null, toUri('folder\\file.txt'));
		let lineMatch = new Match(fileMatch, 'foo bar', 1, 0, 3);
		fileMatch.add(lineMatch);
		assert.equal(fileMatch.matches().length, 1);
		fileMatch.remove(lineMatch);
67 68
		assert.equal(fileMatch.matches().length, 1);
		assert.ok(fileMatch.matches()[0] instanceof EmptyMatch);
E
Erich Gamma 已提交
69 70
	});

B
Benjamin Pasero 已提交
71
	test('File Match', function () {
E
Erich Gamma 已提交
72 73 74 75 76 77 78 79 80 81 82 83

		let fileMatch = new FileMatch(null, toUri('folder\\file.txt'));
		assert.equal(fileMatch.matches(), 0);
		assert.equal(fileMatch.resource().toString(), 'file:///c%3A/folder/file.txt');
		assert.equal(fileMatch.name(), 'file.txt');

		fileMatch = new FileMatch(null, toUri('file.txt'));
		assert.equal(fileMatch.matches(), 0);
		assert.equal(fileMatch.resource().toString(), 'file:///c%3A/file.txt');
		assert.equal(fileMatch.name(), 'file.txt');
	});

B
Benjamin Pasero 已提交
84
	test('Search Result', function () {
E
Erich Gamma 已提交
85 86 87 88 89 90 91

		let searchResult = instantiation.createInstance(SearchResult, null);
		assert.equal(searchResult.isEmpty(), true);

		let raw: IFileMatch[] = [];
		for (let i = 0; i < 10; i++) {
			raw.push({
J
Johannes Rieken 已提交
92
				resource: URI.parse('file://c:/' + i),
E
Erich Gamma 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105
				lineMatches: [{
					preview: String(i),
					lineNumber: 1,
					offsetAndLengths: [[0, 1]]
				}]
			});
		}
		searchResult.append(raw);

		assert.equal(searchResult.isEmpty(), false);
		assert.equal(searchResult.matches().length, 10);
	});

B
Benjamin Pasero 已提交
106
	test('Alle Drei Zusammen', function () {
E
Erich Gamma 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

		let searchResult = instantiation.createInstance(SearchResult, null);
		let fileMatch = new FileMatch(searchResult, toUri('far\\boo'));
		let lineMatch = new Match(fileMatch, 'foo bar', 1, 0, 3);

		assert(lineMatch.parent() === fileMatch);
		assert(fileMatch.parent() === searchResult);
	});

	//// ----- utils
	//function lineHasDecorations(model: editor.IModel, lineNumber: number, decorations: { start: number; end: number; }[]): void {
	//    let lineDecorations:typeof decorations = [];
	//    let decs = model.getLineDecorations(lineNumber);
	//    for (let i = 0, len = decs.length; i < len; i++) {
	//        lineDecorations.push({
	//            start: decs[i].range.startColumn,
	//            end: decs[i].range.endColumn
	//        });
	//    }
	//    assert.deepEqual(lineDecorations, decorations);
	//}
	//
	//function lineHasNoDecoration(model: editor.IModel, lineNumber: number): void {
	//    lineHasDecorations(model, lineNumber, []);
	//}
	//
	//function lineHasDecoration(model: editor.IModel, lineNumber: number, start: number, end: number): void {
	//    lineHasDecorations(model, lineNumber, [{
	//        start: start,
	//        end: end
	//    }]);
	//}
	//// ----- end utils
	//
	//test('Model Highlights', function () {
	//
	//    let fileMatch = instantiation.createInstance(FileMatch, null, toUri('folder\\file.txt'));
	//    fileMatch.add(new Match(fileMatch, 'line2', 1, 0, 2));
	//    fileMatch.connect();
	//    lineHasDecoration(oneModel, 2, 1, 3);
	//});
	//
	//test('Dispose', function () {
	//
	//    let fileMatch = instantiation.createInstance(FileMatch, null, toUri('folder\\file.txt'));
	//    fileMatch.add(new Match(fileMatch, 'line2', 1, 0, 2));
	//    fileMatch.connect();
	//    lineHasDecoration(oneModel, 2, 1, 3);
	//
	//    fileMatch.dispose();
	//    lineHasNoDecoration(oneModel, 2);
	//});
});