@zkochan/pnpm
Version:
A fast implementation of npm install
553 lines (408 loc) • 9.22 kB
Markdown
[](http://badge.fury.io/js/nixt)
[](http://travis-ci.org/vesln/nixt)

Simple and powerful end-to-end testing for command-line apps.
Nixt is aiming to make testing of command-line apps as simple as possible. It
plays nice with the testing tools that you are already using and in case you are
one of those devs who practice outside-in BDD, it has the potential to become
something that lives in every command-line app that you are going to build.
```js
var nixt = require('nixt');
nixt()
.touch('/tmp/test')
.run('ls /tmp/')
.stdout(/test/)
.end();
```
Nixt can strip newlines and colors. You can tell it to do so by passing an
object that looks like this:
```js
var options = {
colors: false,
newlines: false,
};
nixt(options).stdout...
```
While Nixt comes with built-in expectations, you can use your own too.
```js
nixt()
.expect(function(result) {
if (result.stdout !== 'unicorns') {
return new Error('NO!');
}
})
.run('unicorns')
.end(fn);
```
You can register as many before and after middlewares as you wish.
```js
nixt()
.before(setupDatabase)
.before(runMigrations)
.run(cmd)
.after(downgradeCron)
.after(deleteDatabase)
.end();
```
The Middleware execution order is very simple - "before" middlewares always run
before everything else, "after" middlewares always run after everything else.
The other middlewares will match the order that you have specified.
```js
nixt()
.before(before1)
.before(before2)
.after(after1)
.after(after2)
.touch(file)
.run(cmd)
.unlink(file)
.end(fn)
// Execution order:
// before1, before2, touch, cmd, unlink, after1, after2
```
You may also want to reuse before and after middlewares as much as possible,
especially when testing something that requires extensive setup and cleanup. You
can accomplish this by cloning a Nixt instance.
```js
var base = nixt()
.before(setupDatabase)
.after(removeDatabase);
// Later on
base.clone().run....
```
Nixt has primitive support for plugins. You can register any expectation or/and
any middleware by calling `nixt.register`.
```js
var fn = function() {};
nixt.register('foo', fn);
```
Or you may want to register many functions at once.
```js
var fn = function() {};
var fn1 = function() {};
nixt.register({ baz: fn, bar: fn1 });
```
Nixt plays nice with any test runner out there. Here is a minimal example how
you could use it with Mocha.
```js
describe('todo add', function() {
it('adds a new todo item', function(done) {
nixt()
.run('todo add')
.stdout('A new todo has been added')
.end(done);
});
});
```
While using a test runner is recommended nixt is completely 'nodeable'. Here is
a simple example how you could accomplish that:
```js
var assert = require('assert');
function refute(err) {
assert(!err);
}
nixt()
.run(cmd)
.end(refute);
nixt()
.run(anotherCmd)
.end(refute);
```
Nixt can respond to apps that run interactively using the `on()` and
`respond()` functions.
```js
nixt()
.run(cmd)
.on('Your name: ').respond('Joe User\n')
.end();
```
See `test/prompt.test.js` for more examples.
Register a "before" middleware.
```js
nixt()
.before(fn)
.before(fn2)
.run(cmd)
.end();
```
Register an "after" middleware.
```js
nixt()
.run(cmd)
.after(fn)
.after(fn2)
.end();
```
Change the current working directory of the main command (specified with `run`).
Please note that this won't affect any other commands like `unlink` etc.
```js
nixt()
.cwd(__dirname)
.run('pwd')
.stdout(/test$/)
.end();
```
Set a base command. Useful for templates.
```js
nixt()
.base('node ')
.run('--version')
.stdout('0.10.16')
.end();
```
Set a primary command to execute:
```js
nixt()
.run('node --version')
.stdout('0.10.16')
.end(fn);
```
You could also run the test right after specifying the command to run:
```js
nixt()
.stdout('0.10.16')
.run('node --version', fn)
```
### #stdin
Set the contents of stdin.
```js
nixt()
.stdin('foobar')
.run('rev')
.stdout('raboof')
.end(fn);
```
Set environment variables.
```js
nixt()
.env('foo', 'bar')
.env('baz', 'boo')
.run('node --version')
.stdout('0.10.16')
.end(fn);
```
Set a timeout for the main command that you are about to test.
```js
nixt()
.timeout(1) // ms
.run('cat /dev/null')
.end(fn);
```
Set expectations on stdout.
```js
nixt()
.stdout('LICENSE Makefile')
.run('ls')
.end(fn);
```
Works with regular expressions too.
```js
nixt()
.stdout(/system/)
.run('time')
.end(fn);
```
Same as `stdout` but well.. surprise works with stderr.
```js
nixt()
.run('todo add')
.stderr('Please speicfy a todo')
.end(fn);
```
Expect a given exit code.
```js
nixt()
.run('todo add')
.code(1)
.end(fn);
```
Check if a given path exists (works with both files and directories).
```js
nixt()
.run('mkdir /tmp/test')
.exist('/tmp/test')
.end(fn);
```
Check the contents of a file.
```js
nixt()
.writeFile(file, 'Hello')
.run('node void.js')
.match(file, 'Hello')
.unlink(file)
.end(done);
```
```js
nixt()
.writeFile(file, 'Hello')
.run('node void.js')
.match(file, /ello/)
.unlink(file)
.end(done);
```
Create a new directory.
```js
nixt()
.mkdir('xml-database')
.run('this does stuff with the xml-database directory')
.end(fn);
```
Execute a given command.
```js
nixt()
.touch('LICENSE')
.exec('git add -a')
.exec('git commit -m "Add LICENSE"')
.run('git log')
.stdout(/LICENSE/)
.end();
```
By default the commands will inherit the "world" for the main command which
includes environment variables, cwd, timeout. However, you can override this by
supplying a different "world":
```js
nixt()
.exec('git add LICENSE', { timeout: 4, cwd: '/tmp' })
.run('git log')
.stdout(/LICENSE/)
.end();
```
Create a file with or without given contents.
Without:
```js
nixt()
.writeFile(pathToFile)
.end();
```
With:
```js
nixt()
.writeFile(pathToFile, data)
.end();
```
Remove a directory.
```js
nixt()
.mkdir('xml-database')
.run('this does stuff with the xml-database directory')
.rmdir('xml-database')
.end(fn);
```
Unlink a file.
```js
nixt()
.touch('my-file')
.run('this does stuff with my file')
.unlink('my-file')
.end(fn);
```
Detect a prompt for user input. Accepts a String or RegExp that appears in
the the stdout stream. Must be paired with
```js
nixt()
.run(cmd)
.on('Your name: ').respond('Joe User\n')
.end();
```
Write a response to the stdin stream when a prompt is detected.
See
Run the given test.
```js
nixt()
.run('ls')
.stdout('this-is-not-porn-i-promise')
.end(function(err) {
});
```
The same might be accomplished with supplying a function to `run`:
```js
nixt()
.stdout('this-is-not-porn-i-promise')
.run('ls', function(err) {
})
```
Deep clone a Nixt instance.
```js
var clone = nixt()
.before(fn)
.after(fn)
.run('my awesome command')
.end()
.clone();
```
Register a custom expectation.
```js
nixt()
.expect(function(result) {
if (result.stdout !== 'Unicorns') {
return new Error('OMG');
}
})
.run('ls')
.end(fn);
```
```bash
$ npm install nixt
```
```bash
$ make
```
Special thanks to:
- [Alexander Petkov](https://dribbble.com/apetkov) - logo design
- [Martin Lazarov](https://github.com/mlazarov) - various ideas
- [Radoslav Stankov](https://github.com/rstankov)
Do you like this project? Star the repository, spread the word - it really helps. You may want to follow
me on [Twitter](https://twitter.com/vesln) and
[](https://github.com/vesln). Thanks!
**MIT License**
Copyright (C) 2013 Veselin Todorov (hi@vesln.com)
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.