npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@inpas/test-tools

v1.0.12

Published

Helper functions for the unit testing of the Docker services from INPAS 3rd-gen

Downloads

26

Readme

INPAS 3rd-gen: Test tools

This project contains files related to unit tests which are used in many of the other INPAS 3rd-gen projects.

The content will be exposed as a npm-module so that it can be easily included into other projects for their unit tests.

Installation

The module depends on Node.js and mocha. That's the command which has to be invoked within the project's root directory:

npm install --save-dev @inpas/test-tools

Usage

The module is to be used with Node.js and mocha. Include the following into every test-file:

const Tools = require( "@inpas/test-tools" );

Docker tools

Tools.docker.exec()

function( container, command, args = [], expected = null )

Invokes a system command inside a Docker-container. Some automated tests are run if the matching options are set in argument 'expected'.

// Example:
Tools.docker.exec( "inpas-ldap", "ldapsearch", [ "-x", "-b", "dc=kunde,dc=de" ] )
	.then( output => {
		...
	} );

Tools.docker.start()

function( composeFile = null, env = {}, containerWithoutRestart = null )

Starts the given Docker-service.

// Example:
Tools.docker.start()
	.then( output => {
		...
	} );

Tools.docker.check()

function( containerName, additionalChecks = {} )

Checks if the given Docker-container is running.

// Example:
Tools.docker.check( "inpas-ldap" )
	.then( running => {
		...
	} );

Tools.docker.stop()

function( composeFile = null, cleanupVolumes = false )

Stops the given Docker-service.

// Example:
Tools.docker.stop()
	.then( output => {
		...
	} );

Tools.docker.sysAutomate()

function( serviceDescription, freshStartOrFinish = [ false, false ] )

Sets up a before-hook and an after-hook for some mocha-tests. Those hooks shall ensure that the containers of the Docker-service are running during the tests and may return to their initial state afterwards, if needed.

If the function is called again (e.g. because you have two test-files which are run together), no new hooks will be installed. However you have to pass the same options like before or an error will be thrown.

// Example:
Tools.docker.sysAutomate(
	{ title: "LDAP", name: "inpas-ldap", ports: [ 389, 636 ] },
	[ true, false ]
);

Tools.docker.sysStop()

function()

Uses the Docker configuration which was given to docker.sysAutomate() and (temporarily) stops the Docker-service.

// Example:
Tools.docker.sysStop();

Tools.docker.sysStart()

function()

Uses the Docker configuration which was given to docker.sysAutomate() and starts the Docker-service. If you also want to wait for the Docker-service to be listening on its port(s), use docker.sysIsListening() afterwards.

// Example:
Tools.docker.sysStart()
	.then( () => Tools.docker.sysIsListening() );

Tools.docker.sysIsListening()

function()

Uses the Docker configuration which was given to docker.sysAutomate(), checks if the Docker-service is running and - in case some ports where stated to docker.sysAutomate() - if it's listening on at least one of its ports.

// Example:
Tools.docker.sysIsListening();

Tools.docker.sysRestart()

function( checkListening = true )

Uses the Docker configuration which was given to docker.sysAutomate(), stops the Docker-service (if it's running) and starts it again.

// Example:
Tools.docker.sysRestart();

HTTP tools

Tools.http.checkRawResponse()

function( response, expected )

Determines the raw body of a HTTP response which was received from module "http-tag-string". Some additional checks may be run, too.

// Example:
HTTP`GET /`()
	.then( response => Tools.http.checkRawResponse( response, { status: 200 } ) )
	.then( bodyBuffer => {
		...
	} );

Tools.http.checkJsonResponse()

function( response, expected )

Determines the JSON of a HTTP response which was received from module "http-tag-string". Some additional checks may be run, too.

// Example:
HTTP`GET /`()
	.then( response => Tools.http.checkJsonResponse( response, { status: 200 } ) )
	.then( bodyJSON => {
		...
	} );

Tools.http.checkTextResponse()

function( response, expected )

Determines the body of a HTTP response which was received from module "http-tag-string". Some additional checks may be run, too.

// Example:
HTTP`GET /`()
	.then( response => Tools.http.checkTextResponse( response, { status: 200 } ) )
	.then( bodyText => {
		...
	} );

Tools.http.handleRedirect()

function( response )

Takes a HTTP response which was delivered from module "http-tag-string" and is expected to be a redirection to another location. The location of the redirection is taken for a new HTTP request which is created with support of module "http-tag-string", again.

// Example:
HTTP`GET /`()
	.then( response => Tools.http.handleRedirect( response ) )
	.then( response => Tools.http.checkTextResponse( response, { status: 200 } ) )
	.then( bodyText => {
		...
	} );

Object tools

Tools.object.matchData()

function( dataObject, expected )

Takes an object and checks if some properties match with the given values.

// Example:
HTTP`GET /`()
	.then( response => Tools.http.checkJsonResponse( response, { status: 200 } ) )
	.then( bodyJSON => Tools.object.matchData( bodyJSON, { error: /invalid model/i } ) );