forked from rap1ds/dippa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
230 lines (187 loc) · 7.5 KB
/
Gruntfile.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*global module:false*/
module.exports = function(grunt) {
"use strict";
grunt.loadNpmTasks('grunt-contrib-jshint');
var path = require('path');
var REPOSITORY_PATH = 'public/repositories';
// Project configuration.
grunt.initConfig({
test: {
specs: 'spec/'
},
jshint: {
files: ['server.js', 'grunt.js', 'fixtures/**/*.js', 'modules/**/*.js', 'spec/**/*.js'],
options: {
jshintrc: '.jshintrc'
}
}
});
// Test
grunt.registerTask('test', 'Run Jasmine tests', function() {
var specs = grunt.config('test.specs');
var cmd = 'node_modules/jasmine-node/bin/jasmine-node --forceexit ' + specs;
var cwd = path.resolve();
var done = this.async();
grunt.log.writeln('Executing command ' + cmd + ' in directory ' + cwd);
require('child_process').exec(cmd, {cwd: cwd}, function (error, stdout, stderr) {
if (error) {
grunt.log.writeln(stdout);
grunt.log.writeln(error);
grunt.log.error('Test runner exited with errors');
done(false);
} else {
grunt.log.writeln(stdout);
grunt.log.ok('Tests passed');
done();
}
});
});
function startSelenium(callback) {
var cmd = './runtests.py selenium-start';
var cwd = path.resolve('./robot');
grunt.log.writeln('Starting selenium server...');
require('child_process').exec(cmd, {cwd: cwd}, function (error, stdout, stderr) {
if (error) {
grunt.log.writeln(stdout);
grunt.log.error('Could not start selenium server');
callback(false);
} else {
grunt.log.writeln(stdout);
grunt.log.ok('Selenium server started');
callback(true);
}
});
}
function stopSelenium(callback) {
var cmd = './runtests.py selenium-stop';
var cwd = path.resolve('./robot');
grunt.log.writeln('Stopping selenium server...');
require('child_process').exec(cmd, {cwd: cwd}, function (error, stdout, stderr) {
if (error) {
grunt.log.writeln(stdout);
grunt.log.error('Could not stop selenium server');
callback(false);
} else {
grunt.log.writeln(stdout);
grunt.log.ok('Selenium server stopped');
callback(true);
}
});
}
grunt.registerTask('test-robot', 'Run Robot tests', function(githubUsername, githubPassword, server) {
var done = this.async();
if(!githubUsername || !githubPassword) {
grunt.log.error('Provide github username and password as arguments');
done(false);
}
startSelenium(function(startSuccess) {
if(!startSuccess) {
done(false);
}
var cwd = path.resolve('./robot');
var cmd = ['./runtests.py'];
cmd.push('--variable GITHUB_USERNAME:' + githubUsername);
cmd.push('--variable GITHUB_PASSWORD:' + githubPassword);
if(server) {
cmd.push('--variable SERVER:' + server);
}
cmd.push('tests/');
cmd = cmd.join(' ');
grunt.log.writeln('Executing command ' + cmd + ' in directory ' + cwd);
require('child_process').exec(cmd, {cwd: cwd, timeout: 240000}, function (error, stdout, stderr) {
var failed = false;
if (error) {
grunt.log.writeln(stdout);
grunt.log.error('Tests FAILED');
failed = true;
} else {
grunt.log.writeln(stdout);
grunt.log.ok('Tests passed');
}
stopSelenium(function(stopSuccess) {
require('child_process').exec("open report.html", {cwd: cwd, timeout: 3000}, function (error, stdout, stderr) {
if(!stopSuccess || failed) {
done(false);
return;
}
done(true);
});
});
});
});
});
grunt.registerTask('backup-repositories', 'Backup repositories', function(dest) {
if (arguments.length > 1) {
grunt.log.error(this.name + ": Give max one argument, destination path");
return;
}
function createBackupFilename() {
var timestamp = (new Date()).toISOString().replace(/\:/g, '.'); // Linux can't handle ':'
return "backup_repositories_" + timestamp + ".tar.gz";
}
dest = path.resolve(dest);
var cwd = path.resolve();
var repositoryPath = path.resolve(REPOSITORY_PATH);
var relativeRepositoryPath = path.relative(cwd, repositoryPath);
var backupFilename = createBackupFilename();
var cmd = 'tar zcf "' + backupFilename + '" "' + relativeRepositoryPath + '"';
var done = this.async();
grunt.log.writeln('Backing up repositories from ' + relativeRepositoryPath + ' ' + dest);
grunt.log.writeln('Executing command "' + cmd + '" in directory "' + cwd + '"');
require('child_process').exec(cmd, {cwd: cwd}, function (error, stdout, stderr) {
if (error) {
grunt.log.writeln(stdout);
grunt.log.writeln(stderr);
grunt.log.error('Error creating tar.gz package');
grunt.log.error(error);
done(false);
} else {
grunt.log.writeln(stdout);
grunt.log.writeln('Created package ' + backupFilename);
var backupFilePackage = path.resolve(backupFilename);
dest = path.join(dest, backupFilename);
grunt.log.writeln('Copying package "' + backupFilePackage + '" to destination "' + dest + '"');
grunt.file.copy(backupFilePackage, dest);
grunt.log.writeln('Deleting local copy "' + backupFilePackage + '"');
grunt.file.delete(backupFilePackage);
grunt.log.writeln('Succesfully copied ' + backupFilename + ' files to ' + dest);
grunt.log.ok('Backup was successful');
done();
}
});
});
grunt.registerTask('create-repository', 'Create a new Github repository', function(repoName, username, password) {
var GitHubApi = require("github");
var done = this.async();
var github = new GitHubApi({
version: "3.0.0"
});
github.authenticate({
type: "basic",
username: username,
password: password
});
github.repos.create({
name: repoName
}, function(err, newRepo) {
if(err) {
done(false);
return;
}
github.repos.addCollaborator({
user: username,
repo: repoName,
collabuser: 'dippa'
}, function(err, res) {
if(err) {
done(false);
return;
}
grunt.log.writeln(newRepo.html_url);
done();
});
});
});
// Default task.
grunt.registerTask('default', ['jshint', 'test']);
};