Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

tck-reporter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tck-reporter

HTML reports generator for Test Compatibility Kits.

latest
npmnpm
Version
1.2.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

TCK Reporter

TCK Reporter generates HTML reports for Test Compatibility Kits. This library was built and later generalized for use in raml-org/raml-tck and asyncapi/tck but can be used in any project.

Installation

$ npm i -g  tck-reporter

Usage

  • Generate JSON reports with tck runner (not provided in this repo).

  • Point tck-reporter to generated JSON reports directory and provide other required arguments/options:

Usage: tck-reporter [options] <jsonReportsDir> <outputHtmlDir>

Generate HTML reports from TCK JSON reports.

Options:
  --repoBranchUrl <url>  Github repo branch blob url. Is used to generate tck test files links. To produce valid links it
                         must have format: "https://github.com/USER/REPO/blob/BRANCH"
  -h, --help             display help for command

Custom CSS

Pages look can be customize by writing custom CSS at <outputHtmlDir>/static/user-styles.css.

Input reports structure

The tool expects input JSON reports to be valid against the report-schema.json JSON Schema.

E.g.:

{
  "parser": {
    "language": "go",
    "name": "jumpscale",
    "url": "https://github.com/Jumpscale/go-raml/tree/master/raml",
    "version": "0.1"
  },
  "results": [
    {
      "file": "/tests/raml-1.0/Root/version/invalid-version-structure.raml",
      "success": false,
      "error": "Error parsing RAML:\n  line 4: string value cannot be of type mapping, must be string\n"
    },
    {
      "file": "/tests/raml-1.0/Root/version/valid.raml",
      "success": true,
      "error": ""
    },
    ...
  ]
}

Invalid reports will produce an error log and will be skipped. E.g.:

Error: Invalid report "/there/my-parser.json": should have required property 'language' (.parser)

FAQs

Package last updated on 25 May 2020

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