forked from domasx2/sequelize-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
59 lines (53 loc) · 2 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var Loader = require('./lib/loader'),
Reader = require('./lib/reader');
function initopts(options){
options = options || {};
options.encoding = options.encoding || 'utf8';
options.log = options.log || console.log;
return options;
}
function wrap(fn) {
return function() {
if (arguments.length < 2) {
throw new Error('Insufficient arguments');
} else {
var fixtures = arguments[0], models = arguments[1], options, i, cb, promise;
for(i = 2; i < arguments.length; i++) {
if (typeof arguments[i] === 'object') options = arguments[i];
else if (typeof arguments[i] === 'function') cb = arguments[i];
}
promise = fn(fixtures, models, initopts(options));
if (cb) {
console.warn("Sequelize-fixtures: callback arguments are deprecated, please use returned promises.");
promise.then(function () {
cb();
}, function (err) {
cb(err);
}).catch(function (err){
cb(err);
});
}
return promise;
}
};
}
exports.loadFixture = wrap(function(fixture, models, options) {
var loader = new Loader(options);
return loader.loadFixture(fixture, models);
});
exports.loadFixtures = wrap(function(fixtures, models, options) {
var loader = new Loader(options);
return loader.loadFixtures(fixtures, models);
});
exports.loadFile = wrap(function(filename, models, options) {
var loader = new Loader(options), reader = new Reader(options);
return reader.readFileGlob(filename).then(function(fixtures) {
return loader.loadFixtures(fixtures, models);
});
});
exports.loadFiles = wrap(function(filenames, models, options) {
var loader = new Loader(options), reader = new Reader(options);
return reader.readFiles(filenames).then(function(fixtures){
return loader.loadFixtures(fixtures, models);
});
});