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


TypeScript ConnectionStore.clearActiveConnections方法代碼示例

本文整理匯總了TypeScript中sql/parts/connection/common/connectionStore.ConnectionStore.clearActiveConnections方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ConnectionStore.clearActiveConnections方法的具體用法?TypeScript ConnectionStore.clearActiveConnections怎麽用?TypeScript ConnectionStore.clearActiveConnections使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sql/parts/connection/common/connectionStore.ConnectionStore的用法示例。


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

示例1: test

	test('addActiveConnection should add same connection exactly once', (done) => {
		// setup memento for MRU to return a list we have access to
		credentialStore.setup(x => x.saveCredential(TypeMoq.It.isAny(), TypeMoq.It.isAny()))
			.returns(() => Promise.resolve(true));

		// Given we save the same connection twice
		// Then expect the only 1 instance of that connection to be listed in the MRU
		let connectionStore = new ConnectionStore(storageServiceMock.object, context.object, undefined, workspaceConfigurationServiceMock.object,
			credentialStore.object, capabilitiesService, connectionConfig.object);
		connectionStore.clearActiveConnections();
		connectionStore.clearRecentlyUsed();
		let promise = Promise.resolve();
		let cred = Object.assign({}, defaultNamedProfile, { serverName: defaultNamedProfile.serverName + 1 });
		let connectionProfile = new ConnectionProfile(capabilitiesService, cred);
		promise = promise.then(() => {
			return connectionStore.addActiveConnection(defaultNamedConnectionProfile);
		}).then(() => {
			return connectionStore.addActiveConnection(connectionProfile);
		}).then(() => {
			return connectionStore.addActiveConnection(connectionProfile);
		}).then(() => {
			let current = connectionStore.getRecentlyUsedConnections();
			assert.equal(current.length, 2, 'expect 2 unique credentials to have been added');
			assert.equal(current[0].serverName, cred.serverName, 'Expect most recently saved item to be first in list');
			assert.ok(!current[0].password);
		}).then(() => done(), err => done(err));
	});
開發者ID:jumpinjackie,項目名稱:sqlopsstudio,代碼行數:27,代碼來源:connectionStore.test.ts


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