
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
douglasduteil-shelltest
Advanced tools
JS acceptance testing framework for CLI applications.
This framework is intended to serve as a friendly layer of abstraction for testing the stdout, stderr, and exit code of shell commands. It's like supertest, but for CLI apps.
npm install shelltest --save
shelltest()
.cmd("/usr/bin/my_command")
.expect('stdout', /^regex.match/)
.end();
it('should run the command', function(done){
shelltest()
.cmd("/usr/bin/my_command")
.expect('stdout', /^match/)
.expect(0)
.end(done);
});
Sets the command to be executed.
.cmd("/bin/my_command")
Adds an assertion. All assertions are evaluated when .end(fn) is called.
.expect('stderr', /^regex.match/) //Asserts stderr
.expect('stdout', 'string match') //Asserts stdout
.expect(0) //Asserts exit code
Sets child_process cwd option.
.cwd('/var')
Sets child_process env option.
.env({"PATH": "/usr/cust:/usr/bin"})
Sets child_process timeout option.
.timeout(10)
Sets child_process uid option.
.uid(0)
Sets child_process gid option.
.gid(0)
Executes command and evaluates assertions. end() will throw with no callback.
Callback is fired with fn(err, stdout, stderr) :
err: null or the assert or process errorstdout: the output stringstderr: the error string.end(callback_function)
FAQs
Acceptance testing framework for CLI applications
We found that douglasduteil-shelltest 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.