Git Product home page Git Product logo

factory-granny's Introduction


Factory Granny


Build Status Coverage Status Code Climate npm version

Who were you expecting, Pocahontas?

Factory Granny is a JavaScript library for Factories that is different from the others because it also allows you to build functions instead of objects; This little feature eases test development by allowing you to directly use a Factory instance instead of needing to stub many functions.

Install

$ npm install --save-dev factory-granny

Usage

Static methods

var Factory = require('factory-granny')

var sinon = require('sinon')

Factory('User')
.attr('name', 'brenolf')
.static('sayMyName', sinon.stub)

var instance = Factory('User').get()

In this example instance is a function that always returns an object {username: 'brenolf'} when called with new. Also, this function will have a sayMyName property that is a stub. As simple as that!

Static attributes may also have dependencies over other fields:

Factory('User')
.attr('name', 'brenolf')
.static('sayMyName', ['name'], function (name) {
	return 'Hello ' + name
})

Ultimately you can track the changes of the instance being returned on every get called, and thus, spy on them.

// user-factory.js
module.exports = Factory('User')
.attr('name', 'brenolf')
.attr('spy', sinon.stub)
.static('sayMyName', ['name'], function (name) {
	return 'Hello ' + name
})

// test.js
var UserFactory = require('user-factory.js')

var user = UserFactory.get()
var instance = user._instance

// ...

expect(instance.spy).to.have.been.calledOnce

You can also call build instead of get in order to get an object with all the attributes given, but not needing to instantiate the returned function.

var UserFactory = require('user-factory.js')

/*
	user_fn = function () {
		return {
			name: 'brenolf',
			spy: sinon.stub()
		}
	}
*/
var user_fn = UserFactory.get()

/*
	user = {
		name: 'brenolf',
		spy: sinon.stub()
	}
*/
var user = UserFactory.build()

Traits

Factory Granny makes it super easy to use traits in your development.

Factory('User.ABQ')
.attr('name', 'heisenberg')

Factory('User.ABQ').get().sayMyName

As a matter of fact, you don't need to first write the parent factory. You can define a trait first and later its parent just by calling propagate.

Factory('Name.trait')
.attr('name', 'This is my name')

Factory('Name')
.attr('name', 'Main name')
.attr('parent', true)
.propagate()

Factory('Name').build() // { name: 'Main name', parent: true }

Factory('Name.trait').build() // { name: 'This is my name', parent: true }

If you don't call propagate at the end of the parents' chain, then all of its traits will not inherit its attributes.

Factory box

Factory Granny comes with a handful of stubs to make writing you factories even faster. For example:

Factory('User')
.attr('name', 'brenolf')
.static('sayMyName', Factory.box.true())
.static('find', Factory.box.chain('User.ABQ'))

There are many other aliases to make writing you factories a fun work:

Method Equivalent
simple() sinon.stub()
true() sinon.stub().returns(true)
false() sinon.stub().returns(false)
returns(value) sinon.stub().returns(value)
throws() sinon.stub().throws()
resolves(value) A sinon promise stub which resolves to a given value ({} if none given)
rejects() A sinon promise stub that rejects
build(Factory) Returns an instance of the class provided (last factory created if none given)
chain(Factory) A sinon stub that returns a .build() of the given factory (last factory created if none given)
chainAsync(Factory) A sinon stub that resolves a .build() of the given factory (last factory created if none given)

The functions that receives a factory string as parameter are all lazy loaded. Therefore, you can use factories that are not created yet but will be available when build is later called.

The greatest advantage of using Factory.box is when working with the factories. Since every function is evaluated on each build and get calls, if you wanted to have an attribute evaluated to a function value (using sinon stubs, for instance) you would need to write down a function that returns a function pointer. Factory Granny does that for you under the hood!

Note that Factory Granny is opinionated using sinon for its stubs.

Basic Usage

Factory Granny uses Rosie as its basis. Any valid formation for Rosie is also valid for Factory Granny.

License

Apache License

factory-granny's People

Contributors

brenolf avatar

Stargazers

Dmitry Demenchuk avatar Vitor Casadei avatar Rafael Mariottini Tomazela avatar

Watchers

James Cloos avatar  avatar  avatar

Forkers

mccraveiro

factory-granny's Issues

Return module instance instead of contructor

Wouldn't it be better if the module returned a singleton instance?

So that you could require the module as

var Factory = require('factory-granny')

Instead of

var Factory = new (require('factory-granny'))

:)

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.