GithubHelp home page GithubHelp logo

factoria's Introduction

factoria Main npm

Simplistic model factory for Node/JavaScript, heavily inspired by Laravel's Model Factories.

Install

# install factoria
$ yarn add factoria -D
# install Faker as a peer dependency
$ yarn add @faker-js/faker -D

Usage

1. Define a model

To define a model, import and use define from the module. define accepts two arguments:

  • name: (string) Name of the model, e.g. 'user'
  • (faker) (function) A closure to return the model's attribute definition as an object. This closure will receive a Faker instance, which allows you to generate various random testing data.

Example:

const define = require('factoria').define

define('User', faker => ({
  id: faker.random.uuid(),
  name: faker.name.findName(),
  email: faker.internet.email(),
  age: faker.random.number({ min: 13, max: 99 })
}))

// TypeScript with generics
define<User>('User', faker => ({
  // A good editor/IDE should suggest properties from the User type
}))

2. Generate model objects

To generate model objects, import the factory and call it with the model's defined name. Following the previous example:

import factory from 'factoria'

// The simplest case, returns a "User" object
const user = factory('User')

// Generate a "User" object with "email" preset to "[email protected]"
const userWithSetEmail = factory('User', { email: '[email protected]' })

// Generate an array of 5 "User" objects
const users = factory('User', 5)

// Generate an array of 5 "User" objects, each with "age" preset to 27
const usersWithSetAge = factory('User', 5, { age: 27 })

// Use a function as an overriding value. The function will receive a Faker instance.
const user = factory('User', {
  name: faker => {
    return faker.name.findName() + ' Jr.'
  }
})

// TypeScript with generics
const user = factory<User>('User') // `user` is of type User
const users: User[] = factory<User>('User', 3) // `users` is of type User[]

Nested factories

factoria fully supports nested factories. For example, if you have a Role and a User model, the setup might look like this:

import factory from 'factoria'

factory.define('Role', faker => {
  name: faker.random.arrayElement(['user', 'manager', 'admin'])
}).define('User', faker => ({
  email: faker.internet.email(),
  role: factory('Role')
}))

Calling factory('User') will generate an object of the expected shape e.g.,

{
  email: '[email protected]',
  role: {
    name: 'admin'
  }
}

States

States allow you to define modifications that can be applied to your model factories. To create states, add an object as the third parameter of factory.define, where the key being the state name and its value the state's attributes. For example, you can add an unverified state for a User model this way:

factory.define('User', faker => ({
  email: faker.internet.email(),
  verified: true
}), {
  unverified: {
    verified: false
  }
})

State attributes can also be a function with Faker as the sole argument:

factory.define('User', faker => ({
  email: faker.internet.email(),
  verified: true
}), {
  unverified: faker => ({
    verified: faker.random.arrayElement([false]) // for the sake of demonstration
  })
})

You can then apply the state by calling the method states() with the state name, which returns the factoria instance itself:

const unverifiedUser = factory.states('unverified')('User')

You can also apply multiple states:

const fourUnverifiedPoorSouls = factory.states('job:engineer', 'unverified')('User', 4)

Test setup tips

Often, you want to set up all model definitions before running the tests. One way to do so is to have one entry point for the factories during test setup. For example, you can have this test script defined in package.json:

{
  "test": "mocha-webpack --require test/setup.js tests/**/*.spec.js"
}

Or, if Jest is your cup of tea:

{
  "jest": {
    "setupFilesAfterEnv": [
      "<rootDir>/test/setup.js"
    ]
  }
}

Then in test/setup.js you can import factoria and add the model definitions there.

Another approach is to have a wrapper module around factoria, have all models defined inside the module, and finally export factoria itself. You can then import the wrapper and use the imported object as a factoria instance (because it is a factoria instance), with all model definitions registered:

// tests/factory.js
import factory from 'factoria'

// define the models
factory.define('User', faker => ({}))
       .define('Group', faker => ({}))

// now export factoria itself
export default factory
// tests/user.spec.js
import factory from './factory'

// `factory` is a factoria function instance
const user = factory('User')

factoria itself uses this approach for its tests.

License

MIT © Phan An

factoria's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

factoria's Issues

Deepmerge.all breaks ObjectId

I'm using Factoria to generate fixtured for some integration tests.
I'm using MongoDb and sometimes I need knowledge of what an Object's '_id' will be before it's created.
Passing overrides to a Model like in the examples below returns an Object that cannot be written directly to MongoDb because Deepmerge.all clones 'every property from all types of objects'.

`
Factory.define("User", (faker) => ({
_id: new ObjectId(),
firstname: faker.name.firstName(),
lastname: faker.name.lastName(),
email: faker.internet.email(),
timezone: faker.address.timeZone(),
}))

const user_id = new ObjectId();
const user = Factory("User", 1, { _id: user_id });
`

Can we modify the deepmerge.all on line 52 of index.ts to accept options that implements isMergeableObject and only clones properties from non-instantiated objects?

{ isMergeableObject: isPlainObject }

not working "factory(model, 5)"


It not works with factory('User', 5)
`
import factory from 'factoria'

factory.define('User', faker => ({
id: faker.random.number(),
name: faker.name.findName(),
email: faker.internet.email(),
age: faker.random.number({ min: 13, max: 99 })
}))
const users = factory('User', 5)
`
It works
const users = factory('User')

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.