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

nxus-tester

v4.1.1

Published

A test management framework for Nxus applications, built on Mocha and Chai

Downloads

20

Readme

nxus-tester

Build Status

A test management framework for Nxus applications. The tester module provides some helper functions for funtionally testing a Nxus app.

Installation

> npm install nxus-tester --save-dev

Configuration

You will want to use mocha as your test runner in your application project, here's a standard npm test script for your package.json

"test": "NODE_ENV=test mocha --recursive --compilers js:babel-register -R spec modules/test/*",

Usage

Test Server startup

Any test suites that want to make requests to a running instance of your application should use startTestServer:

describe("My App", function() {
    before(function() {
        this.timeout(4000) // Depending on your apps startup speed
        startTestServer()
    })
    ... // Your tests
})

This is safe to call in multiple suites, only one test server will be started. You may pass an object as an optional second argument to startTestServer for command ENV variables, such as DEBUG or overriding test database names.

Running tests

> npm test

Requests

Requests to the test server can be made using helper methods for the requests-with-promises library.

import {request, requestRaw, requestLogin} from 'nxus-tester'

request returns the body of a successful response

let body = await request.get('/') // or request({url: '/', ...})
res.statusCode.should.equal(200)

or errors with a non-2XX response

let body = await request.get('/notHere')
 .catch(request.errors.StatusCodeError, (err) => {...})

requestRaw returns the response object, if you want to check statusCode, headers, etc let res = await requestRaw.get({url: '/admin', followRedirect: false}) res.statusCode.should.equal(302) res.headers.location.should.contain('/login')

requestLogin`` creates a new cookie jar and logs in as the requested username/password and returns a request object to use likerequest`. let req = await requestLogin('user@dev', 'test') let body = await req.get({url: '/admin'})

Fixtures

You can define fixtures (json or csv files with data to load during test startup) manually in your application modules: app.get('tester').fixture('modelName', 'path/to/fixture.json')

Or by creating a top-level application fixtures directory with files named for the models they contain fixture data for.

Use models and nxus modules in tests

The test server is started in the same process as your tests, so you may use e.g. storage.getModel() in your before() and test methods to create test data and assert that requests modify data.

API


fixture

Import a data file as fixture data for tests. Only runs if config.env==test

Parameters

  • modelId string The identity of the model to import
  • path string The path to a file
  • options object Options to pass to data-loader.importFile

startTestServer

Start a test server in the test process on port 3002

Parameters

  • script string The entrypoint filename relative to cwd (optional, default "index.js")
  • env (optional, default {})
  • options object additional ENV variables (override test database names, etc)

Returns Promise resolves when application has started