mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
49 lines
2.3 KiB
TypeScript
49 lines
2.3 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 path from 'path';
|
|
import * as os from 'os';
|
|
import * as vscode from 'vscode';
|
|
import * as baselines from './baselines/baselines';
|
|
import * as templates from '../templates/templates';
|
|
import * as testUtils from './testUtils';
|
|
|
|
import { SqlDatabaseProjectTreeViewProvider } from '../controllers/databaseProjectTreeViewProvider';
|
|
import { ProjectsController } from '../controllers/projectController';
|
|
import { promises as fs } from 'fs';
|
|
|
|
describe('ProjectsController: project controller operations', function (): void {
|
|
before(async function () : Promise<void> {
|
|
await templates.loadTemplates(path.join(__dirname, '..', '..', 'resources', 'templates'));
|
|
await baselines.loadBaselines();
|
|
});
|
|
|
|
it('Should create new sqlproj file with correct values', async function (): Promise<void> {
|
|
const projController = new ProjectsController(new SqlDatabaseProjectTreeViewProvider());
|
|
const projFileDir = path.join(os.tmpdir(), `TestProject_${new Date().getTime()}`);
|
|
|
|
const projFilePath = await projController.createNewProject('TestProjectName', vscode.Uri.file(projFileDir), 'BA5EBA11-C0DE-5EA7-ACED-BABB1E70A575');
|
|
|
|
let projFileText = (await fs.readFile(projFilePath)).toString();
|
|
|
|
should(projFileText).equal(baselines.newProjectFileBaseline);
|
|
});
|
|
|
|
it('Should load Project and associated DataSources', async function (): Promise<void> {
|
|
// setup test files
|
|
const folderPath = await testUtils.generateTestFolderPath();
|
|
const sqlProjPath = await testUtils.createTestSqlProj(baselines.openProjectFileBaseline, folderPath);
|
|
await testUtils.createTestDataSources(baselines.openDataSourcesBaseline, folderPath);
|
|
|
|
const projController = new ProjectsController(new SqlDatabaseProjectTreeViewProvider());
|
|
|
|
const project = await projController.openProject(vscode.Uri.file(sqlProjPath));
|
|
|
|
should(project.files.length).equal(9); // detailed sqlproj tests in their own test file
|
|
should(project.dataSources.length).equal(2); // detailed datasources tests in their own test file
|
|
});
|
|
});
|