當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript servicesTestUtils.createMockModeService函數代碼示例

本文整理匯總了TypeScript中vs/editor/test/common/servicesTestUtils.createMockModeService函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript createMockModeService函數的具體用法?TypeScript createMockModeService怎麽用?TypeScript createMockModeService使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了createMockModeService函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: test

	test("TextDiffEditorModel", function(done) {
		let inst = InstantiationService.create({
			modeService: createMockModeService(),
			modelService: createMockModelService(),
		});
		let input = inst.createInstance(StringEditorInput, "name", 'description', "value", "text/plain", false);
		let otherInput = inst.createInstance(StringEditorInput, "name2", 'description', "value2", "text/plain", false);
		let diffInput = new DiffEditorInput("name", "description", input, otherInput);

		diffInput.resolve(true).then(function(model: any) {
			assert(model);
			assert(model instanceof TextDiffEditorModel);

			let diffEditorModel = model.textDiffEditorModel;
			assert(diffEditorModel.original);
			assert(diffEditorModel.modified);

			return diffInput.resolve(true).then(function(model: any) {
				assert(model.isResolved());

				assert(diffEditorModel !== model.textDiffEditorModel);
				diffInput.dispose();
				assert(!model.textDiffEditorModel);
			});
		}).done(() => {
			done();
		});
	});
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:28,代碼來源:editorModel.test.ts

示例2: setup

	setup(() => {
		eventService = new TestEventService();
		messageService = new TestMessageService();
		modeService = createMockModeService();
		modelService = createMockModelService();
		counter = 0;

		requestService = new MockRequestService(TestWorkspace, (url) => {
			counter++;

			if (/index\.html$/.test(url)) {
				return {
					responseText: 'Hello Html',
					getResponseHeader: key => ({
						'last-modified': counter === 1 ? new Date().toUTCString() : new Date(new Date().getTime() + 1000).toUTCString(),
						'content-type': 'text/html'
					})[key.toLowerCase()]
				};
			} else if (/index_changes\.html$/.test(url)) {
				return {
					responseText: counter === 1 ? 'Hello Html' : 'Hello Changed Html',
					getResponseHeader: key => ({
						'last-modified': counter === 1 ? new Date().toUTCString() : new Date(new Date().getTime() + 1000).toUTCString(),
						'content-type': 'text/html'
					})[key.toLowerCase()]
				};
			}

			return null;
		});
	});
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:31,代碼來源:resourceEditorModel.test.ts

示例3: test

	test('TextDiffEditorModel', function (done) {
		let services = new ServiceCollection();
		services.set(IModeService, createMockModeService());
		services.set(IModelService, createMockModelService());
		let inst = new InstantiationService(services);
		let input = inst.createInstance(StringEditorInput, 'name', 'description', 'value', 'text/plain', false);
		let otherInput = inst.createInstance(StringEditorInput, 'name2', 'description', 'value2', 'text/plain', false);
		let diffInput = new DiffEditorInput('name', 'description', input, otherInput);

		diffInput.resolve(true).then(function (model: any) {
			assert(model);
			assert(model instanceof TextDiffEditorModel);

			let diffEditorModel = model.textDiffEditorModel;
			assert(diffEditorModel.original);
			assert(diffEditorModel.modified);

			return diffInput.resolve(true).then(function (model: any) {
				assert(model.isResolved());

				assert(diffEditorModel !== model.textDiffEditorModel);
				diffInput.dispose();
				assert(!model.textDiffEditorModel);
			});
		}).done(() => {
			done();
		});
	});
開發者ID:13572293130,項目名稱:vscode,代碼行數:28,代碼來源:editorModel.test.ts

示例4: executeMonarchTokenizationTests

export function executeMonarchTokenizationTests(name:string, language:ILanguage, tests:ITestItem[][]): void {
	var lexer = compile(language);

	var modeService = createMockModeService();

	var tokenizationSupport = createTokenizationSupport(modeService, new SimpleMode('mock.mode'), lexer);

	executeTests(tokenizationSupport, tests);
}
開發者ID:ansonn,項目名稱:vscode,代碼行數:9,代碼來源:modesUtil.ts

示例5: load

export function load(modeId: string, preloadModes: string[] = [] ): TPromise<modes.IMode> {
	var toLoad:string[] = [].concat(preloadModes).concat([modeId]);

	var modeService = createMockModeService();

	var promises = toLoad.map(modeId => modeService.getOrCreateMode(modeId));

	return TPromise.join(promises).then(modes => {
		return modes[modes.length -1];
	});
}
開發者ID:ansonn,項目名稱:vscode,代碼行數:11,代碼來源:modesUtil.ts

示例6: test

	test('Bug 12104: [f12] createModel not successfully handling mime type list?', () => {
		let modeService = createMockModeService();
		assert.equal(modeService.getModeId('text/html,text/plain'), 'html');
	});
開發者ID:ErickWendel,項目名稱:vscode,代碼行數:4,代碼來源:modesRegistry.test.ts


注:本文中的vs/editor/test/common/servicesTestUtils.createMockModeService函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。