dockerode-mock

0.3.2 • Public • Published

Dockerode Mock

Mocking module for Dockerode.

Usage

First install the package.

npm install --save-dev dockerode-mock

Next use a mocking library to replace the dockerode module with dockerode-mock.

Finally specify the overrides you wish to use before and after each test.

import * as docker from 'dockerode-mock'
 
//Apply to all engines
docker.overrides = {
    'GET /_ping': { error: 'connection error' },
    'GET /containers/json?': { ... },
}
 
//Apply to specific engines
docker.overrides = {
    'GET 192.168.0.5/_ping': 'OK',
    'GET 192.168.0.5:4243/_ping': 'OK',
    'GET tcp://192.168.0.5:4243/_ping': { error: 'connection error' }
}

Package Sidebar

Install

npm i dockerode-mock

Weekly Downloads

1

Version

0.3.2

License

MIT

Last publish

Collaborators

  • victor96