Internals

Dredd itself is a command-line Node.js application written in modern JavaScript. Contents:

Maintainers

Apiary is the main author and maintainer of Dredd’s upstream repository. Currently responsible people are:

Hall of fame

Dredd supports many programming languages thanks to the work of several contributors. They deserve eternal praise for dedicating time to create, improve, and maintain the respective hooks handlers:

Big thanks also to @netmilk, the original author of Dredd and Gavel!

Contributing

We are grateful for any contributions made by the community. Even seemingly small contributions such as fixing a typo in the documentation or reporting a bug are very appreciated!

To learn the basics of contributing to Dredd, please read the contributing documentation, placed in Dredd’s GitHub repository.

Installing Dredd for development

To hack Dredd locally, clone the repository and run npm install to install JavaScript dependencies. Then run npm test to verify everything works as expected. If you want to run Dredd during development, you can do so using ./bin/dredd.

Note

See also the full installation guide.

Commit message format

Semantic Release automatically manages releasing of new Dredd versions to the npm registry. It makes sure correct version numbers get increased according to the meaning of your changes once they are added to the master branch. This requires all commit messages to be in a specific format, called Conventional Changelog:

<type>: <message>

Where <type> is a prefix, which tells Semantic Release what kind of changes you made in the commit:

  • feat - New functionality added (results in _minor_ version bump)

  • fix - Broken functionality fixed (results in _patch_ version bump)

  • refactor - Changes in code, but no changes in behavior

  • perf - Performance improved

  • style - Changes in code formatting

  • test - Changes in tests

  • docs - Changes in documentation

  • chore - Changes in package or repository configuration

In the rare cases when your changes break backwards compatibility, the message must include BREAKING CHANGE:, followed by an explanation. That will result in bumping the major version.

feat: add option "--require" to support custom transpilers

Remove bult-in compilation of CoffeeScript.

Close #1234

BREAKING CHANGE: Hookfiles using CoffeeScript are not supported
out of the box anymore. Instead manually install the coffeescript
module and add --require=coffeescript/register to your command.
  • See existing commits as a reference

  • Commitizen CLI can help you to create correct commit messages

  • Run npm run lint to validate format of your messages

  • Use refactor together with BREAKING CHANGE: for changes in code which only remove features (there doesn’t seem to be a better category for that use case) – see real-world example

GitHub labels

Todo

This section is not written yet. See #808.

Programming language

Dredd is written in modern JavaScript, ran by Node.js, and distributed by npm.

Previously Dredd was written in CoffeeScript, and it was only recently converted to modern JavaScript. That’s why sometimes the code does not feel very nice. Any efforts to refactor the code to something more human-friendly are greatly appreciated.

C++ dependencies

Dredd uses Drafter for parsing API Blueprint documents. Drafter is written in C++ and needs to be compiled during installation. Because that can cause a lot of problems in some environments, there’s also pure JavaScript version of the parser, drafter.js. Drafter.js is fully equivalent, but it can have slower performance. Therefore there’s drafter-npm package, which tries to compile the C++ version of the parser and in case of failure it falls back to the JavaScript equivalent. Dredd depends on the drafter-npm package.

That still proved problematic for Dredd though. The current solution is to provide an npm-shrinkwrap.json file with the Dredd Transactions library, which completely excludes protagonist, i.e. the compiled C++ binding. Unlike package-lock.json, the file can be distributed inside an npm package. The exclusion is performed by a postshrinkwrap npm script. This didn’t work well with Dredd’s package-lock.json, so currently Dredd’s dependency tree is not locked for local or CI installations.

Supported Node.js versions

Given the table with LTS schedule, only versions marked as Current, Maintenance, or Active are supported, until their Maintenance End. The testing matrix of Dredd’s CI builds must contain all currently supported versions and must not contain any unsupported versions. The same applies for the underlying libraries, such as Dredd Transactions or Gavel. In appveyor.yml the latest supported Node.js version should be used. When dropping support for Node.js versions, remember to update the installation guide.

When dropping support for a certain Node.js version, it should be removed from the testing matrix, and it must be delivered as a breaking change, which increments Dredd’s major version number.

Dependencies

New versions of dependencies are monitored by Dependabot. Vulnerabilities are monitored by Snyk.

Dependencies should not be specified in a loose way - only exact versions are allowed. This is ensured by .npmrc and the lock file. Any changes to dependencies (version upgrades included) are a subject to internal policies and must be first checked and approved by the maintainers before merged to master. This is because we are trying to be good Open Source citizens and to do our best to comply with licenses of all our dependencies.

As a contributor, before adding a new dependency or upgrading an existing one, please try to make sure the project and all its transitive dependencies feature standard permissive licenses, including correct copyright holders and license texts.

Versioning

Dredd follows Semantic Versioning. The releasing process is fully automated by Semantic Release.

There are two release tags: latest and stable. Currently they both point to the latest version. The stable tag exists only for backward compatibility with how Dredd used to be distributed in the past. It might get removed in the future.

Testing

Use npm test to run all tests. Dredd uses Mocha as a test framework. Its default options are in the test/mocha.opts file.

Linting

Dredd uses eslint to test the quality of the JavaScript codebase. We are adhering to the Airbnb’s styleguide. Several rules are disabled to allow us to temporarily have dirty code after we migrated from CoffeeScript to JavaScript. The long-term intention is to remove all these exceptions.

