mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 01:25:36 -05:00
* Changing SqlCmdVars from Record to Map * Converting the rest * Updating tests * more cleanup * Updating test to use new test creation API
107 lines
4.8 KiB
TypeScript
107 lines
4.8 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as should from 'should';
|
|
import * as azdata from 'azdata';
|
|
import * as vscode from 'vscode';
|
|
import * as sinon from 'sinon';
|
|
import * as TypeMoq from 'typemoq';
|
|
import * as baselines from './baselines/baselines';
|
|
import * as testUtils from './testUtils';
|
|
import * as constants from '../common/constants';
|
|
import { TestContext, createContext, mockDacFxOptionsResult } from './testContext';
|
|
import { load, readPublishProfile } from '../models/publishProfile/publishProfile';
|
|
|
|
let testContext: TestContext;
|
|
|
|
describe('Publish profile tests', function (): void {
|
|
before(async function (): Promise<void> {
|
|
await baselines.loadBaselines();
|
|
});
|
|
|
|
beforeEach(function (): void {
|
|
testContext = createContext();
|
|
});
|
|
|
|
afterEach(function (): void {
|
|
sinon.restore();
|
|
});
|
|
|
|
after(async function (): Promise<void> {
|
|
await testUtils.deleteGeneratedTestFolder();
|
|
});
|
|
|
|
it('Should read database name, integrated security connection string, and SQLCMD variables from publish profile', async function (): Promise<void> {
|
|
await baselines.loadBaselines();
|
|
const profilePath = await testUtils.createTestFile(this.test, baselines.publishProfileIntegratedSecurityBaseline, 'publishProfile.publish.xml');
|
|
const connectionResult = {
|
|
connected: true,
|
|
connectionId: 'connId',
|
|
errorMessage: '',
|
|
errorCode: 0
|
|
};
|
|
testContext.dacFxService.setup(x => x.getOptionsFromProfile(TypeMoq.It.isAny())).returns(async () => {
|
|
return Promise.resolve(mockDacFxOptionsResult);
|
|
});
|
|
sinon.stub(azdata.connection, 'connect').resolves(connectionResult);
|
|
|
|
const result = await load(vscode.Uri.file(profilePath), testContext.dacFxService.object);
|
|
should(result.databaseName).equal('targetDb');
|
|
should(result.sqlCmdVariables.size).equal(1);
|
|
should(result.sqlCmdVariables.get('ProdDatabaseName')).equal('MyProdDatabase');
|
|
should(result.connectionId).equal('connId');
|
|
should(result.connection).equal('testserver (default)');
|
|
should(result.options).equal(mockDacFxOptionsResult.deploymentOptions);
|
|
});
|
|
|
|
it('Should read database name, SQL login connection string, and SQLCMD variables from publish profile', async function (): Promise<void> {
|
|
await baselines.loadBaselines();
|
|
const profilePath = await testUtils.createTestFile(this.test, baselines.publishProfileSqlLoginBaseline, 'publishProfile.publish.xml');
|
|
const connectionResult = {
|
|
providerName: 'MSSQL',
|
|
connectionId: 'connId',
|
|
options: {
|
|
'server': 'testserver',
|
|
'user': 'testUser'
|
|
}
|
|
};
|
|
testContext.dacFxService.setup(x => x.getOptionsFromProfile(TypeMoq.It.isAny())).returns(async () => {
|
|
return Promise.resolve(mockDacFxOptionsResult);
|
|
});
|
|
sinon.stub(azdata.connection, 'openConnectionDialog').resolves(connectionResult);
|
|
|
|
const result = await load(vscode.Uri.file(profilePath), testContext.dacFxService.object);
|
|
should(result.databaseName).equal('targetDb');
|
|
should(result.sqlCmdVariables.size).equal(1);
|
|
should(result.sqlCmdVariables.get('ProdDatabaseName')).equal('MyProdDatabase');
|
|
should(result.connectionId).equal('connId');
|
|
should(result.connection).equal('testserver (testUser)');
|
|
should(result.options).equal(mockDacFxOptionsResult.deploymentOptions);
|
|
});
|
|
|
|
it('Should read SQLCMD variables correctly from publish profile even if DefaultValue is used', async function (): Promise<void> {
|
|
await baselines.loadBaselines();
|
|
const profilePath = await testUtils.createTestFile(this.test, baselines.publishProfileDefaultValueBaseline, 'publishProfile.publish.xml');
|
|
testContext.dacFxService.setup(x => x.getOptionsFromProfile(TypeMoq.It.isAny())).returns(async () => {
|
|
return Promise.resolve(mockDacFxOptionsResult);
|
|
});
|
|
|
|
const result = await load(vscode.Uri.file(profilePath), testContext.dacFxService.object);
|
|
should(result.sqlCmdVariables.size).equal(1);
|
|
|
|
// the profile has both Value and DefaultValue, but Value should be the one used
|
|
should(result.sqlCmdVariables.get('ProdDatabaseName')).equal('MyProdDatabase');
|
|
});
|
|
|
|
it('Should throw error when connecting does not work', async function (): Promise<void> {
|
|
await baselines.loadBaselines();
|
|
const profilePath = await testUtils.createTestFile(this.test, baselines.publishProfileIntegratedSecurityBaseline, 'publishProfile.publish.xml');
|
|
|
|
sinon.stub(azdata.connection, 'connect').throws(new Error('Could not connect'));
|
|
|
|
await testUtils.shouldThrowSpecificError(async () => await readPublishProfile(vscode.Uri.file(profilePath)), constants.unableToCreatePublishConnection('Could not connect'));
|
|
});
|
|
});
|