14bf3184bb
* Use mocha, chai & sinon from the npm. As of sinon 2.0 sinon-as-promised is no longer required so it is removed * Tweak code to re-use the same loader with the same environment throghout the code * Introduce browserify step for testing tools that only provide node-compatible libraries (sinon, chai-as-promised) * Introduce copy step for test data to resolve multiple issues with tests depending on files not being symlinks * Re-introduce custom implementation of setTimeout to resolve issues with few tests * Re-introduce custom Bluebird Promises config & monkey patch
225 lines
No EOL
5.4 KiB
JavaScript
225 lines
No EOL
5.4 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const gulp = require('gulp');
|
|
const del = require('del');
|
|
const vfs = require('vinyl-fs');
|
|
const gutil = require('gulp-util');
|
|
const babel = require('gulp-babel');
|
|
const sass = require('gulp-sass');
|
|
const os = require('os');
|
|
const glob = require('glob');
|
|
const Worker = require('tiny-worker');
|
|
const merge = require('merge-stream');
|
|
const tap = require('gulp-tap');
|
|
const rename = require("gulp-rename");
|
|
const browserify = require('browserify');
|
|
const reactPatcher = require('./gulp/gulp-react-patcher');
|
|
const NODE_ENV = process.env.NODE_ENV;
|
|
|
|
const formatDirsforMatcher = dirs => {
|
|
return dirs.length > 1 ? `{${dirs.join(',')}}` : dirs[0];
|
|
};
|
|
|
|
// list of folders from where .js files are compiled and non-js files are symlinked
|
|
const dirs = [
|
|
'chrome',
|
|
'components',
|
|
'defaults',
|
|
'resource',
|
|
'resource/web-library',
|
|
'test',
|
|
'test/resource/chai',
|
|
'test/resource/chai-as-promised',
|
|
'test/resource/mocha'
|
|
];
|
|
|
|
// list of folders from which all files are symlinked
|
|
const symlinkDirs = [
|
|
'styles',
|
|
'translators',
|
|
];
|
|
|
|
// list of folders which are copied to the build folder
|
|
const copyDirs = [
|
|
'test/tests/data' // browser follows symlinks when loading test data
|
|
// triggering false-positive test results with mismatched URIs
|
|
];
|
|
|
|
// list of files from root folder to symlink
|
|
const symlinkFiles = [
|
|
'chrome.manifest', 'install.rdf', 'update.rdf'
|
|
];
|
|
|
|
// these files will be browserified during the build
|
|
const browserifyConfigs = [
|
|
{
|
|
src: 'node_modules/sinon/lib/sinon.js',
|
|
dest: 'test/resource/sinon.js',
|
|
config: {
|
|
standalone: 'sinon'
|
|
}
|
|
},
|
|
{
|
|
src: 'node_modules/chai-as-promised/lib/chai-as-promised.js',
|
|
dest: 'test/resource/chai-as-promised.js',
|
|
config: {
|
|
standalone: 'chaiAsPromised'
|
|
}
|
|
}
|
|
];
|
|
|
|
const jsGlob = `./\{${dirs.join(',')}\}/**/*.js`;
|
|
const jsGlobIgnore = `./\{${symlinkDirs.concat(copyDirs).join(',')}\}/**/*.js`;
|
|
|
|
function onError(err) {
|
|
gutil.log(gutil.colors.red('Error:'), err);
|
|
this.emit('end');
|
|
}
|
|
|
|
function onSuccess(msg) {
|
|
gutil.log(gutil.colors.green('Build:'), msg);
|
|
}
|
|
|
|
function getBrowserify() {
|
|
const streams = browserifyConfigs.map(config => {
|
|
return gulp
|
|
.src(config.src)
|
|
.pipe(tap(file => {
|
|
file.contents = browserify(file.path, config.config).bundle();
|
|
}))
|
|
.pipe(rename(config.dest))
|
|
.pipe(gulp.dest('build'));
|
|
});
|
|
|
|
return merge.apply(merge, streams);
|
|
}
|
|
|
|
function getJS(source, sourceIgnore) {
|
|
if (sourceIgnore) {
|
|
source = [source, '!' + sourceIgnore];
|
|
}
|
|
|
|
return gulp.src(source, { base: '.' })
|
|
.pipe(babel())
|
|
.pipe(reactPatcher())
|
|
.on('error', onError)
|
|
.on('data', file => {
|
|
onSuccess(`[js] ${file.path}`);
|
|
})
|
|
.pipe(gulp.dest('./build'));
|
|
}
|
|
|
|
function getJSParallel(source, sourceIgnore) {
|
|
const jsFiles = glob.sync(source, { ignore: sourceIgnore });
|
|
const cpuCount = os.cpus().length;
|
|
const threadCount = Math.min(cpuCount, jsFiles.length);
|
|
let threadsActive = threadCount;
|
|
|
|
return new Promise((resolve, reject) => {
|
|
for(let i = 0; i < threadCount; i++) {
|
|
let worker = new Worker('gulp/babel-worker.js');
|
|
worker.onmessage = ev => {
|
|
if(ev.data.isError) {
|
|
reject(`Failed while processing ${ev.data.sourcefile}`);
|
|
}
|
|
|
|
NODE_ENV == 'debug' && console.log(`process ${i} took ${ev.data.processingTime} ms to process ${ev.data.sourcefile}`);
|
|
NODE_ENV != 'debug' && onSuccess(`[js] ${ev.data.sourcefile}`);
|
|
|
|
if(ev.data.isSkipped) {
|
|
NODE_ENV == 'debug' && console.log(`process ${i} SKIPPED ${ev.data.sourcefile}`);
|
|
}
|
|
let nextFile = jsFiles.pop();
|
|
|
|
if(nextFile) {
|
|
worker.postMessage(nextFile);
|
|
} else {
|
|
NODE_ENV == 'debug' && console.log(`process ${i} has terminated`);
|
|
worker.terminate();
|
|
if(!--threadsActive) {
|
|
resolve();
|
|
}
|
|
}
|
|
};
|
|
worker.postMessage(jsFiles.pop());
|
|
}
|
|
|
|
NODE_ENV == 'debug' && console.log(`Started ${threadCount} processes for processing JS`);
|
|
});
|
|
}
|
|
|
|
function getSymlinks() {
|
|
const match = symlinkFiles
|
|
.concat(dirs.map(d => `${d}/**`))
|
|
.concat(symlinkDirs.map(d => `${d}/**`))
|
|
.concat([`!./${formatDirsforMatcher(dirs)}/**/*.js`])
|
|
.concat([`!./${formatDirsforMatcher(copyDirs)}/**`]);
|
|
|
|
return gulp
|
|
.src(match, { nodir: true, base: '.', read: false })
|
|
.on('error', onError)
|
|
.on('data', file => {
|
|
onSuccess(`[ln] ${file.path.substr(__dirname.length + 1)}`);
|
|
})
|
|
.pipe(vfs.symlink('build/'));
|
|
}
|
|
|
|
function getCopy() {
|
|
return gulp
|
|
.src(copyDirs.map(d => `${d}/**`), { base: '.' })
|
|
.on('data', file => {
|
|
onSuccess(`[cp] ${file.path.substr(__dirname.length + 1)}`);
|
|
})
|
|
.pipe(gulp.dest('build/'));
|
|
}
|
|
|
|
function getSass() {
|
|
return gulp
|
|
.src('scss/*.scss')
|
|
.on('error', onError)
|
|
.pipe(sass())
|
|
.pipe(gulp.dest('./build/chrome/skin/default/zotero/components/'));
|
|
}
|
|
|
|
|
|
gulp.task('clean', () => {
|
|
return del('build');
|
|
});
|
|
|
|
gulp.task('symlink', ['clean'], () => {
|
|
return getSymlinks();
|
|
});
|
|
|
|
gulp.task('js', done => {
|
|
getJSParallel(jsGlob, jsGlobIgnore).then(() => done());
|
|
});
|
|
|
|
gulp.task('browserify', () => {
|
|
getBrowserify();
|
|
});
|
|
|
|
gulp.task('copy', () => {
|
|
getCopy();
|
|
});
|
|
|
|
gulp.task('sass', () => {
|
|
return getSass();
|
|
});
|
|
|
|
gulp.task('build', ['js', 'sass', 'symlink', 'browserify', 'copy']);
|
|
|
|
gulp.task('dev', ['clean'], () => {
|
|
var interval = 750;
|
|
|
|
let watcher = gulp.watch(jsGlob, { interval });
|
|
|
|
watcher.on('change', function(event) {
|
|
getJS(event.path, jsGlobIgnore);
|
|
});
|
|
|
|
gulp.watch('src/styles/*.scss', { interval }, ['sass']);
|
|
gulp.start('build');
|
|
});
|
|
|
|
gulp.task('default', ['dev']); |