Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Parse BDD-style tests (Mocha, Jasmine) to generate documentation
acquit.parse()
blocks
Acquit's parse()
function takes in mocha tests as a string, and outputs
a list of "blocks", which are either describe
or it
calls. A describe
call contains a list of "blocks", whereas an it
call contains the actual
code
in order to provide an effective, well-tested example.
var contents =
'/**\n' +
' * A `Model` is a convenience wrapper around objects stored in a\n' +
' * collection\n' +
' */\n' +
'describe(\'Model\', function() {\n' +
' /**\n' +
' * Model **should** be able to save stuff\n' +
' **/\n' +
' it(\'can save\', function() {\n' +
' assert.ok(1);\n' +
' });\n' +
'\n' +
' it(\'can save with a parameter\', function() {\n' +
' });\n' +
'});';
var ret = acquit.parse(contents);
// One top-level block: describe('Model')
assert.equal(1, ret.length);
assert.equal('describe', ret[0].type);
assert.equal(1, ret[0].comments.length);
assert.ok(ret[0].comments[0].indexOf('`Model`') != -1);
// Top-level block contains the `it('can save')` block, which contains
// the code
assert.equal(2, ret[0].blocks.length);
assert.equal('it', ret[0].blocks[0].type);
assert.equal(1, ret[0].blocks[0].comments.length);
assert.ok(ret[0].blocks[0].code.indexOf('assert.ok(1)') !== -1);
assert.equal('can save', ret[0].blocks[0].contents);
assert.equal('it', ret[0].blocks[1].type);
assert.equal('can save with a parameter', ret[0].blocks[1].contents);
assert.equal(0, ret[0].blocks[1].comments.length);
code
block and save return valueAcquit can also take a callback as second parameter. This callback gets executed on every block and can transform the block however you want.
var contents =
'describe(\'ES6\', function() {\n' +
' // ES6 has a `yield` keyword\n' +
' it(\'should be able to yield\', function() {\n' +
' // some code\n' +
' });\n' +
'});';
var cb = function(block) {
block.code = 'return value from callback';
};
var ret = acquit.parse(contents, cb);
assert.equal('return value from callback', ret[0].blocks[0].code);
Want to chain multiple callbacks together and/or develop re-usable
plugins? acquit.transform()
allows you to add transformations that
are executed each time you call .parse()
.
Transform functions are executed in order before the callback
function passed to .parse()
.
var contents =
'describe(\'ES6\', function() {\n' +
' // ES6 has a `yield` keyword\n' +
' it(\'should be able to yield\', function() {\n' +
' // some code\n' +
' });\n' +
'});';
var cb = function(block) {
block.code = 'my transformed code';
};
acquit.transform(cb);
var ret = acquit.parse(contents);
assert.equal('my transformed code', ret[0].blocks[0].code);
acquit.removeAllTransforms();
yield
keywordAcquit can also parse ES6 code
var contents =
'describe(\'ES6\', function() {\n' +
' // ES6 has a `yield` keyword\n' +
' it(\'should be able to yield\', function() {\n' +
' co(function*() {\n' +
' yield 1;\n' +
' })();\n' +
' });\n' +
'});';
var ret = acquit.parse(contents);
assert.equal(1, ret.length);
assert.equal('describe', ret[0].type);
assert.equal(0, ret[0].comments.length);
assert.equal(1, ret[0].blocks.length);
assert.equal('it', ret[0].blocks[0].type);
assert.equal(1, ret[0].blocks[0].comments.length);
assert.ok(ret[0].blocks[0].code);
acquit.trimEachLine()
trimEachLine()
is a helper function for trimming whitespace and asterisks
from JSdoc-style comments
var str = ' * This comment looks like a \n' +
' * parsed JSdoc-style comment';
assert.equal(acquit.trimEachLine(str), 'This comment looks like a\n' +
'parsed JSdoc-style comment');
You don't have to use JSdoc-style comments: trimEachLine()
also trims
leading and trailing whitespace.
var str = 'This comment looks like a \n' +
' * parsed JSdoc-style comment';
assert.equal(acquit.trimEachLine(str), 'This comment looks like a\n' +
'parsed JSdoc-style comment');
FAQs
Parse BDD tests (Mocha, Jasmine) to generate documentation
The npm package acquit receives a total of 3,246 weekly downloads. As such, acquit popularity was classified as popular.
We found that acquit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.