mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 09:35:39 -05:00
* Un-skip and fix a few of the db projects tests * Addressed comments * Fix one test failure on Linux/Mac
83 lines
4.5 KiB
TypeScript
83 lines
4.5 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 { createDummyFileStructure } from './testUtils';
|
|
import { exists, trimUri, removeSqlCmdVariableFormatting, formatSqlCmdVariable, isValidSqlCmdVariableName } from '../common/utils';
|
|
import { Uri } from 'vscode';
|
|
|
|
describe('Tests to verify utils functions', function (): void {
|
|
it('Should determine existence of files/folders', async () => {
|
|
let testFolderPath = await createDummyFileStructure();
|
|
|
|
should(await exists(testFolderPath)).equal(true);
|
|
should(await exists(path.join(testFolderPath, 'file1.sql'))).equal(true);
|
|
should(await exists(path.join(testFolderPath, 'folder2'))).equal(true);
|
|
should(await exists(path.join(testFolderPath, 'folder4'))).equal(false);
|
|
should(await exists(path.join(testFolderPath, 'folder2', 'file4.sql'))).equal(true);
|
|
should(await exists(path.join(testFolderPath, 'folder4', 'file2.sql'))).equal(false);
|
|
});
|
|
|
|
it('Should get correct relative paths of files/folders', async () => {
|
|
const root = os.platform() === 'win32' ? 'Z:\\' : '/';
|
|
let projectUri = Uri.file(path.join(root, 'project', 'folder', 'project.sqlproj'));
|
|
let fileUri = Uri.file(path.join(root, 'project', 'folder', 'file.sql'));
|
|
should(trimUri(projectUri, fileUri)).equal('file.sql');
|
|
|
|
fileUri = Uri.file(path.join(root, 'project', 'file.sql'));
|
|
let urifile = trimUri(projectUri, fileUri);
|
|
should(urifile).equal('../file.sql');
|
|
|
|
fileUri = Uri.file(path.join(root, 'project', 'forked', 'file.sql'));
|
|
should(trimUri(projectUri, fileUri)).equal('../forked/file.sql');
|
|
|
|
fileUri = Uri.file(path.join(root, 'forked', 'from', 'top', 'file.sql'));
|
|
should(trimUri(projectUri, fileUri)).equal('../../forked/from/top/file.sql');
|
|
});
|
|
|
|
it('Should remove $() from sqlcmd variables', () => {
|
|
should(removeSqlCmdVariableFormatting('$(test)')).equal('test', '$() surrounding the variable should have been removed');
|
|
should(removeSqlCmdVariableFormatting('$(test')).equal('test', '$( at the beginning of the variable should have been removed');
|
|
should(removeSqlCmdVariableFormatting('test')).equal('test', 'string should not have been changed because it is not in sqlcmd variable format');
|
|
});
|
|
|
|
it('Should make variable be in sqlcmd variable format with $()', () => {
|
|
should(formatSqlCmdVariable('$(test)')).equal('$(test)', 'string should not have been changed because it was already in the correct format');
|
|
should(formatSqlCmdVariable('test')).equal('$(test)', 'string should have been changed to be in sqlcmd variable format');
|
|
should(formatSqlCmdVariable('$(test')).equal('$(test)', 'string should have been changed to be in sqlcmd variable format');
|
|
should(formatSqlCmdVariable('')).equal('', 'should not do anything to an empty string');
|
|
});
|
|
|
|
it('Should determine invalid sqlcmd variable names', () => {
|
|
// valid names
|
|
should(isValidSqlCmdVariableName('$(test)')).equal(true);
|
|
should(isValidSqlCmdVariableName('$(test )')).equal(true, 'trailing spaces should be valid because they will be trimmed');
|
|
should(isValidSqlCmdVariableName('test')).equal(true);
|
|
should(isValidSqlCmdVariableName('test ')).equal(true, 'trailing spaces should be valid because they will be trimmed');
|
|
should(isValidSqlCmdVariableName('$(test')).equal(true);
|
|
should(isValidSqlCmdVariableName('$(test ')).equal(true, 'trailing spaces should be valid because they will be trimmed');
|
|
|
|
// whitespace
|
|
should(isValidSqlCmdVariableName('')).equal(false);
|
|
should(isValidSqlCmdVariableName(' ')).equal(false);
|
|
should(isValidSqlCmdVariableName(' ')).equal(false);
|
|
should(isValidSqlCmdVariableName('test abc')).equal(false);
|
|
should(isValidSqlCmdVariableName(' ')).equal(false);
|
|
|
|
// invalid characters
|
|
should(isValidSqlCmdVariableName('$($test')).equal(false);
|
|
should(isValidSqlCmdVariableName('$test')).equal(false);
|
|
should(isValidSqlCmdVariableName('$test')).equal(false);
|
|
should(isValidSqlCmdVariableName('test@')).equal(false);
|
|
should(isValidSqlCmdVariableName('test#')).equal(false);
|
|
should(isValidSqlCmdVariableName('test"')).equal(false);
|
|
should(isValidSqlCmdVariableName('test\'')).equal(false);
|
|
should(isValidSqlCmdVariableName('test-1')).equal(false);
|
|
});
|
|
});
|
|
|