YellowLabTools/Gruntfile.js

202 lines
5.7 KiB
JavaScript
Raw Normal View History

2014-08-07 17:27:32 +00:00
module.exports = function(grunt) {
2014-12-09 08:04:28 +00:00
var DEV_SERVER_PORT = 8383;
var TEST_SERVER_PORT = 8387;
// Tell our Express server that Grunt launched it
process.env.GRUNTED = true;
2014-08-07 17:27:32 +00:00
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
2014-09-04 14:15:24 +00:00
font: {
icons: {
2014-12-18 17:02:04 +00:00
src: ['front/src/fonts/svg-icons/*.svg'],
destCss: 'front/src/less/icons.less',
destFonts: 'front/src/fonts/icons.woff',
2014-09-04 14:15:24 +00:00
// Optional: Custom routing of font filepaths for CSS
cssRouter: function (fontpath) {
var pathArray = fontpath.split('/');
var fileName = pathArray[pathArray.length - 1];
2014-12-18 17:02:04 +00:00
return '/front/fonts/' + fileName;
2014-09-04 14:15:24 +00:00
}
}
},
less: {
2014-09-26 21:22:43 +00:00
all: {
2014-12-18 17:02:04 +00:00
files: [
{
expand: true,
cwd: 'front/src/less/',
src: ['**/*.less'],
dest: 'front/src/css/',
ext: '.css'
}
]
2014-09-04 14:15:24 +00:00
}
},
2014-08-07 17:27:32 +00:00
jshint: {
all: [
'*.js',
'app/lib/*.js',
'bin/*.js',
'lib/**/*.js',
2014-08-07 17:27:32 +00:00
'app/nodeControllers/*.js',
'app/public/scripts/*.js',
2014-12-01 23:08:07 +00:00
'phantomas_custom/**/*.js',
2014-12-15 17:58:38 +00:00
'test/**/*.js',
'front/src/js/**/*.js'
2014-08-07 17:27:32 +00:00
]
2014-09-03 07:06:35 +00:00
},
clean: {
2014-09-04 14:15:24 +00:00
icons: {
src: ['tmp']
},
2014-12-18 17:02:04 +00:00
dev: {
src: ['front/src/css']
},
2014-09-03 07:06:35 +00:00
coverage: {
src: ['coverage/']
}
},
copy: {
coverage: {
2014-11-28 16:22:32 +00:00
files: [
{src: ['test/**'], dest: 'coverage/'},
2014-12-13 11:11:33 +00:00
{src: ['lib/metadata/**'], dest: 'coverage/'},
{src: ['bin/**'], dest: 'coverage/'}
2014-11-28 16:22:32 +00:00
]
2014-09-03 07:06:35 +00:00
}
},
blanket: {
coverageApp: {
2014-09-03 07:06:35 +00:00
src: ['app/'],
dest: 'coverage/app/'
},
coverageLib: {
src: ['lib/'],
dest: 'coverage/lib/'
2014-12-13 11:11:33 +00:00
},
coverageBin: {
src: ['bin/'],
dest: 'coverage/bin/'
2014-09-03 07:06:35 +00:00
}
},
mochaTest: {
test: {
options: {
reporter: 'spec',
},
2014-12-05 15:14:08 +00:00
src: ['coverage/test/core/*.js', 'coverage/test/api/*.js']
},
'test-current-work': {
options: {
reporter: 'spec',
},
2014-12-09 08:04:28 +00:00
src: ['coverage/test/api/apiTest.js']
2014-09-03 07:06:35 +00:00
},
coverage: {
options: {
reporter: 'html-cov',
quiet: true,
captureFile: 'coverage/coverage.html'
},
2014-12-09 08:04:28 +00:00
src: ['coverage/test/core/*.js', 'coverage/test/api/*.js']
}
},
express: {
2014-12-09 08:04:28 +00:00
dev: {
options: {
port: 8383,
server: './bin/server.js',
serverreload: true,
showStack: true
}
},
testSuite: {
options: {
port: 8388,
bases: 'test/www'
}
2014-09-03 07:06:35 +00:00
}
2014-08-07 17:27:32 +00:00
}
});
2014-12-13 11:11:33 +00:00
// Custom task: copies the test settings.json file to the coverage folder, and checks if there's no missing fields
grunt.registerTask('copy-test-server-settings', function() {
var mainSettingsFile = './server_config/settings.json';
var testSettingsFile = './test/fixtures/settings.json';
var mainSettings = grunt.file.readJSON(mainSettingsFile);
var testSettings = grunt.file.readJSON(testSettingsFile);
// Recursively compare keys of two objects (not the values)
function compareKeys(original, copy, context) {
for (var key in original) {
if (!copy[key] && copy[key] !== '' && copy[key] !== 0) {
grunt.fail.warn('Settings file ' + testSettingsFile + ' doesn\'t contain key ' + context + '.' + key);
}
if (original[key] !== null && typeof original[key] === 'object') {
compareKeys(original[key], copy[key], context + '.' + key);
}
}
}
compareKeys(mainSettings, testSettings, 'settings');
var outputFile = './coverage/server_config/settings.json';
grunt.file.write(outputFile, JSON.stringify(testSettings, null, 4));
grunt.log.ok('File ' + outputFile + ' created');
2014-12-13 11:11:33 +00:00
});
2014-08-07 17:27:32 +00:00
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.registerTask('icons', [
2014-09-04 14:15:24 +00:00
'font:icons',
'less',
2014-09-04 14:15:24 +00:00
'clean:icons'
]);
2014-08-07 17:27:32 +00:00
grunt.registerTask('build', [
'less'
]);
2014-09-03 07:06:35 +00:00
grunt.registerTask('hint', [
'jshint'
]);
2014-12-09 08:04:28 +00:00
grunt.registerTask('dev', [
2014-12-18 17:02:04 +00:00
'clean:dev',
'less'
2014-12-09 08:04:28 +00:00
]);
2014-09-03 07:06:35 +00:00
grunt.registerTask('test', [
'build',
'jshint',
2014-12-09 08:04:28 +00:00
'express:testSuite',
'clean:coverage',
'copy-test-server-settings',
'blanket',
'copy:coverage',
'mochaTest:test',
'mochaTest:coverage'
]);
grunt.registerTask('test-current-work', [
'build',
'jshint',
2014-12-09 08:04:28 +00:00
'express:testSuite',
2014-09-03 07:06:35 +00:00
'clean:coverage',
'copy-test-server-settings',
2014-09-03 07:06:35 +00:00
'blanket',
'copy:coverage',
'mochaTest:test-current-work'
2014-09-03 07:06:35 +00:00
]);
2014-08-07 17:27:32 +00:00
};