RAML testing tool
Abao is a command-line tool for testing API documentation written in RAML format against its back-end implementation. With Abao, you can easily plug your API documentation into a Continuous Integration (CI) system (e.g., Travis, Jenkins) and have API documentation up-to-date, all the time. Abao uses Mocha for judging if a particular API response is valid or not.
- Verify that each endpoint defined in RAML exists in service
- Verify that URL params for each endpoint defined in RAML are supported in service
- Verify that the required query parameters defined in RAML are supported in service
- Verify that HTTP request headers for each endpoint defined in RAML are supported in service
- Verify that HTTP request body for each endpoint defined in RAML is supported in service, via JSONSchema validation
- Verify that HTTP response headers for each endpoint defined in RAML are supported in service
- Verify that HTTP response body for each endpoint defined in RAML is supported in service, via JSONSchema validation
Install stable version
$ npm install -g abao
Install latest development version in GitHub branch
$ npm install -g github:cybertk/abao
Un*x users will likely need to run these commands using sudo
.
For general usage, an API endpoint (i.e., web service to be tested) must be specified; this can be done implicitly or explicitly, with the latter having priority. If the RAML file to be tested provides a baseUri property, the API endpoint is implicitly set to that value.
$ abao api.raml
To explicitly specify the API endpoint, use the --server
argument.
$ abao api.raml --server http://localhost:8080
Abao validates the HTTP response body against schema
defined in RAML.
No response body will be returned if the corresponding RAML schema
is missing.
However, the response status code can always be verified, regardless.
Abao can be configured to use hookfiles to do basic setup/teardown between
each validation (specified with the --hookfiles
flag). Hookfiles can be
written in either JavaScript or CoffeeScript, and must import the hook methods.
NOTE: CoffeeScript files must use file extension .coffee
.
Requests are identified by their name, which is derived from the structure of
the RAML. You can print a list of the generated names with the --names
flag.
The RAML file used in the examples below can be found here.
Get Names:
$ abao single-get.raml --names
GET /machines -> 200
Abao can generate a hookfile to help validate more than just the response code for each path.
$ abao single-get.raml --generate-hooks > test_machines_hooks.js
Then edit the JavaScript hookfile test_machines_hooks.js
created in the
previous step to add request parameters and response validation logic.
var hooks = require('hooks'),
assert = require('chai').assert;
hooks.before('GET /machines -> 200', function (test, done) {
test.request.query = {
color: 'red'
};
done();
});
hooks.after('GET /machines -> 200', function (test, done) {
machine = test.response.body[0];
console.log(machine.name);
done();
});
Alternately, write the same hookfile in CoffeeScript named
test_machines_hooks.coffee
:
{before, after} = require 'hooks'
{assert} = require 'chai'
before 'GET /machines -> 200', (test, done) ->
test.request.query =
color: 'red'
done()
after 'GET /machines -> 200', (test, done) ->
machine = test.response.body[0]
console.log machine.name
done()
Run validation with JavaScript hookfile (from above):
$ abao single-get.raml --hookfiles=test_machines_hooks.js
Also you can specify what test Abao should skip:
var hooks = require('hooks');
hooks.skip('DELETE /machines/{machineId} -> 204');
Abao also supports callbacks before and after all tests:
{beforeEach, afterEach} = require 'hooks'
beforeEach (test, done) ->
# do setup
done()
afterEach (test, done) ->
# do teardown
done()
If beforeEach
, afterEach
, before
and after
are called multiple times,
the callbacks are executed serially in the order they were called.
Abao provides hook to allow the content of the response to be checked within the test:
{test} = require 'hooks'
{assert} = require 'chai'
test 'GET /machines -> 200', (response, body, done) ->
assert.deepEqual(JSON.parse(body), ["machine1", "machine2"])
assert.equal(headers['content-type'], 'application/json; charset=utf-8')
return done()
server
- Server address, provided from command line.path
- API endpoint path, parsed from RAML.method
- HTTP method, parsed from RAML request method (e.g.,get
).params
- URI parameters, parsed from RAML requesturiParameters
[default:{}
].query
- Object containing querystring values to be appended to thepath
,parsed from RAMLqueryParameters
section [default:{}
].headers
- HTTP headers, parsed from RAMLheaders
[default:{}
].body
- Entity body for POST, PUT, and PATCH requests. Must be a JSON-serializable object. Parsed from RAMLexample
[default:{}
].
status
- Expected HTTP response code, parsed from RAML response status.schema
- Expected schema of HTTP response body, parsed from RAML responseschema
.headers
- Object containing HTTP response headers from server [default:{}
].body
- HTTP response body (JSON-format) from server [default:null
].
Usage:
abao </path/to/raml> [OPTIONS]
Example:
abao api.raml --server http://api.example.com
Options:
--server Specify the API endpoint to use. The RAML-specified baseUri
value will be used if not provided [string]
--hookfiles, -f Specify a pattern to match files with before/after hooks for
running tests [string]
--schemas, -s Specify a pattern to match schema files to be loaded for use
as JSON refs [string]
--reporter, -r Specify the reporter to use [string] [default: "spec"]
--header, -h Add header to include in each request. The header must be in
KEY:VALUE format, e.g. "-h Accept:application/json".
Reuse to add multiple headers [string]
--hooks-only, -H Run test only if defined either before or after hooks
[boolean]
--grep, -g Only run tests matching <pattern> [string]
--invert, -i Invert --grep matches [boolean]
--timeout, -t Set test-case timeout in milliseconds
[number] [default: 2000]
--names, -n List names of requests and exit [boolean]
--reporters Display available reporters and exit [boolean]
--help Show usage information and exit [boolean]
--version Show version number and exit [boolean]
$ npm test
Abao is always looking for new ideas to make the codebase useful. If you think of something that would make life easier, please submit an issue.