Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elbow

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elbow

An easy way to test REST API responses with Mocha

  • 0.5.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by266.67%
Maintainers
1
Weekly downloads
 
Created
Source

elbow

An easy way to test REST API responses with Mocha

Version Build Status Coverage Status Dependency Status

elbow = mocha + superagent + jayschema + awesomeness

what makes it easy?

  1. you only write one, short test file with one test suite
  2. your schemas define what endpoints they are tested against
  3. it fits just right in your work flow

usage:

A sample test script:

var elbow = require("elbow");

describe("testing Http Responses", function() {
  elbow.run(it, "http://localhost:9090/", __dirname + "/../schema", {
    timeout: 5000,
  });
});

See a sample schema.

See a sample test output.

installation:

⇒ npm install elbow --save-dev

API:

var elbow = require("elbow");

elbow.run(it, baseUrl, schemaDir [, options])

Runs your tests.

  • it (Function): it provided by Mocha.
  • baseUrl (String): base url of the server. This is used to resolve the relative urls (endpoints).
  • schemaDir (String): path to the directory holding your schemas.
  • options (Object): test configurations
    • options.timeout (Integer): test-specific timeout
    • options.label (Function):
      • returns a custom it label
      • signature: function(method, schema)

elbow.schemas(schemaDir, callback)

Loads your schemas.

  • schemaDir (String): path to the directory holding your schemas.
  • callback (Function):
    • signature: callback(err, schemas)
    • schemas (Array): array holding your schemas

schemas:

Schemas, as defined in its specification, are valid JSON documents.

All the schemas should be placed in a single directory. They should have the extension .json.

A sample schema file would look like:

{
  "$schema": "http://json-schema.org/schema#",

  "endpoint": "/transactions/transfers/charges",
  "description": "transfer charges",
  "methods": ["get", "post"],
  "params": {
    "to": "registered",
    "amount": 5000
  },

  "status": 200,
  "type": "object",
  "properties": {
    "charge": {
      "type": "string"
    }
  },
  "required": ["charge"]
}

Required key-value pairs include:

  • endpoint (String): endpoint to test. This will be resolved to an absolute url using the base url. e.g. /endpoint
  • description (String): describes the significance of the http response. e.g. "creating a new resource object"
  • methods (Array): all the http methods to use to test the endpoint
    • possible values: "get", "post", "put", "delete"
  • params (Object): parameters to pass to endpoint. e.g. { "query": "name" }

Optional key-value pairs include:

  • status (Number): response status code. e.g. 201

The rest of the document will be used as is in validation.

The test cases are created in the order of:

  1. filename of the schema files. e.g. 01-get.json is used before 02-get.json
  2. indices of "methods" in the schema. e.g. with ["post", "get"], "post" is used before "get"

This allows you to use a sequence in your tests, without having to use any beforeEach, any code, etc...

test output:

Sample Test Output:

  ✓ GET /params (testing the sending of params) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/params.json] (60ms)
  ✓ POST /params (testing the sending of params) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/params.json]
  ✓ PUT /params (testing the sending of params) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/params.json]
  ✓ DELETE /params (testing the sending of params) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/params.json]
  ✓ GET /simple (testing the response body only) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/simple.json]
  ✓ POST /simple (testing the response body only) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/simple.json]
  ✓ PUT /simple (testing the response body only) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/simple.json]
  ✓ DELETE /simple (testing the response body only) [/home/gocho/Repos/GochoMugo/github/elbow/test/schema/simple.json]

The method and endpoint is shown for each test case. The description of the schema is shown between ( and ). The absolute filepath of the schema file used in the test case is shown between [ and ].

terminal usage:

Elbow is also available from your terminal.

If installed globally, the command elbow will be readily available. Otherwise, elbow will be available at ./node_modules/.bin/elbow.

listing your schemas:

To list your schemas with the respective descriptions.

⇒ elbow --list [absolutePathToSchemaDir]

notes:

  1. synchronous file operations are used internally to ensure test cases are executed in correct order by mocha.

license:

The MIT License (MIT)

Copyright (c) 2015 GochoMugo mugo@forfuture.co.ke

Keywords

FAQs

Package last updated on 16 May 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc