Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
cases provides parameterized unit tests for Mocha.
$ npm install cases
Using cases is easy. All you need to do is to add a reference to it within your Node.js application:
const cases = require('cases');
Now you can write your tests using Mocha as usual, but you may introduce cases for tests where you need multiple test cases:
test('add returns the sum.', cases([
[ 23, 42, 65 ],
[ 12, 17, 29 ]
], (first, second, expected) => {
const actual = add(first, second);
assert.that(actual).is.equalTo(expected);
}));
This also works with asynchronous tests. The only difference is that you additionally need to provide the done
parameter to your test function:
test('addAsync returns the sum.', cases([
[ 23, 42, 65 ],
[ 12, 17, 29 ]
], (first, second, expected, done) => {
addAsync(first, second, actual => {
assert.that(actual).is.equalTo(expected);
done();
});
}));
Instead of providing all the test cases as inline data, you can alternatively specify a function that returns the test cases. This way you can load your test data from a file, a database or any other data source:
test('add returns the sum.', cases(() => {
return [
[ 23, 42, 65 ],
[ 12, 17, 29 ]
];
}, (first, second, expected) => {
const actual = add(first, second);
assert.that(actual).is.equalTo(expected);
}));
This also works for asynchronous test functions. Please note that the function that gets the test cases must be synchronous nevertheless:
test('add returns the sum.', cases(() => {
return [
[ 23, 42, 65 ],
[ 12, 17, 29 ]
];
}, (first, second, expected, done) => {
addAsync(first, second, actual => {
assert.that(actual).is.equalTo(expected);
done();
});
}));
To build this module use roboter.
$ bot
The MIT License (MIT) Copyright (c) 2013-2018 the native web.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
cases provides parameterized unit tests for Mocha.
The npm package cases receives a total of 0 weekly downloads. As such, cases popularity was classified as not popular.
We found that cases demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.