Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@salesforce/cli-plugins-testkit
Advanced tools
Provides test utilities to assist Salesforce CLI plug-in authors with writing non-unit tests (NUT).
This package is in heavy development. The APIs exposed from this package are incomplete and will change frequently.
The @salesforce/cli-plugins-testkit library provides test utilities to assist Salesforce CLI plug-in authors with writing NUTs (non-unit-tests), like integration, smoke, and e2e style testing. For example, you could write tests to ensure your plugin commands execute properly using an isolated Salesforce project, scratch org, and different Salesforce CLI executables.
Add this library as a dev dependencies to your project.
yarn add @salesforcecli/cli-plugins-testkit --dev
Create a test file and import the utilities from this library that you'd like to use.
Using a different file extension will help separate your unit tests from your NUTs even if they are in the same directories. For example, if you use mytest.nut.ts
instead of mytest.test.ts
, you can have the following scripts in your package.json (assuming mocha).
{
"scripts": {
"test": "mocha **/*.test.ts",
"test-nut": "mocha **/*.nut.ts"
}
}
See Samples doc for many testkit usecases and sample code
Running oclif commands locally is as simple as running against the local bin/run
file.
import { exec } from 'shelljs';
const result = exec('./bin/run mycommand --myflag --json');
console.log(JSON.parse(result.stdout));
However, that doesn't provide flexibility to target different CLI executables in Continuos Integration (CI). For example, you may want to run NUTs against the newly published version of your plugin against the latest-rc of the Salesforce CLI to make sure everything still works as expected.
The testkit provides execCmd
which makes the executable configurable as well as builtin json parsing.
import { execCmd } from '@salesforce/cli-plugins-testkit';
const result = execCmd('mycommand --myflag --json');
console.log(result.jsonOutput);
The executable can then be configured in CI using the TESTKIT_EXECUTABLE_PATH
.
# Install the release candidate in the current directory using NPM
npm install sfdx@latest-rc
# Install the newly published version of my plugin
./node_modules/.bin/sfdx plugins:install myplugin
# Target the local sfdx
export TESTKIT_EXECUTABLE_PATH=./node_modules/.bin/sfdx
# Run NUT test (requires a test-nut script target in the package.json)
yarn test-nut
You will notice that the executable is not configurable in the execCmd
method directly. If you need to run other commands not located in your plugin, use shelljs directly.
import { exec } from 'shelljs';
import { execCmd } from '@salesforce/cli-plugins-testkit';
await exec('sfdx auth:jwt:grant ... --json');
const result = await execCmd('mycommand --myflag --json');
TBD
FAQs
Provides test utilities to assist Salesforce CLI plug-in authors with writing non-unit tests (NUT).
The npm package @salesforce/cli-plugins-testkit receives a total of 19,069 weekly downloads. As such, @salesforce/cli-plugins-testkit popularity was classified as popular.
We found that @salesforce/cli-plugins-testkit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.