stubbatti v0.1.0
Stubbatti v1.2.0
A command line stub http server with the special DSL.
Install
Install
node.js( >= 0.9 ).Using
npm, installstubbatticommand globally:
npm install -g stubbattiUsage
Stubbatti is configurable with the file named .stubbatti.js or stubbatti.js.
And in it you can write like following:
get('/hello', 'Hello, world!');And if you run the command stubbatti then stubbatti server will start listening on port 28987 (by default) and will serve the string Hello, world! when the path /hello requested.
Reference
.stubbatti.js reference
Basic Response
You can set a response body for the path:
get('/hello', 'Hello, world!');With the above, /hello responses Hello, world! with http status 200.
Response delay
You can delay response with delay option:
get('/slow', 'slow response', {delay: 3000});With the above, /slow responses after the delay of 3000 miliseconds.
This is useful for testing timeout features of client libraries.
Content-Type
You can specify the content-type of the reponse with contentType option:
get('/json', '{"a":1}', {contentType: 'application/json'});With the above, /json responses {"a":1} with Content-Type: application/json.
Status Code
You can specify the status code of the response with status option:
get('/402', 'payment required', {status: 402});With the above, /402 responses payment required with http status code 402.
Custom Headers
You can specify custom headers with headers option:
get('/custom', '{"a":1}', {headers: {
'X-Custom': 'abc',
'X-Header': 'def'
}});With the above settings, /custom responses with the HTTP headers like:
X-Custom: abc
X-Header: defOther Methods
Available methods are get, post, head, options, put, delete.
Followings are valid notations in .stubbatti.js.
get('/foo', 'GET response');
post('/foo', 'POST response');
head('/foo', ''); // HEAD response cannot have a response body.
options('/foo', 'OPTIONS response');
put('/foo', 'PUT response');
global.delete('/foo', 'DELETE response');
trace('/foo', 'TRACE response');Setting port
You can set the stub server's port number with port method:
port(80);The default port number of stubbatti is 28987.
Syntax and semantics
The syntax and semantics of .stubbatti.js is basically same as node.js except some addition of global methods above.
Command Line Options
With --config option, you can specify a custom stubbatti file.
stubbatti --config my_stub_settings.jsWith --kill option, you can kill the server. With this option, you can set your test script like following:
stubbatti & # launches a stub server
# run unit test using the stub http server
...
stubbatti --kill # kills the stub serverSpecial Paths
A HEAD request to the path /__kill has the special meaning, which is used for killing the server process. So you shouldn't write head('__kill', ...); in .stubbatti.js.
LICENSE
MIT
Note
This command is a thin wrapper of express and focusing on stubbing an http server on test environments. This cli should be useful when you write the unit test of an http client or a web api client.
API documentation
Similar tools
- Betamax for JVM languages
- VCR for Ruby
- WireMock for JVM languages
- Stubby for JVM languages and has CLI
- Stubby is very similar to stubbatti, but the main target is JVM language with gradle build configuration.
- wiremock-php for PHP
- objc-mocktail for Objective-C
The difference of stubbatti from the above tools is that it's just a CLI stub server and can be used with any language through hooks in a shell script.
And it needs only one setting file .stubbatti.js with the simple language.
Release History
- 2014-06-05 v1.1.0 Initial release.