The linter is optional for local development to make easy prototyping and working with unpolished code, but it’s enforced on the CI level. It is recommended you integrate eslint with your favorite editor so you see violations immediately during coding.

Changelog

Changelog is in form of GitHub Releases. Currently it’s automatically generated by Semantic Release.

We want to have a one-page changelog in the documentation as well - see #740.

Coverage

Tests coverage is a metric which helps developer to see which code is not tested. This is useful when introducing new code in Pull Requests or when maintaining under-tested old code (coverage shows that changes to such code are without any safety net).

Note

Due to reoccurring service denial from Coveralls, we have decided to remove any test coverage integration from Dredd. The topic of test coverage usefulness is to be discussed, and a suitable solution to be presented.

Hacking Apiary reporter

If you want to build something on top of the Apiary Reporter, note that it uses a public API described in Apiary Tests API for authenticated test reports

Following data are sent over the wire to Apiary:

The APIARY_API_URL environment variable allows the developer to override the host of the Apiary Tests API.

Contributing to documentation

The documentation is written as code in the reStructuredText format and its source files are located in the docs directory. It is published automatically by the ReadTheDocs when the master branch is updated.

Even though alternatives exist (dredd.readthedocs.io, dredd.rtfd.io, or dredd.io), the documentation should always be linked canonically as https://dredd.org.

Building documentation locally

The documentation is built by Sphinx. To render it on your computer, you need Python 3.

  1. Get Python 3. ReadTheDocs build the documentation with Python 3.6, so make sure you have this version.

  2. Create a virtual environment and activate it:

    python3 -m venv ./venv
    source ./venv/bin/activate
    
  3. Install dependencies for the docs:

    (venv)$ pip install -r docs/requirements.txt
    

    Note

    We are not using pipenv as it is not yet properly supported by ReadTheDocs.

Now you can use following commands:

  • npm run docs:lint - Checks quality of the documentation (broken internal and external links, reStructuredText markup mistakes, etc.)

  • npm run docs:build - Builds the documentation

  • npm run docs:serve - Runs live preview of the documentation on http://127.0.0.1:8000

Installation on ReadTheDocs

The final documentation gets published by ReadTheDocs. We force their latest build image in the readthedocs.yml to get Python 3.

Writing documentation

  • Read the reStructuredText primer

  • No explicit newlines, please - write each paragraph as a single long line and turn on word wrap in your editor

  • Explicit is better than implicit:

    • Bad: npm i -g

    • Good: npm install --global

  • When using Dredd’s long CLI options in tests or documentation, please always use the notation with = wherever possible:

    • Bad: --path /dev/null

    • Good: --path=/dev/null

    While both should work, the version with = feels more like standard GNU-style long options and it makes arrays of arguments for spawn more readable.

  • Do not title case headings, life’s too short to spend it figuring out title casing correctly

  • Using 127.0.0.1 (in code, tests, documentation) is preferred over localhost (see #586)

  • Be consistent

Images

Images are in the docs/_static/images directory. For images exported in sophisticated graphic formats, the source file should be committed to Git and placed in the same directory, with the same basename, just with different extension.

Note

The .key files are not SSH keys, they’re Keynote source files. It is @honzajavorek’s deviation to draw charts in Keynote and to export them as PNGs:

File » Export To » Images... » Format: PNG

Sphinx extensions

There are several extensions to Sphinx, which add custom directives and roles to the reStructuredText syntax:

CLI options

Allows to automatically generate documentation of Dredd’s CLI options from the JSON file which specifies them. Usage: .. cli-options:: ./path/to/file.json

GitHub issues

Simplifies linking GitHub issues. Usage: :ghissue:`drafter#123`

GitHub links checker

Fails the docs build if there’s an absolute link (github.com/apiaryio/dredd/blob/master) to a non-existing local file

API Blueprint spec

Simplifies linking the API Blueprint spec. Usage: :apib:`schema-section`

MSON spec

Simplifies linking the MSON spec. Usage: :mson:`353-type-attribute`

OpenAPI 2 spec

Simplifies linking the OpenAPI 2 spec. Usage: :openapi2:`parameterobject`

OpenAPI 3 spec

Simplifies linking the OpenAPI 3 spec. Usage: :openapi3:`parameterobject`

RFCs

Simplifies linking the RFCs. Not a custom extension in fact, this is provided by Sphinx out of the box. Usage: :rfc:`1855`

The extensions are written in Python 3 and are heavily based on the knowledge shared in the FOSDEM 2018 talk by Stephen Finucane. Extensions use Python’s unittest for tests. You can use npm run docs:test-extensions to run them.

Redirects

Redirects are documented in the docs/redirects.yml file. They need to be manually set in the ReadTheDocs administration. It’s up to Dredd maintainers to keep the list in sync with reality.

You can use the rtd-redirects tool to programmatically upload the redirects from docs/redirects.yml to the ReadTheDocs admin interface.

Windows support

Dredd is tested on the AppVeyor, a Windows-based CI. There are still several known issues when using Dredd on Windows, but the long-term intention is to support it without any compromises.

API description parsing

Todo

This section is not written yet. See #820.

Architecture

Todo

This section is not written yet. See #820.