hull-connector-tester
v0.0.20
Published
This is a cli utility which runs multiple [checks](./src/checks) on the connector code base to make sure it complies with official Hull Connector standards.
Downloads
16
Readme
Hull Connector Tester
This is a cli utility which runs multiple checks on the connector code base to make sure it complies with official Hull Connector standards.
When any of the check fails the command exits with error code to fail CI job. The main goal of the tool is to easily enforce specific best standards across wide connectors code base.
You can think of it as code quality check tool, maybe we will even have badges/shields (as http://shields.io/) in future :)
Continuous Integration usage
All official Hull connectors run latest version of hull-connector-tester
on each CI build.
This is how the Circle CI configuration file (.circleci/config.yml
) last step looks like:
- run: npm i --no-save --no-cache hull-connector-tester@latest && ./node_modules/.bin/hull-connector-tester
Manual usage
To manually test the Connector code base, the tool should be installed globally and run in connector directory:
cd hull-connector-name/
npm i -g --no-cache hull-connector-tester@latest && hull-connector-tester
What are current checks?
Please review all files in src/checks directory. Each function perform one check and the purpose is descibed in the docblock.
How to add new check?
- Add new file in src/checks directory with the name of the check
- Create a function taking no arguments and returning
true
in case of success orstring
in case of error with the error message - Export this new check in src/checks/index.js
- Bump version and update CHANGELOG.md