mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Move the tests out to their own tasks (#11179)
* Move the tests out to their own tasks * Revert change * Lets try this * Actually reference to the tests * Lets try this * lets try this too? * this one? * Manually define them :( * Formatting * Add the node command * Fix machine learning and address comments
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
parameters:
|
||||||
|
extensionsToUnitTest: []
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
mkdir -p .build
|
mkdir -p .build
|
||||||
@@ -126,13 +129,14 @@ steps:
|
|||||||
displayName: Run integration tests (Electron)
|
displayName: Run integration tests (Electron)
|
||||||
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
||||||
|
|
||||||
|
- ${{each extension in parameters.extensionsToUnitTest}}:
|
||||||
- script: |
|
- script: |
|
||||||
set -e
|
set -e
|
||||||
APP_ROOT=$(agent.builddirectory)/azuredatastudio-linux-x64
|
APP_ROOT=$(agent.builddirectory)/azuredatastudio-linux-x64
|
||||||
APP_NAME=$(node -p "require(\"$APP_ROOT/resources/app/product.json\").applicationName")
|
APP_NAME=$(node -p "require(\"$APP_ROOT/resources/app/product.json\").applicationName")
|
||||||
INTEGRATION_TEST_ELECTRON_PATH="$APP_ROOT/$APP_NAME" \
|
INTEGRATION_TEST_ELECTRON_PATH="$APP_ROOT/$APP_NAME" \
|
||||||
DISPLAY=:10 ./scripts/test-extensions-unit.sh
|
DISPLAY=:10 node ./scripts/test-extensions-unit.js ${{ extension }}
|
||||||
displayName: 'Run Stable Extension Unit Tests'
|
displayName: 'Run ${{ extension }} Stable Extension Unit Tests'
|
||||||
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
condition: and(succeeded(), eq(variables['RUN_TESTS'], 'true'))
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
|
|||||||
@@ -45,6 +45,8 @@ jobs:
|
|||||||
- Compile
|
- Compile
|
||||||
steps:
|
steps:
|
||||||
- template: linux/sql-product-build-linux.yml
|
- template: linux/sql-product-build-linux.yml
|
||||||
|
parameters:
|
||||||
|
extensionsToUnitTest: ["admin-tool-ext-win", "agent", "azurecore", "cms", "dacpac", "import", "schema-compare", "notebook", "resource-deployment", "machine-learning", "sql-database-projects"]
|
||||||
timeoutInMinutes: 70
|
timeoutInMinutes: 70
|
||||||
|
|
||||||
- job: LinuxWeb
|
- job: LinuxWeb
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ const extensionList = [
|
|||||||
//'mssql',
|
//'mssql',
|
||||||
'notebook',
|
'notebook',
|
||||||
'resource-deployment',
|
'resource-deployment',
|
||||||
'machine-learning-services',
|
'machine-learning',
|
||||||
'sql-database-projects'];
|
'sql-database-projects'];
|
||||||
|
|
||||||
let argv = require('yargs')
|
let argv = require('yargs')
|
||||||
@@ -63,11 +63,12 @@ for (const ext of argv.extensions) {
|
|||||||
console.log(`*** starting ${ext} tests ***`);
|
console.log(`*** starting ${ext} tests ***`);
|
||||||
console.log('*'.repeat(ext.length + 23));
|
console.log('*'.repeat(ext.length + 23));
|
||||||
|
|
||||||
const command = `${process.env.INTEGRATION_TEST_ELECTRON_PATH} --extensionDevelopmentPath=${path.join(__dirname, '..', 'extensions', ext)} --extensionTestsPath=${path.join(__dirname, '..', 'extensions', ext, 'out', 'test')} --user-data-dir=${VSCODEUSERDATADIR} --extensions-dir=${VSCODEEXTENSIONSDIR} --remote-debugging-port=9222 --disable-telemetry --disable-crash-reporter --disable-updates --nogpu`;
|
const command = `${process.env.INTEGRATION_TEST_ELECTRON_PATH} --no-sandbox --extensionDevelopmentPath=${path.join(__dirname, '..', 'extensions', ext)} --extensionTestsPath=${path.join(__dirname, '..', 'extensions', ext, 'out', 'test')} --user-data-dir=${VSCODEUSERDATADIR} --extensions-dir=${VSCODEEXTENSIONSDIR} --remote-debugging-port=9222 --disable-telemetry --disable-crash-reporter --disable-updates --nogpu`;
|
||||||
console.log(execSync(command, {stdio: 'inherit'}));
|
console.log(`Command used: ${command}`);
|
||||||
|
console.log(execSync(command, { stdio: 'inherit' }));
|
||||||
}
|
}
|
||||||
|
|
||||||
// clean up
|
// clean up
|
||||||
|
|
||||||
fs.remove(VSCODEUSERDATADIR, { recursive: true });
|
fs.remove(VSCODEUSERDATADIR, { recursive: true }).catch(console.error);
|
||||||
fs.remove(VSCODEEXTENSIONSDIR, { recursive: true });
|
fs.remove(VSCODEEXTENSIONSDIR, { recursive: true }).catch(console.error);
|
||||||
|
|||||||
Reference in New Issue
Block a user