blob: 6a655c1e500fc68611d9434f30d87d59e74a51bb [file] [log] [blame]
Josh Habermane9f31ee2016-02-04 10:29:27 -08001/**
Josh Habermand6a186a2016-02-04 14:58:45 -08002 * @fileoverview Utility to translate test files to CommonJS imports.
3 *
4 * This is a somewhat hacky tool designed to do one very specific thing.
5 * All of the test files in *_test.js are written with Closure-style
6 * imports (goog.require()). This works great for running the tests
7 * against Closure-style generated code, but we also want to run the
8 * tests against CommonJS-style generated code without having to fork
9 * the tests.
10 *
11 * Closure-style imports import each individual type by name. This is
12 * very different than CommonJS imports which are by file. So we put
13 * special comments in these tests like:
14 *
15 * // CommonJS-LoadFromFile: test_pb
16 * goog.require('proto.jspb.test.CloneExtension');
17 * goog.require('proto.jspb.test.Complex');
18 * goog.require('proto.jspb.test.DefaultValues');
19 *
20 * This script parses that special comment and uses it to generate proper
21 * CommonJS require() statements so that the tests can run and pass using
22 * CommonJS imports.
Josh Habermane9f31ee2016-02-04 10:29:27 -080023 */
24
25var lineReader = require('readline').createInterface({
26 input: process.stdin,
27 output: process.stdout
28});
29
Josh Haberman77af5d02016-02-04 16:11:07 -080030function tryStripPrefix(str, prefix) {
31 if (str.lastIndexOf(prefix) !== 0) {
32 throw "String: " + str + " didn't start with: " + prefix;
33 }
34 return str.substr(prefix.length);
35}
36
Josh Habermane9f31ee2016-02-04 10:29:27 -080037var module = null;
Josh Haberman77af5d02016-02-04 16:11:07 -080038var pkg = null;
Josh Habermane9f31ee2016-02-04 10:29:27 -080039lineReader.on('line', function(line) {
Josh Haberman77af5d02016-02-04 16:11:07 -080040 var is_require = line.match(/goog\.require\('([^']*)'\)/);
41 var is_loadfromfile = line.match(/CommonJS-LoadFromFile: ([^ ]*) (.*)/);
Josh Habermane9f31ee2016-02-04 10:29:27 -080042 var is_settestonly = line.match(/goog.setTestOnly()/);
43 if (is_settestonly) {
44 // Remove this line.
45 } else if (is_require) {
46 if (module) { // Skip goog.require() lines before the first directive.
Josh Haberman77af5d02016-02-04 16:11:07 -080047 var full_sym = is_require[1];
48 var sym = tryStripPrefix(full_sym, pkg);
49 console.log("google_protobuf.exportSymbol('" + full_sym + "', " + module + sym + ', global);');
Josh Habermane9f31ee2016-02-04 10:29:27 -080050 }
51 } else if (is_loadfromfile) {
52 if (!module) {
Josh Haberman77af5d02016-02-04 16:11:07 -080053 console.log("var google_protobuf = require('google-protobuf');");
Josh Habermane9f31ee2016-02-04 10:29:27 -080054 console.log("var asserts = require('closure_asserts_commonjs');");
55 console.log("var global = Function('return this')();");
56 console.log("");
57 console.log("// Bring asserts into the global namespace.");
Josh Haberman77af5d02016-02-04 16:11:07 -080058 console.log("google_protobuf.object.extend(global, asserts);");
Josh Habermane9f31ee2016-02-04 10:29:27 -080059 }
60 module = is_loadfromfile[1].replace("-", "_");
Josh Haberman77af5d02016-02-04 16:11:07 -080061 pkg = is_loadfromfile[2];
Josh Habermane9f31ee2016-02-04 10:29:27 -080062
63 if (module != "google_protobuf") { // We unconditionally require this in the header.
64 console.log("var " + module + " = require('" + is_loadfromfile[1] + "');");
65 }
66 } else {
67 console.log(line);
68 }
69});