We have several types of tests:
- Unit tests: these live in the
tests/unit-tests/
directory - View tests: these live in
src/view/variant-analysis/__tests__/
- VSCode integration tests:
test/vscode-tests/activated-extension
tests: These are intended to cover functionality that require the full extension to be activated but don't require the CLI. This suite is not run against multiple versions of the CLI in CI.test/vscode-tests/no-workspace
tests: These are intended to cover functionality around not having a workspace. The extension is not activated in these tests.test/vscode-tests/minimal-workspace
tests: These are intended to cover functionality that need a workspace but don't require the full extension to be activated.
- CLI integration tests: these live in
test/vscode-tests/cli-integration
- These tests are intended to cover functionality that is related to the integration between the CodeQL CLI and the extension. These tests are run against each supported versions of the CLI in CI.
The CLI integration tests require an instance of the CodeQL CLI to run so they will require some extra setup steps. When adding new tests to our test suite, please be mindful of whether they need to be in the cli-integration folder. If the tests don't depend on the CLI, they are better suited to being a VSCode integration test.
Any test data you're using (sample projects, config files, etc.) must go in a test/vscode-tests/*/data
directory. When you run the tests, the test runner will copy the data directory to out/vscode-tests/*/data
.
Pre-requisites:
- Run
npm run build
. - You will need to have
npm run watch
running in the background.
Then, from the extensions/ql-vscode
directory, use the appropriate command to run the tests:
- Unit tests:
npm run test:unit
- View Tests:
npm run test:view
- VSCode integration tests:
npm run test:vscode-integration
The CLI integration tests require the CodeQL standard libraries in order to run so you will need to clone a local copy of the github/codeql
repository.
-
Set the
TEST_CODEQL_PATH
environment variable: running from a terminal, you must set theTEST_CODEQL_PATH
variable to point to a checkout of thegithub/codeql
repository. The appropriate CLI version will be downloaded as part of the test. -
Run your test command:
cd extensions/ql-vscode && npm run test:cli-integration
Alternatively, you can run the tests inside of VSCode. There are several VSCode launch configurations defined that run the unit and integration tests.
You will need to run tests using a task from inside of VS Code, under the "Run and Debug" view:
- Unit tests: run the Launch Unit Tests task
- View Tests: run the Launch Unit Tests - React task
- VSCode integration tests: run the Launch Unit Tests - No Workspace and Launch Unit Tests - Minimal Workspace tasks
The CLI integration tests require the CodeQL standard libraries in order to run so you will need to clone a local copy of the github/codeql
repository.
-
Set the
TEST_CODEQL_PATH
environment variable: running from a terminal, you must set theTEST_CODEQL_PATH
variable to point to a checkout of thegithub/codeql
repository. The appropriate CLI version will be downloaded as part of the test. -
Set the codeql path in VSCode's launch configuration: open
launch.json
and under the Launch Integration Tests - With CLI section, uncomment the"${workspaceRoot}/../codeql"
line. If you've cloned thegithub/codeql
repo to a different path, replace the value with the correct path. -
Run the VSCode task from the "Run and Debug" view called Launch Integration Tests - With CLI.
The easiest way to run a single test is to change the it
of the test to it.only
and then run the test command with some additional options
to only run tests for this specific file. For example, to run the test test/vscode-tests/cli-integration/run-queries.test.ts
:
npm run test:cli-integration -- --runTestsByPath test/vscode-tests/cli-integration/run-queries.test.ts
You can also use the --testNamePattern
option to run a specific test within a file. For example, to run the test test/vscode-tests/cli-integration/run-queries.test.ts
:
npm run test:cli-integration -- --runTestsByPath test/vscode-tests/cli-integration/run-queries.test.ts --testNamePattern "should create a QueryEvaluationInfo"
Alternatively, you can run a single test inside VSCode. To do so, install the Jest Runner extension. Then,
you will have quicklinks to run a single test from within test files. To run a single unit or integration test, click the "Run" button. Debugging a single test is currently only supported
for unit tests by default. To debug integration tests, open the .vscode/settings.json
file and uncomment the jestrunner.debugOptions
lines. This will allow you to debug integration tests.
Please make sure to revert this change before committing; with this setting enabled, it is not possible to debug unit tests.
Without the Jest Runner extension, you can also use the "Launch Selected Unit Test (vscode-codeql)" launch configuration to run a single unit test.
Multi-Repo Variant Analyses (MRVA) rely on the GitHub API. In order to make development and testing easy, we have functionality that allows us to intercept requests to the GitHub API and provide mock responses.
To run a mock MRVA scenario, follow these steps:
- Enable the mock GitHub API server by adding the following in your VS Code user settings (which can be found by running the
Preferences: Open User Settings (JSON)
VS Code command):
"codeQL.mockGitHubApiServer": {
"enabled": true
}
- Run the
CodeQL: Mock GitHub API Server: Load Scenario
command from the command pallet, and choose one of the scenarios to load. - Execute a normal MRVA. At this point you should see the scenario being played out, rather than an actual MRVA running.
- Once you're done, you can stop using the mock scenario with
CodeQL: Mock GitHub API Server: Unload Scenario
If you want to replay the same scenario you should unload and reload it so requests are replayed from the start.
To record a new mock MRVA scenario, follow these steps:
- Enable the mock GitHub API server by adding the following in your VS Code user settings (which can be found by running the
Preferences: Open User Settings (JSON)
VS Code command):
"codeQL.mockGitHubApiServer": {
"enabled": true
}
- Run the
CodeQL: Mock GitHub API Server: Start Scenario Recording
VS Code command from the command pallet. - Execute a normal MRVA.
- Once what you wanted to record is done (e.g. the MRVA has finished), then run the
CodeQL: Mock GitHub API Server: Save Scenario
command from the command pallet. - The scenario should then be available for replaying.
If you want to cancel recording, run the CodeQL: Mock GitHub API Server: Cancel Scenario Recording
command.
Once the scenario has been recorded, it's often useful to remove some of the requests to speed up the replay, particularly ones that fetch the variant analysis status. Once some of the request files have manually been removed, the fix-scenario-file-numbering script can be used to update the number of the files. See the script file for details on how to use.
Pre-recorded scenarios are stored in ./src/common/mock-gh-api/scenarios
. However, it's possible to configure the location, by setting the codeQL.mockGitHubApiServer.scenariosPath
configuration property in the VS Code user settings.