当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript StorageService.store方法代码示例

本文整理汇总了TypeScript中vs/platform/storage/common/storageService.StorageService.store方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StorageService.store方法的具体用法?TypeScript StorageService.store怎么用?TypeScript StorageService.store使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/platform/storage/common/storageService.StorageService的用法示例。


在下文中一共展示了StorageService.store方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: test

	test('StorageSevice cleans up when workspace changes', () => {
		let storageImpl = new InMemoryLocalStorage();
		let ws = contextService.getWorkspace();
		ws.uid = new Date().getTime();
		let s = new StorageService(storageImpl, null, ws);

		s.store('key1', 'foobar');
		s.store('key2', 'something');
		s.store('wkey1', 'foo', StorageScope.WORKSPACE);
		s.store('wkey2', 'foo2', StorageScope.WORKSPACE);

		s = new StorageService(storageImpl, null, contextService.getWorkspace());

		assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar');
		assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null);

		assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something');
		assert.strictEqual(s.get('wkey1', StorageScope.WORKSPACE), 'foo');
		assert.strictEqual(s.get('wkey2', StorageScope.WORKSPACE), 'foo2');

		ws = new Workspace(TestWorkspace.resource, Date.now());
		ws.uid = new Date().getTime() + 100;
		s = new StorageService(storageImpl, null, ws);

		assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar');
		assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null);

		assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something');
		assert(!s.get('wkey1', StorageScope.WORKSPACE));
		assert(!s.get('wkey2', StorageScope.WORKSPACE));
	});
开发者ID:FabianLauer,项目名称:vscode,代码行数:31,代码来源:storageService.test.ts

示例2: test

	test('StorageSevice cleans up when workspace changes', () => {
		let storageImpl = new InMemoryLocalStorage();
		let s = new StorageService(storageImpl, null, contextService);

		s.store('key1', 'foobar');
		s.store('key2', 'something');
		s.store('wkey1', 'foo', StorageScope.WORKSPACE);
		s.store('wkey2', 'foo2', StorageScope.WORKSPACE);

		s = new StorageService(storageImpl, null, contextService);

		assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar');
		assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null);

		assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something');
		assert.strictEqual(s.get('wkey1', StorageScope.WORKSPACE), 'foo');
		assert.strictEqual(s.get('wkey2', StorageScope.WORKSPACE), 'foo2');

		let ws: any = clone(TestWorkspace);
		ws.uid = new Date().getTime() + 100;
		instantiationService.stub(IWorkspaceContextService, 'getWorkspace', ws);
		s = new StorageService(storageImpl, null, contextService);

		assert.strictEqual(s.get('key1', StorageScope.GLOBAL), 'foobar');
		assert.strictEqual(s.get('key1', StorageScope.WORKSPACE, null), null);

		assert.strictEqual(s.get('key2', StorageScope.GLOBAL), 'something');
		assert(!s.get('wkey1', StorageScope.WORKSPACE));
		assert(!s.get('wkey2', StorageScope.WORKSPACE));
	});
开发者ID:StateFarmIns,项目名称:vscode,代码行数:30,代码来源:storageService.test.ts

示例3: test

	test('Parse Storage (handle subfolders properly)', () => {
		const ws1 = URI.file('/some/folder/folder1').toString();
		const ws2 = URI.file('/some/folder/folder1/sub1').toString();

		const s1 = new StorageService(storage, storage, ws1, Date.now());
		const s2 = new StorageService(storage, storage, ws2, Date.now());

		s1.store('s1key1', 'value1', StorageScope.WORKSPACE);
		s1.store('s1key2.something', JSON.stringify({ foo: 'bar' }), StorageScope.WORKSPACE);
		s1.store('s1key3/special', true, StorageScope.WORKSPACE);
		s1.store('s1key4 space', 4, StorageScope.WORKSPACE);

		s2.store('s2key1', 'value1', StorageScope.WORKSPACE);
		s2.store('s2key2.something', JSON.stringify({ foo: 'bar' }), StorageScope.WORKSPACE);
		s2.store('s2key3/special', true, StorageScope.WORKSPACE);
		s2.store('s2key4 space', 4, StorageScope.WORKSPACE);

		const parsed = parseStorage(storage);

		const s1Storage = parsed.folder.get(ws1);
		assert.equal(Object.keys(s1Storage).length, 5);
		assert.equal(s1Storage['s1key1'], s1.get('s1key1', StorageScope.WORKSPACE));
		assert.equal(s1Storage['s1key2.something'], s1.get('s1key2.something', StorageScope.WORKSPACE));
		assert.equal(s1Storage['s1key3/special'], s1.get('s1key3/special', StorageScope.WORKSPACE));
		assert.equal(s1Storage['s1key4 space'], s1.get('s1key4 space', StorageScope.WORKSPACE));

		const s2Storage = parsed.folder.get(ws2);
		assert.equal(Object.keys(s2Storage).length, 5);
		assert.equal(s2Storage['s2key1'], s2.get('s2key1', StorageScope.WORKSPACE));
		assert.equal(s2Storage['s2key2.something'], s2.get('s2key2.something', StorageScope.WORKSPACE));
		assert.equal(s2Storage['s2key3/special'], s2.get('s2key3/special', StorageScope.WORKSPACE));
		assert.equal(s2Storage['s2key4 space'], s2.get('s2key4 space', StorageScope.WORKSPACE));
	});
开发者ID:ramesius,项目名称:vscode,代码行数:33,代码来源:migration.test.ts

示例4: test

	test('lastSessionDate when aviablale', async function () {

		storageService.store('telemetry.lastSessionDate', new Date().toUTCString());

		const props = await resolveWorkbenchCommonProperties(storageService, commit, version, 'someMachineId', installSource);
		assert.ok('common.lastSessionDate' in props); // conditional, see below
		assert.ok('common.isNewSession' in props);
		assert.equal(props['common.isNewSession'], 0);
	});
开发者ID:ramesius,项目名称:vscode,代码行数:9,代码来源:commonProperties.test.ts

示例5: test

	test('lastSessionDate when aviablale', function () {

		storageService.store('telemetry.lastSessionDate', new Date().toUTCString());

		return resolveWorkbenchCommonProperties(storageService, commit, version, source).then(props => {

			assert.ok('common.lastSessionDate' in props); // conditional, see below
			assert.ok('common.isNewSession' in props);
			assert.equal(props['common.isNewSession'], 0);
		});
	});
开发者ID:SeanKilleen,项目名称:vscode,代码行数:11,代码来源:commonProperties.test.ts

示例6: createService

	function createService(workspaceId?: string): StorageService {
		const service = new StorageService(storage, storage, workspaceId, workspaceId && startsWith(workspaceId, 'file:') ? Date.now() : void 0);

		// Unrelated
		storage.setItem('foo', 'bar');
		storage.setItem('storage://foo', 'bar');
		storage.setItem('storage://global/storage://foo', 'bar');

		// Global
		service.store('key1', 'value1');
		service.store('key2.something', JSON.stringify({ foo: 'bar' }));
		service.store('key3/special', true);
		service.store('key4 space', 4);

		// Workspace
		service.store('key1', 'value1', StorageScope.WORKSPACE);
		service.store('key2.something', JSON.stringify({ foo: 'bar' }), StorageScope.WORKSPACE);
		service.store('key3/special', true, StorageScope.WORKSPACE);
		service.store('key4 space', 4, StorageScope.WORKSPACE);

		return service;
	}
开发者ID:ramesius,项目名称:vscode,代码行数:22,代码来源:migration.test.ts


注:本文中的vs/platform/storage/common/storageService.StorageService.store方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。