New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

test-data-bot

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

test-data-bot

Generate test data for your tests easily.

  • 0.5.0
  • npm
  • Socket score

Version published
Weekly downloads
4.6K
decreased by-14.42%
Maintainers
1
Weekly downloads
 
Created
Source

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: 'jack1@test.com', 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.

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: 'JACK1@TEST.COM' }

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: 'jack1@test.com' }

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

Keywords

FAQs

Package last updated on 03 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc