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

stringtree-checklist

v0.1.0

Published

A simple helper to get round the problem of checking returned collections.

Downloads

12

Readme

stringtree-checklist

A simple helper to get round the problem of checking returned collections.

It's a common enough problem, particularly in testing remote and/or asynchronous systems, that you wish to assert that some collection of values are returned or supplied. Naive approaches such as collecting the values followed by a direct comparison of two arrays will work until the items are returned in a different order. Other approaches might (for example) accidentally ignore unexpected values, or values which occur more than once.

This can be a common point at which testing becomes "too hard", leaving key aspects of a system or API untested.

This module implements a 'Checklist' pattern. A Checklist is created by supplying a collection of values, then during the test each incoming value is 'ticked off' against the list. At any point (commonly when you think the incoming values have finished) you can ask the checklist whether it is complete, by the following rules:

  • All values have been ticked
  • No value has been ticked more than once
  • No unexpected values were supplied.

API

Constructor

var ck = new Checklist( [ value, value, ... ] )

The array of values may contain almost anything, but note that (due to a relatively simplistic approach to value equality), functions, objects with prototypes, and objects with recursive structure may not work as expected. Stick with data and you should be OK.

'Tick' an incoming value

ck.tick(value, callback(err, value))

The callback is optional, but if provided will be invoked once. If the supplied value is not in the checklist, or has already been ticked, err will be non-null and contain a descriptive message to that effect. Otherwise err will be null, and value will contain the supplied value.

'Check' the overall checklist

ck.check(all(err, message), each(err, message))

Both callbacks are optional, although the checklist is not very useful if neither is supplied.

'all' will be called once after all entries in the checklist have been evaluated. If any of the above rules have been broken, err will be non-null and contain a set of messages, separated by newlines, indicating all the failures. If no rules have been broken, err will be null and message will contain some text to that effect.

'each' will be called once for each expected entry in the order they were given to the constructor. If the entry breaks a rule (i.e. not supplied, or supplied more than once) err will contain a descriptive message to that effect, otherwise err will be null and message will confirm that the entry was correct.

'each' will also be called one additional time to indicate the status of unexpected values. If any unexpected values were supplied, err will contain a message with a count, otherwise err will be null and message will contain a reassuring confirmation.

Usage

var Checklist = require('stringtree-checklist');
var ck = new Checklist([ 12, 'wibble', {a:'b'} ]);

ck.tick('wibble');
ck.tick(12);

ck.check(function(err, message) {
  console.log('err: ' + err);
  console.log('message: ' + message);
});
// err: Value { a: 'b' } not supplied
// message: undefined

ck.tick({ a : 'b' });

ck.check(function(err, message) {
  console.log('err: ' + err);
  console.log('message: ' + message);
});
// err: null
// message: Checklist OK

Configuration

None needed, other than supplying a collection of values to the constructor