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

test-data-bot

v0.8.0

Published

Generate test data for your tests easily.

Downloads

27,646

Readme

test-data-bot

An easy way to generate test data for your JavaScript unit tests. Completely agnostic of test runner, framework or environment.

npm install --save-dev test-data-bot
const { build, fake, sequence } = require('test-data-bot')

const userBuilder = build('User').fields({
  name: fake(f => f.name.findName()),
  email: sequence(x => `jack${x}@test.com`),
  age: 26,
})

const user = userBuilder()
console.log(user)
// => { name: 'Bob Fleming', email: '[email protected]', age: 26 }

API

Firstly, use build to create a new builder. The name passed is just for debugging/documentation purposes and can be whatever you'd like.

Once you've created a builder, use fields to pass in the names and values of fields.

Field values can be one of:

  • A static value, in which case any generated data from this builder will always use that value.
  • A call to sequence, which takes a function which is passed a number. This is an easy way to ensure a value is unique everytime, but still know what it will be. A sequence is per field, and the number starts at 1.
  • A call to fake. This takes a function that will be called with an instance of faker.js, and you can use any of the faker API methods to return data.
  • A call to perBuild. This takes a function that will be called each time an instance is created. This is useful if you want each instance to have the same actual value (say, an object), but one that isn't referentially the same.
  • A call to incrementingId. This will produce a number that starts at 1 and increments each time it is used. Good to model IDs from a database.
  • A call to oneOf. This takes any number of primitive values, and picks one at random.
  • A call to arrayOf. This takes any value (including another builder) and generates an array of them. It also takes the array length as the second argument: arrayOf('foo', 2) will generate ['foo', 'foo']. arrayOf(fake(f => f.name.findName()), 5) will generate an array of 5 random names.
  • A call to bool. This is a shortcut for oneOf(true, false) and will pick one of them at random.
  • A call to numberBetween. This takes two arguments as min/max, and generates a random integer between them. numberBetween(0, 10) is a shortcut for fake(f => f.random.number({ min: 0, max: 10 }).

Mapping

The test-data-bot always creates plain JavaScript objects, but you may need to generate instances of a class, for example. In this instance, you can pass a map to the builder. This will be called with the generated object, and you can then do with that data whatever you'd like:

const userBuilder = build('User')
  .fields({
    name: fake(f => f.name.findName()),
    email: sequence(x => `jack${x}@test.com`),
  })
  .map(user => ({
    name: user.name.toUpperCase(),
    email: user.email.toUpperCase(),
  }))

const user = userBuilder()

console.log(user)
// => { name: 'BOB FLEMING', email: '[email protected]' }

Hard coding values and overriding

Sometimes you might want to ensure a certain value, rather than use the generator. In this case you can pass it in when you call the builder:

const userBuilder = build('User').fields({
  name: fake(f => f.name.findName()),
  email: sequence(x => `jack${x}@test.com`),
})

const user = userBuilder({ name: 'JACK' })

console.log(user)
// => { name: 'JACK', email: '[email protected]' }

In this case, name will always be 'JACK', and the generator given will not be used.