This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 366
/
gulpfile.js
175 lines (157 loc) · 5.76 KB
/
gulpfile.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
/**
* @license
* Copyright 2014 The Lovefield Project Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var gulp = /** @type {{
task: function(string, (!Array|!Function), !Function=),
src: !Function}} */ (require('gulp'));
var gjslint = /** @type {!Function} */ (require('gulp-gjslint'));
var pathMod = require('path');
var chalk = /** @type {{green: !Function, red: !Function, cyan: !Function}} */ (
require('chalk'));
var nopt = /** @type {!Function} */ (require('nopt'));
var builder = /** @type {{
buildLib: !Function,
buildAllTests: !Function}} */ (
require(pathMod.resolve(
pathMod.join(__dirname, 'tools/builder.js'))));
var runner = /** @type {{
runJsUnitTests: function(?string, string):!IThenable,
runSpacTests: function():!IThenable,
runJsPerfTests: function(string=):!IThenable}} */ (
require(pathMod.resolve(
pathMod.join(__dirname, 'tools/run_test.js'))));
var testServer = /** @type {{
runUnitTestServer: function(number):!IThenable,
runPerfTestServer: function(number):!IThenable,
stopServer: !Function }} */ (
require(pathMod.resolve(
pathMod.join(__dirname, 'tools/run_test_server.js'))));
var log = console['log'];
gulp.task('default', function() {
log('Usage: ');
log(' gulp build --target=lib --mode=<opt|debug>:');
log(' Generate dist/lf.js using Closure compiler.');
log(' gulp build --target=tests --filter=<pattern>:');
log(' Compile tests using Closure compiler.');
log(' gulp debug [--target=<tests|perf>] [--port=<number>]:');
log(' Start a debug server (default is test at port 8000)');
log(' gulp lint: Lint against source files');
log(' gulp test --target=spac: Run SPAC tests');
log(' gulp test --target=perf [--browser=<target>]:');
log(' Run perf tests using webdriver (need separate install).');
log(' gulp test --target=tests [--filter=<pattern> --browser=<target>]:');
log(' Run unit tests using webdriver (need separate install).');
log(' Currently, chrome|firefox|ie|safari are valid webdriver targets.');
log(' Can pass multiple browsers by repeating the --browser flag.');
log(' Can pass multiple filters by repeating the --filter flag.');
});
gulp.task('lint', function() {
return gulp.src([
'perf/**/*.js',
'spac/**/*.js',
'src/**/*.js',
'tests/**/*.js',
'testing/**/*.js',
]).pipe(gjslint()).
pipe(gjslint['reporter']('console'), {fail: true});
});
gulp.task('build', function() {
var knownOpts = {
'filter': [Array, String, null],
'mode': [String, null],
'target': [String]
};
var options = nopt(knownOpts);
if (options.target == 'lib') {
return builder.buildLib(options);
} else {
return builder.buildAllTests(options).then(function() {
log('Everything built');
});
}
});
gulp.task('debug', function() {
var knownOpts = {
'target': [String, null],
'port': [Number, null]
};
var options = nopt(knownOpts);
options.target = options.target || 'tests';
var port = options.port || 8000;
// The test server cannot callback. It is terminated by Ctrl-C.
if (options.target == 'perf') {
testServer.runPerfTestServer(port);
} else if (options.target != 'spac') {
testServer.runUnitTestServer(port);
}
});
gulp.task('test', function() {
var knownOpts = {
'browser': [Array, String, null],
'filter': [Array, String, null],
'target': [String]
};
var options = nopt(knownOpts);
var browsers = options.browser instanceof Array ?
options.browser :
[options.browser || process.env['SELENIUM_BROWSER'] || 'chrome'];
/** @param {*=} opt_error */
var finalize = function(opt_error) {
testServer.stopServer();
var exitCode = 0;
if (opt_error) {
var message = opt_error.message || opt_error.toString();
log('Error detected:', message);
exitCode = 1;
}
};
var whenTestsDone = null;
if (options.target == 'perf') {
// Run only perf regression tests and dump output in the console.
whenTestsDone = runner.runJsPerfTests(options.browser).then(
function(perfData) {
log(JSON.stringify(perfData, null, 2));
finalize();
}, finalize);
} else if (options.target == 'spac') {
// Run only SPAC.
whenTestsDone = runner.runSpacTests();
} else {
var port = options.port || 8000;
testServer.runUnitTestServer(port);
// Run only JSUnit tests.
var testBrowser = function(browser) {
return runner.runJsUnitTests(options.filter, browser).then(
function(results) {
var failedCount = results.reduce(function(prev, item) {
return prev + (item['pass'] ? 0 : 1);
}, 0);
log(results.length + ' tests, ' + failedCount + ' failure(s).');
log('[ ' + chalk.cyan(browser) + ' ] JSUnit tests: ',
failedCount > 0 ? chalk.red('FAILED') : chalk.green('PASSED'));
if (failedCount > 0) {
throw new Error();
}
}, finalize);
};
var whenBrowsersDone = browsers.map(function(browser) {
return testBrowser(browser);
});
whenTestsDone = Promise.all(whenBrowsersDone).then(
function() { finalize(); }, finalize);
}
return whenTestsDone;
});