-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseed.js
82 lines (63 loc) · 1.98 KB
/
seed.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
This seed file is only a placeholder. It should be expanded and altered
to fit the development of your application.
It uses the same file the server uses to establish
the database connection:
--- server/db/index.js
The name of the database used is set in your environment files:
--- server/env/*
This seed file has a safety check to see if you already have users
in the database. If you are developing multiple applications with the
fsg scaffolding, keep in mind that fsg always uses the same database
name in the environment files.
Refer to the q documentation for why and how q.invoke is used.
*/
var mongoose = require('mongoose');
var connectToDb = require('./server/db');
var q = require('q');
var chalk = require('chalk');
var User = mongoose.model('User');
var TestConfig = mongoose.model('TestConfig');
var Team = mongoose.model('Team');
var ImageDiff = mongoose.model('ImageDiff');
var ImageCapture = mongoose.model('ImageCapture');
var TestCase = mongoose.model('TestCase');
var keepUsers = process.argv[2] === '-keepUsers' ? true : false;
var seedUsers = function () {
var users = [
{
email: '[email protected]',
password: 'test'
},
{
email: '[email protected]',
password: 'potus'
}
];
return q.invoke(User, 'create', users);
};
var wipeDB = function () {
var models = [Team, TestConfig, ImageDiff, ImageCapture, TestCase];
if (!keepUsers)
models.push(User);
models.forEach(function (model) {
model.find({}).remove(function () {});
});
return q.resolve();
};
var seed = function () {
if (!keepUsers) {
seedUsers().then(function (users) {
console.log(chalk.magenta('Seeded Users!'));
process.kill(0);
}).catch(function (err) {
console.error(err);
process.kill(1);
});
} else {
process.kill(0);
}
};
mongoose.connection.once('open', function () {
wipeDB().then(seed);
});