-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgrunt.js
242 lines (229 loc) · 7 KB
/
grunt.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
231
232
233
234
235
236
237
238
239
240
241
242
module.exports = function (grunt) {
'use strict';
var path = require('path');
var fs = require('fs');
var banner = '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> */'
grunt.initConfig({
pkg: '<json:package.json>',
meta: { banner: banner },
concat: {
latest: {
src: '<json:build-order.json>',
dest: 'js/im.js'
},
"in-version-dir": {
src: '<json:build-order.json>',
dest: 'js/<%= pkg.version %>/im.js'
}
},
min: {
latest: {
src: 'js/im.js',
dest: 'js/im.min.js'
},
version: {
src: 'js/<%= pkg.version %>/im.js',
dest: 'js/<%= pkg.version %>/im.min.js'
}
},
lint: {
tests: ['test/qunit/t/*.js'],
grunt: ['tasks/*.js', 'grunt.js']
},
coffeelint: {
source: ['src/*.coffee'],
mocha: ['test/mocha/*.coffee']
},
compile: {
source: {
src: 'src/*',
dest: 'build'
}
},
coffeelintOptions: '<json:coffeelint.json>',
jshint: {
// Follow github's style guidelines and Crockford's where those are not sufficient
// * https://github.com/styleguide/javascript
// * http://javascript.crockford.com/code.html
options: {
laxcomma: true,
asi: true,
curly: true,
maxparams: 5
},
grunt: {
options: {
asi: true,
curly: true,
maxparams: 5,
indent: 2,
node: true
}
},
tests: {
options: {
asi: true,
curly: true,
maxparams: 5,
indent: 2,
browser: true,
devel: true,
jquery: true
},
globals: {
TestCase: true,
_: true,
test: true,
asyncTest: true,
start: true,
ok: true,
equal: true,
notEqual: true,
module: true,
deepEqual: true,
intermine: true
}
}
},
clean: {
qunit: 'test/qunit/build',
build: 'build'
},
simplemocha: {
all: {
src: 'test/mocha/*.coffee',
options: '<json:mocha-opts.json>'
}
},
copy: {
cdn: {
files: {
'<%= process.env.CDN %>/js/intermine/imjs/<%= pkg.version %>/': 'js/<%= pkg.version %>/*.js',
'<%= process.env.CDN %>/js/intermine/imjs/latest/': 'js/<%= pkg.version %>/*.js'
}
}
}
})
grunt.loadNpmTasks('grunt-bump');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-coffeelint')
grunt.loadNpmTasks('grunt-simple-mocha')
grunt.loadNpmTasks('grunt-clean')
grunt.loadTasks('tasks')
grunt.registerTask('-load-test-globals', function () {
global.should = require('should')
});
grunt.registerTask(
'build-acceptance-index',
'Build a index.html page to run acceptance tests', function () {
var templ = grunt.file.read('test/browser/template.html', 'utf8');
var outf = 'test/browser/index.html';
var root = process.env.TESTMODEL_URL ||
grunt.option('root') ||
"http://localhost:8080/intermine-test";
var obj = {
mocha: {
css: "../../components/mocha/mocha.css",
js: "../../components/mocha/mocha.js"
},
args: {
root: root,
token: "test-user-token"
},
expect: "../../components/expect/expect.js",
jquery: "../../components/jquery/jquery.js",
underscore: "../../components/underscore/underscore.js",
imjs: "../../js/im.js"
};
var processed = grunt.template.process(templ.toString(), obj);
grunt.file.write(outf, processed);
grunt.log.writeln('Wrote ' + outf);
});
grunt.registerTask(
'build-static-acceptance-index',
'Build a index.html page to run acceptance tests', function () {
var templ = grunt.file.read('test/browser/template.html', 'utf8');
var outf = 'test/browser/acceptance.html';
var root = process.env.TESTMODEL_URL ||
grunt.option('root') ||
"http://localhost:8080/intermine-test";
var obj = {
mocha: {
css: "http://cdn.intermine.org/js/mocha/1.8.1/mocha.css",
js: "http://cdn.intermine.org/js/mocha/1.8.1/mocha.js"
},
args: {
root: root,
token: grunt.option('token') || "test-user-token"
},
expect: "http://cdn.intermine.org/js/expect/latest/expect.js",
jquery: "http://code.jquery.com/jquery-1.9.1.min.js",
underscore: "http://cdn.intermine.org/js/underscore.js/1.3.3/underscore-min.js",
imjs: "http://ci.intermine.org/job/imjs/lastSuccessfulBuild/artifact/js/im.js"
};
var processed = grunt.template.process(templ.toString(), obj);
grunt.file.write(outf, processed);
grunt.log.writeln('Wrote ' + outf);
});
grunt.registerTask('docs', 'Generate API documentation', function () {
var done = this.async();
var cmd = './node_modules/codo/bin/codo';
var args = ['-n', 'imjs', 'src'];
var child = require('child_process').spawn(cmd, args, {stdio: 'inherit'});
child.on('exit', function (code) {
done(code === 0);
});
});
grunt.registerTask('mocha-phantomjs', 'build-acceptance-index -mocha-phantomjs');
grunt.registerTask('-mocha-phantomjs', 'Run tests in phantomjs', function () {
var done = this.async();
var cmd = './node_modules/mocha-phantomjs/bin/mocha-phantomjs';
var args = ['test/browser/index.html'];
var reporter = grunt.option('reporter');
if (reporter) {
args.push('-R');
args.push(reporter);
}
var child = require('child_process').spawn(cmd, args, {stdio: 'inherit'});
child.on('exit', function (code) {
done(code === 0);
});
});
grunt.registerTask('test-node', 'Run tests in the nodejs VM', function () {
var grep = grunt.option('grep');
var reporter = grunt.option('reporter');
if (grep) {
grunt.config('simplemocha.all.options.grep', grep);
}
if (reporter) {
grunt.config('simplemocha.all.options.reporter', reporter);
}
grunt.task.run('simplemocha:all');
});
grunt.registerTask('-checkcdn', 'Check that the CDN is initialised', function () {
var done = this.async();
var cdn = process.env.CDN;
if (!cdn) {
grunt.log.error("No CDN location provided. Please set the CDN environment variable");
done(false);
}
fs.stat(cdn, function (err, stats) {
if (err) {
grunt.log.error("Problem with CDN location: " + err);
done(false);
} else if (!stats.isDirectory()) {
grunt.log.error("CDN location is not a directory");
done(false);
} else {
grunt.log.writeln("CDN configured as: " + cdn);
done();
}
});
});
grunt.registerTask('cdn', 'default -checkcdn copy:cdn');
grunt.registerTask('build', 'clean:build compile concat min')
grunt.registerTask('justtest', 'build -load-test-globals -testglob');
grunt.registerTask('test', 'build test-node mocha-phantomjs');
grunt.registerTask('default', 'lint coffeelint test')
}