Monky

Mongoose fixtures library inspired by factory_girl

View the Project on GitHub behrendtio/monky

Build Status

Monky

Mongoose fixtures library inspired by factory_girl

Philosophy

Inspired by factory_girl this library tries to bring similar functionality to node. The purpose is to avoid boilerplate code in your tests by creating models again and again, which can lead to very messy test suites when it comes to model with quite some columns.

Installation

$ npm install monky

Or put monky into your project's package.json file.

Usage

monky is separated into two steps: set up a factory (once) and use the factories to create models (unlimited).

Create factory

In order to build/create new documents, a factory needs to be set up for each model that will be used. This should be done in some kind of pre-test-suite-file or maybe in a global before()-function.

var mongoose  = require('mongoose')
  , Monky     = require('monky')
  , monky     = new Monky(mongoose);

monky.factory('User', { username: 'name' }, function(err) {
  // ..
});

// Set up factory without callback (throws)
monky.factory('User', { username: 'name' });

The above code set's up a new factory for the model named User. Each model that will be created from this factory will have an username which is set to name. All other paths will be empty.

Of course this is not enough to make documents valid. Therefore monky comes with a sequence function which replaces the String "#n" with a sequence number. So in order to have a unique username, one could use the following example:

monky.factory('User', { username: '#n name' });

This will lead to users with usernames like "1 name", "2 name" and so on. Embedded documents are also supported.

References

Monky also supports references between documents:

monky.factory('User', { username: 'foo' });
monky.factory('Message', { _user: 'User' });

monky.build('Message', function(message) {
  console.log(message._user.username); // 'foo'
});

Every attribute that starts with an underscore will be treated as reference. The according factory must be defined before it can be used in a reference.

Use factories to build/create mongoose documents

Build

The build function builds new mongoose models based on the set up factories without saving them.

monky.build('User', function(err, user) {
  // user ==> mongoose user model with pre set data
});

You can also set attributes when building, to replace default values

monky.build('User', { city: 'California', email: 'custom@email.com' }, function(err, user) {
  // user ==> mongoose user model with pre set data but with custom values
})

Create

create uses build to set up a new model instance and actually saves it.

monky.create('User', function(err, user) {
  // user ==> saved mongoose user model instance
});

You can also set attributes when creating, to replace default values

monky.create('User', { city: 'California', email: 'custom@email.com' }, function(err, user) {
  // user ==> saved mongoose user model with custom values
})

Build and create lists

As of version 0.0.4 one can build and create lists of documents:

monky.buildList('User', 5, function(err, users) {
  // users ==> array of 5 unsaved documents
});

monky.createList('User', 5, function(err, users) {
  // users ==> array of 5 saved documents
});

Reset factories

Since overwriting factories is not allowed, factories can be reset either completely or for a certain factory only:

monky.reset(); // Reset all
monky.reset('User'); // Reset only 'User' factory

Defining named factories

Monky uses the given factory name and maps it to the according model in mongoose. If you, however, want to access factories with a different name, you can tell monky which model to use:

monky.factory({ name: 'Admin', model: 'User' }, { username: username });
monky.build('Admin', function(err, admin) {
  // admin ==> is a User, accessed as Admin
});

Complete example using mocha

/*
 * Model file
 */
var mongoose = require('mongoose');
var Schema = new mongoose.Schema({ username: { type: 'string', unique: true, required: true }});
mongoose.model('User', Schema);

/*
 * Pre-test file (setup)
 */
var mongoose  = require('mongoose')
  , Monky     = require('monky')
  , monky     = new Monky(mongoose);

monky.factory('User', { username: '#n name' });

// Mongoose connect and other setup stuff

module.exports.monky = monky;

/*
 * Actual test
 */
var monky = require('../setup').monky;

describe('User', function() {
  it('should not save without username', function(done) {
    monky.build('User', function(err, user) {
      user.name = undefined;
      user.save(function(err) {
        // Expect err
      });
    });
  });

  it('should save user with valid data', function(done) {
    monky.build('User', function(err, user) {
      user.save(done);
    });
  });

  it('should return computed amount of order', function(done) {
    monky.create('User', function(err, user) {
      var amount = user.getComputedOrderAmount();
      // Do some checks here...
    });
  });
});

// Alternatively one can create a new user using before hook
describe('User', function() {
  beforeEach(function(done) {
    var suite = this;
    monky.create('User', function(err, user) {
      if (err) return done(err);
      suite.user = user;
      done();
    );
  });
});

Running tests

Install dev dependencies and run the tests.

$ npm i
$ make test

License

(The MIT License)

Copyright (c) 2012 Mario Behrendt info@mario-behrendt.de

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.