Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 1 | /** |
Josh Haberman | d6a186a | 2016-02-04 14:58:45 -0800 | [diff] [blame] | 2 | * @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 Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | var lineReader = require('readline').createInterface({ |
| 26 | input: process.stdin, |
| 27 | output: process.stdout |
| 28 | }); |
| 29 | |
Josh Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 30 | function 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 Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 37 | var module = null; |
Josh Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 38 | var pkg = null; |
Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 39 | lineReader.on('line', function(line) { |
Josh Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 40 | var is_require = line.match(/goog\.require\('([^']*)'\)/); |
| 41 | var is_loadfromfile = line.match(/CommonJS-LoadFromFile: ([^ ]*) (.*)/); |
Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 42 | 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 Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 47 | 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 Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 50 | } |
| 51 | } else if (is_loadfromfile) { |
| 52 | if (!module) { |
Josh Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 53 | console.log("var google_protobuf = require('google-protobuf');"); |
Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 54 | 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 Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 58 | console.log("google_protobuf.object.extend(global, asserts);"); |
Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 59 | } |
| 60 | module = is_loadfromfile[1].replace("-", "_"); |
Josh Haberman | 77af5d0 | 2016-02-04 16:11:07 -0800 | [diff] [blame^] | 61 | pkg = is_loadfromfile[2]; |
Josh Haberman | e9f31ee | 2016-02-04 10:29:27 -0800 | [diff] [blame] | 62 | |
| 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 | }); |