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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Generator script for creating gtest-style JavaScript
* tests for extensions, WebUI and unit tests. Generates C++ gtest wrappers
* which will invoke the appropriate JavaScript for each test.
* @author scr@chromium.org (Sheridan Rawlins)
* @see WebUI testing: http://goo.gl/ZWFXF
* @see gtest documentation: http://goo.gl/Ujj3H
* @see chrome/chrome_tests.gypi
* @see tools/gypv8sh.py
*/
// Arguments from rules in chrome_tests.gypi are passed in through
// python script gypv8sh.py.
if (arguments.length != 6) {
print('usage: ' +
arguments[0] +
' path-to-testfile.js testfile.js path_to_deps.js output.cc test-type');
quit(-1);
}
/**
* Full path to the test input file.
* @type {string}
*/
var jsFile = arguments[1];
/**
* Relative path to the test input file appropriate for use in the
* C++ TestFixture's addLibrary method.
* @type {string}
*/
var jsFileBase = arguments[2];
/**
* Path to Closure library style deps.js file.
* @type {string?}
*/
var depsFile = arguments[3];
/**
* Path to C++ file generation is outputting to.
* @type {string}
*/
var outputFile = arguments[4];
/**
* Type of this test.
* @type {string} ('extension' | 'unit' | 'webui')
*/
var testType = arguments[5];
if (testType != 'extension' &&
testType != 'unit' &&
testType != 'webui') {
print('Invalid test type: ' + testType);
quit(-1);
}
/**
* C++ gtest macro to use for TEST_F depending on |testType|.
* @type {string} ('TEST_F'|'IN_PROC_BROWSER_TEST_F')
*/
var testF;
/**
* Keeps track of whether a typedef has been generated for each test
* fixture.
* @type {Object<string>}
*/
var typedeffedCppFixtures = {};
/**
* Maintains a list of relative file paths to add to each gtest body
* for inclusion at runtime before running each JavaScript test.
* @type {Array<string>}
*/
var genIncludes = [];
/**
* When true, add calls to set_preload_test_(fixture|name). This is needed when
* |testType| === 'webui' to send an injection message before the page loads,
* but is not required or supported by any other test type.
* @type {boolean}
*/
var addSetPreloadInfo;
/**
* Whether cc headers need to be generated.
* @type {boolean}
*/
var needGenHeader = true;
/**
* Helpful hint pointing back to the source js.
* @type {string}
*/
var argHint = '// ' + this['arguments'].join(' ');
/**
* Generates the header of the cc file to stdout.
* @param {string?} testFixture Name of test fixture.
*/
function maybeGenHeader(testFixture) {
if (!needGenHeader)
return;
needGenHeader = false;
print('// GENERATED FILE');
print(argHint);
print('// PLEASE DO NOT HAND EDIT!');
print();
// Output some C++ headers based upon the |testType|.
//
// Currently supports:
// 'extension' - browser_tests harness, js2extension rule,
// ExtensionJSBrowserTest superclass.
// 'unit' - unit_tests harness, js2unit rule, V8UnitTest superclass.
// 'webui' - browser_tests harness, js2webui rule, WebUIBrowserTest
// superclass.
if (testType === 'extension') {
print('#include "chrome/test/base/extension_js_browser_test.h"');
testing.Test.prototype.typedefCppFixture = 'ExtensionJSBrowserTest';
addSetPreloadInfo = false;
testF = 'IN_PROC_BROWSER_TEST_F';
} else if (testType === 'unit') {
print('#include "chrome/test/base/v8_unit_test.h"');
testing.Test.prototype.typedefCppFixture = 'V8UnitTest';
testF = 'TEST_F';
addSetPreloadInfo = false;
} else {
print('#include "chrome/test/base/web_ui_browser_test.h"');
testing.Test.prototype.typedefCppFixture = 'WebUIBrowserTest';
testF = 'IN_PROC_BROWSER_TEST_F';
addSetPreloadInfo = true;
}
print('#include "url/gurl.h"');
print('#include "testing/gtest/include/gtest/gtest.h"');
// Add includes specified by test fixture.
if (testFixture) {
if (this[testFixture].prototype.testGenCppIncludes)
this[testFixture].prototype.testGenCppIncludes();
if (this[testFixture].prototype.commandLineSwitches)
print('#include "base/command_line.h"');
}
print();
}
/**
* @type {Array<{path: string, base: string>}
*/
var pathStack = [];
/**
* Convert the |includeFile| to paths appropriate for immediate
* inclusion (path) and runtime inclusion (base).
* @param {string} includeFile The file to include.
* @return {{path: string, base: string}} Object describing the paths
* for |includeFile|. |path| is relative to cwd; |base| is relative to
* source root.
*/
function includeFileToPaths(includeFile) {
paths = pathStack[pathStack.length - 1];
return {
path: paths.path.replace(/[^\/\\]+$/, includeFile),
base: paths.base.replace(/[^\/\\]+$/, includeFile),
};
}
/**
* Maps object names to the path to the file that provides them.
* Populated from the |depsFile| if any.
* @type {Object<string>}
*/
var dependencyProvidesToPaths = {};
/**
* Maps dependency path names to object names required by the file.
* Populated from the |depsFile| if any.
* @type {Object<Array<string>>}
*/
var dependencyPathsToRequires = {};
if (depsFile) {
var goog = goog || {};
/**
* Called by the javascript in the deps file to add modules and their
* dependencies.
* @param {string} path Relative path to the file.
* @param Array<string> provides Objects provided by this file.
* @param Array<string> requires Objects required by this file.
*/
goog.addDependency = function(path, provides, requires) {
provides.forEach(function(provide) {
dependencyProvidesToPaths[provide] = path;
});
dependencyPathsToRequires[path] = requires;
};
// Read and eval the deps file. It should only contain goog.addDependency
// calls.
eval(read(depsFile));
}
/**
* Resolves a list of libraries to an ordered list of paths to load by the
* generated C++. The input should contain object names provided
* by the deps file. Dependencies will be resolved and included in the
* correct order, meaning that the returned array may contain more entries
* than the input.
* @param {Array<string>} deps List of dependencies.
* @return {Array<string>} List of paths to load.
*/
function resolveClosureModuleDeps(deps) {
if (!depsFile && deps.length > 0) {
print('Can\'t have closure dependencies without a deps file.');
quit(-1);
}
var resultPaths = [];
var addedPaths = {};
function addPath(path) {
addedPaths[path] = true;
resultPaths.push(path);
}
function resolveAndAppend(path) {
if (addedPaths[path]) {
return;
}
// Set before recursing to catch cycles.
addedPaths[path] = true;
dependencyPathsToRequires[path].forEach(function(require) {
var providingPath = dependencyProvidesToPaths[require];
if (!providingPath) {
print('Unknown object', require, 'required by', path);
quit(-1);
}
resolveAndAppend(providingPath);
});
resultPaths.push(path);
}
// Always add closure library's base.js if provided by deps.
var basePath = dependencyProvidesToPaths['goog'];
if (basePath) {
addPath(basePath);
}
deps.forEach(function(dep) {
var providingPath = dependencyProvidesToPaths[dep];
if (providingPath) {
resolveAndAppend(providingPath);
} else {
print('Unknown dependency:', dep);
quit(-1);
}
});
return resultPaths;
}
/**
* Output |code| verbatim.
* @param {string} code The code to output.
*/
function GEN(code) {
maybeGenHeader(null);
print(code);
}
/**
* Outputs |commentEncodedCode|, converting comment to enclosed C++ code.
* @param {function} commentEncodedCode A function in the following format (note
* the space in '/ *' and '* /' should be removed to form a comment delimiter):
* function() {/ *! my_cpp_code.DoSomething(); * /
* Code between / *! and * / will be extracted and written to stdout.
*/
function GEN_BLOCK(commentEncodedCode) {
var code = commentEncodedCode.toString().
replace(/^[^\/]+\/\*!?/, '').
replace(/\*\/[^\/]+$/, '').
replace(/^\n|\n$/, '').
replace(/\s+$/, '');
GEN(code);
}
/**
* Generate includes for the current |jsFile| by including them
* immediately and at runtime.
* The paths must be relative to the directory of the current file.
* @param {Array<string>} includes Paths to JavaScript files to
* include immediately and at runtime.
*/
function GEN_INCLUDE(includes) {
for (var i = 0; i < includes.length; i++) {
var includePaths = includeFileToPaths(includes[i]);
var js = read(includePaths.path);
pathStack.push(includePaths);
('global', eval)(js);
pathStack.pop();
genIncludes.push(includePaths.base);
}
}
/**
* Generate gtest-style TEST_F definitions for C++ with a body that
* will invoke the |testBody| for |testFixture|.|testFunction|.
* @param {string} testFixture The name of this test's fixture.
* @param {string} testFunction The name of this test's function.
* @param {Function} testBody The function body to execute for this test.
*/
function TEST_F(testFixture, testFunction, testBody) {
maybeGenHeader(testFixture);
var browsePreload = this[testFixture].prototype.browsePreload;
var browsePrintPreload = this[testFixture].prototype.browsePrintPreload;
var testGenPreamble = this[testFixture].prototype.testGenPreamble;
var testGenPostamble = this[testFixture].prototype.testGenPostamble;
var typedefCppFixture = this[testFixture].prototype.typedefCppFixture;
var isAsyncParam = testType === 'unit' ? '' :
this[testFixture].prototype.isAsync + ', ';
var testShouldFail = this[testFixture].prototype.testShouldFail;
var testPredicate = testShouldFail ? 'ASSERT_FALSE' : 'ASSERT_TRUE';
var extraLibraries = genIncludes.concat(
this[testFixture].prototype.extraLibraries.map(
function(includeFile) {
return includeFileToPaths(includeFile).base;
}),
resolveClosureModuleDeps(this[testFixture].prototype.closureModuleDeps));
if (typedefCppFixture && !(testFixture in typedeffedCppFixtures)) {
var switches = this[testFixture].prototype.commandLineSwitches;
if (!switches || !switches.length || typedefCppFixture == 'V8UnitTest') {
print('typedef ' + typedefCppFixture + ' ' + testFixture + ';');
} else {
// Make the testFixture a class inheriting from the base fixture.
print('class ' + testFixture + ' : public ' + typedefCppFixture + ' {');
print(' private:');
// Override SetUpCommandLine and add each switch.
print(' void');
print(' SetUpCommandLine(base::CommandLine* command_line) override {');
for (var i = 0; i < switches.length; i++) {
print(' command_line->AppendSwitchASCII(');
print(' "' + switches[i].switchName + '",');
print(' "' + (switches[i].switchValue || '') + '");');
}
print(' }');
print('};');
}
typedeffedCppFixtures[testFixture] = typedefCppFixture;
}
print(testF + '(' + testFixture + ', ' + testFunction + ') {');
for (var i = 0; i < extraLibraries.length; i++) {
print(' AddLibrary(base::FilePath(FILE_PATH_LITERAL("' +
extraLibraries[i].replace(/\\/g, '/') + '")));');
}
print(' AddLibrary(base::FilePath(FILE_PATH_LITERAL("' +
jsFileBase.replace(/\\/g, '/') + '")));');
if (addSetPreloadInfo) {
print(' set_preload_test_fixture("' + testFixture + '");');
print(' set_preload_test_name("' + testFunction + '");');
}
if (testGenPreamble)
testGenPreamble(testFixture, testFunction);
if (browsePreload)
print(' BrowsePreload(GURL("' + browsePreload + '"));');
if (browsePrintPreload) {
print(' BrowsePrintPreload(GURL(WebUITestDataPathToURL(\n' +
' FILE_PATH_LITERAL("' + browsePrintPreload + '"))));');
}
print(' ' + testPredicate + '(RunJavascriptTestF(' + isAsyncParam +
'"' + testFixture + '", ' +
'"' + testFunction + '"));');
if (testGenPostamble)
testGenPostamble(testFixture, testFunction);
print('}');
print();
}
// Now that generation functions are defined, load in |jsFile|.
var js = read(jsFile);
pathStack.push({path: jsFile, base: jsFileBase});
eval(js);
pathStack.pop();
|