mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 09:35:37 -05:00
* Added back Don't Ask Again logic * If no Azure CLI found, throw error instead of returning undefined. * Deleted 'restart ADS' text for arcdata extension prompts * Added error catch for parse version and parsed out the * in az --version * Added back findAz() * Added arcdata version to AzTool. Parse --version using regex. * Return undefined if no az found. * Added userRequested param for findAz * No longer await on extension activate. Re-added some functions for az install. * Install works for windows * Changed auto install for az on Linux and MacOS. * Added comment for findSpecificAzAndArc and uncommented some localizedConstants * Added comment for getSemVersionArc and took out the path for some tests. * Made findSpecificAzAndArc return an object instead of a list * Removed azToolService test * Removed azToolService tests and renamed suite to azcli Extension Tests * Got rid of new Regexp for regex in parseVersions * Added back azToolService.ts * Added logic to enable prompt user to install arcdata extension and auto-install capability. No update capability yet. Co-authored-by: Candice Ye <canye@microsoft.com>
49 lines
1.8 KiB
TypeScript
49 lines
1.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 path from 'path';
|
|
const testRunner = require('vscodetestcover');
|
|
|
|
const suite = 'azcli Extension Tests';
|
|
|
|
const mochaOptions: any = {
|
|
ui: 'bdd',
|
|
useColors: true,
|
|
timeout: 10000
|
|
};
|
|
|
|
// set relevant mocha options from the environment
|
|
if (process.env.ADS_TEST_GREP) {
|
|
mochaOptions.grep = process.env.ADS_TEST_GREP;
|
|
console.log(`setting options.grep to: ${mochaOptions.grep}`);
|
|
}
|
|
if (process.env.ADS_TEST_INVERT_GREP) {
|
|
mochaOptions.invert = parseInt(process.env.ADS_TEST_INVERT_GREP);
|
|
console.log(`setting options.invert to: ${mochaOptions.invert}`);
|
|
}
|
|
if (process.env.ADS_TEST_TIMEOUT) {
|
|
mochaOptions.timeout = parseInt(process.env.ADS_TEST_TIMEOUT);
|
|
console.log(`setting options.timeout to: ${mochaOptions.timeout}`);
|
|
}
|
|
if (process.env.ADS_TEST_RETRIES) {
|
|
mochaOptions.retries = parseInt(process.env.ADS_TEST_RETRIES);
|
|
console.log(`setting options.retries to: ${mochaOptions.retries}`);
|
|
}
|
|
|
|
if (process.env.BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
|
mochaOptions.reporter = 'mocha-multi-reporters';
|
|
mochaOptions.reporterOptions = {
|
|
reporterEnabled: 'spec, mocha-junit-reporter',
|
|
mochaJunitReporterReporterOptions: {
|
|
testsuitesTitle: `${suite} ${process.platform}`,
|
|
mochaFile: path.join(process.env.BUILD_ARTIFACTSTAGINGDIRECTORY, `test-results/${process.platform}-${suite.toLowerCase().replace(/[^\w]/g, '-')}-results.xml`)
|
|
}
|
|
};
|
|
}
|
|
|
|
testRunner.configure(mochaOptions, { coverConfig: '../../coverConfig.json' });
|
|
|
|
export = testRunner;
|