#lobo-mongodb-fixtures
This is a forked version of pow-mongodb-fixtures, that merges all other forks into this one, trying to keep
it up to date.
Simple fixture loader for MongoDB on NodeJS. Makes managing relationships between documents easier.
Fixtures can be in one file, or divided up into separate files for organisation
(e.g. one file per model)
The fixture files must export objects which are keyed by the MongoDB collection name, each
containing the data for documents within that.
##Installation
npm install lobo-mongodb-fixtures
##Examples
With the file below, 3 documents will be inserted into the 'users' collection and 2 into the 'businesses' collection:
exports.users = [
{ name: 'Gob' },
{ name: 'Buster' },
{ name: 'Steve Holt' }
];
exports.businesses = [
{ name: 'The Banana Stand' },
{ name: 'Bluth Homes' }
];
You can also load fixtures as an object where each document is keyed, in case you want to reference another document. This example uses the included createObjectId
helper:
var id = require('lobo-mongodb-fixtures').createObjectId;
var users = exports.users = {
user1: {
_id: id(),
name: 'Michael'
},
user2: {
_id: id(),
name: 'George Michael',
father: users.user1._id
},
user3: {
_id: id('4ed2b809d7446b9a0e000014'),
name: 'Tobias'
}
}
##CLI usage
A CLI program is included for quickly loading fixture files. To use it install the module globally:
npm install lobo-mongodb-fixtures -g
Then use the program to install a file or directory:
mongofixtures <dbname> <fixture file>
mongofixtures appdb fixtures/users.js
##API
###connect(dbname, options)
Returns a new Loader instance, configured to interact with a certain database.
Options:
- host (Default: localhost)
- port (Default: 27017)
- user
- pass
- safe (Default: false)
Usage:
var fixtures = require('lobo-mongodb-fixtures').connect('dbname');
var fixtures2 = require('lobo-mongodb-fixtures').connect('dbname', {
host: 'http://dbhost.com/',
port: 1234
});
###load(data, callback)
Adds documents to the relevant collection. If the collection doesn't exist it will be created first.
var fixtures = require('lobo-mongodb-fixtures').connect('mydb');
fixtures.load({
users: [
{ name: 'Maeby' },
{ name: 'George Michael' }
]
}, callback);
fixtures.load(__dirname + '/fixtures/users.js', callback);
fixtures.load(__dirname + '/fixtures', callback);
###clear(callback)
Clears existing data.
fixtures.clear(function(err) {
});
fixtures.clear('foo', function(err) {
});
fixtures.clear(['foo', 'bar'], function(err) {
});
###clearAllAndLoad(data, callback)
Drops the database (clear all collections) and loads data.
###clearAndLoad(data, callback)
Clears the collections that have documents in the data
that is passed in, and then loads data.
var data = { users: [...] };
fixtures.clearAndLoad(data, function(err) {
});
###addModifier(callback)
Adds a modifier (function) which gets called for each document that is to be inserted. The signature of this function
should be:
(collectionName, document, callback)
- collectionName - name of collection
- document - the document which is to be inserted
- callback - function with signature (err, modifiedDocument). This should be called with the modified document.
Modifiers are chained in the order in which they're added. For example:
var data = { users: [...] };
fixtures.addModifier(function(collectionName, doc, cb) {
doc.createdAt = new Date();
cb(null, doc);
});
fixtures.addModifier(function(collectionName, doc, cb) {
doc.updatedAt = new Date();
cb(null, doc);
});
fixtures.load(data, function(err) {
});