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

fact-checker

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fact-checker

A down to earth API test tool

  • 1.0.0-alpha.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Fact-checker

A down to earth tool for API test

A bit of history

This tool was born using dead time at office, trying to ease colleagues from manual testing REST APIs. There were special needs for this tool:

  1. Write as less as possible to configure tests
  2. Have a solid copy of input sent to server
  3. It had to be ready and usable ASAP

The approach used

Fact-checker is a test generator; it generates JSON input files to be sent to server and a testSuite file which can be run by mocha. This testSuite iteratively send JSON inputs from files to server and checks chunk of output retrieved by mean of deep equality using jsonpath expressions.

How does it works

TL;DR; see working example here (download dependencies and run npm test)

A template is defined in test/default.json. It includes a requestOption field which contains options to be passed to request when sending data to server and a body field which contains a shallow payload with defaults. From these defaults and a conf file located in test/tests.json the testSuite is generated. test/tests.json is an array of test definitions; each test definition includes a title (string containing at least one '_': the preceeding part is used to populate describe), a requestOptions object to be merged with defaults, an inputs array setting variables in the default tree and a checks array of pairs jsonpath expression/expected result (note: just the first result wil be used for a deep equality comparison with expected result)

Usage

Just run $ fact-checker with files in place.

TODO

  • better error handling
  • support json5 for json inputs
  • support commandLine options

Keywords

FAQs

Package last updated on 27 Sep 2018

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