forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eng: onboard to the extension test runner (microsoft#195570)
* eng: onboard to the extension test runner Adds a `.vscode-test.js` file that uses the new extension test CLI to run tests. Also, onboards the markdown-language-features as the first built-in extension to use it. With the `ms-vscode.extension-test-runner` extension installed, the markdown-language-features' tests can be run and debugged easily in the UI :) * fixup
- Loading branch information
1 parent
590c72b
commit c2a6932
Showing
10 changed files
with
324 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ vscode.db | |
/cli/openssl | ||
product.overrides.json | ||
*.snap.actual | ||
.vscode-test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
//@ts-check | ||
|
||
const path = require('path'); | ||
const { defineConfig } = require('@vscode/test-cli'); | ||
|
||
/** | ||
* A list of extension folders who have opted into tests, or configuration objects. | ||
* Edit me to add more! | ||
* | ||
* @type {Array<string | (Partial<import("@vscode/test-cli").TestConfiguration> & { label: string })>} | ||
*/ | ||
const extensions = [ | ||
{ | ||
label: 'markdown-language-features', | ||
workspaceFolder: `extensions/markdown-language-features/test-workspace`, | ||
mocha: { timeout: 60_000 } | ||
}, | ||
]; | ||
|
||
|
||
const defaultLaunchArgs = process.env.API_TESTS_EXTRA_ARGS?.split(' ') || [ | ||
'--disable-telemetry', '--skip-welcome', '--skip-release-notes', `--crash-reporter-directory=${__dirname}/.build/crashes`, `--logsPath=${__dirname}/.build/logs/integration-tests`, '--no-cached-data', '--disable-updates', '--use-inmemory-secretstorage', '--disable-extensions', '--disable-workspace-trust' | ||
]; | ||
|
||
module.exports = defineConfig(extensions.map(extension => { | ||
/** @type {import('@vscode/test-cli').TestConfiguration} */ | ||
const config = typeof extension === 'object' | ||
? { files: `extensions/${extension.label}/out/**/*.test.js`, ...extension } | ||
: { files: `extensions/${extension}/out/**/*.test.js`, label: extension }; | ||
|
||
config.mocha ??= {}; | ||
if (process.env.BUILD_ARTIFACTSTAGINGDIRECTORY) { | ||
let suite = ''; | ||
if (process.env.VSCODE_BROWSER) { | ||
suite = `${process.env.VSCODE_BROWSER} Browser Integration ${config.label} tests`; | ||
} else if (process.env.REMOTE_VSCODE) { | ||
suite = `Remote Integration ${config.label} tests`; | ||
} else { | ||
suite = `Integration ${config.label} tests`; | ||
} | ||
|
||
config.mocha.reporter = 'mocha-multi-reporters'; | ||
config.mocha.reporterOptions = { | ||
reporterEnabled: 'spec, mocha-junit-reporter', | ||
mochaJunitReporterReporterOptions: { | ||
testsuitesTitle: `${suite} ${process.platform}`, | ||
mochaFile: path.join(process.env.BUILD_ARTIFACTSTAGINGDIRECTORY, `test-results/${process.platform}-${process.arch}-${suite.toLowerCase().replace(/[^\w]/g, '-')}-results.xml`) | ||
} | ||
}; | ||
} | ||
|
||
if (!config.platform || config.platform === 'desktop') { | ||
config.launchArgs = defaultLaunchArgs; | ||
config.useInstallation = { | ||
fromPath: process.env.INTEGRATION_TEST_ELECTRON_PATH || `${__dirname}/scripts/code.${process.platform === 'win32' ? 'cmd' : 'sh'}`, | ||
}; | ||
config.env = { | ||
...config.env, | ||
VSCODE_SKIP_PRELAUNCH: '1', | ||
}; | ||
} else { | ||
// web configs not supported, yet | ||
} | ||
|
||
return config; | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.