Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/_common.js

Issue 29354864: Issue 4223 - Migrate some more of adblockplustests (Closed)
Patch Set: Addressed final nit Created Oct. 4, 2016, 12:16 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « package.json ('k') | test/cssRules.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/_common.js
diff --git a/test/_common.js b/test/_common.js
new file mode 100644
index 0000000000000000000000000000000000000000..2dd24fdd3acf55ed58e367aee9659e85036b47c5
--- /dev/null
+++ b/test/_common.js
@@ -0,0 +1,104 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2016 Eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+"use strict";
+
+let fs = require("fs");
+let path = require("path");
+let SandboxedModule = require("sandboxed-module");
+
+let globals = {
+ atob: data => new Buffer(data, "base64").toString("binary"),
+ btoa: data => new Buffer(data, "binary").toString("base64"),
+ Ci: {
+ },
+ Cu: {
+ import: () =>
+ {
+ }
+ },
+ navigator: {
+ },
+ onShutdown: {
+ add: () =>
+ {
+ }
+ },
+ Services: {
+ obs: {
+ addObserver: () =>
+ {
+ }
+ }
+ },
+ XPCOMUtils: {
+ generateQI: () =>
+ {
+ }
+ }
+};
+
+let knownModules = new Map();
+for (let dir of [path.join(__dirname, "stub-modules"),
+ path.join(__dirname, "..", "lib")])
+ for (let file of fs.readdirSync(path.resolve(dir)))
+ if (path.extname(file) == ".js")
+ knownModules[path.basename(file, ".js")] = path.resolve(dir, file);
+
+function addExports(exports)
+{
+ return function(source)
+ {
+ let extraExports = exports[path.basename(this.filename, ".js")];
+ if (extraExports)
+ for (let name of extraExports)
+ source += `
+ Object.defineProperty(exports, "${name}", {get: () => ${name}});`;
+ return source;
+ };
+}
+
+function rewriteRequires(source)
+{
+ function escapeString(str)
+ {
+ return str.replace(/(["'\\])/g, "\\$1");
+ }
+
+ return source.replace(/(\brequire\(["'])([^"']+)/g, (match, prefix, request) =>
+ {
+ if (request in knownModules)
+ return prefix + escapeString(knownModules[request]);
+ return match;
+ });
+}
+
+exports.createSandbox = function(extraExports)
+{
+ let sourceTransformers = [rewriteRequires];
+ if (extraExports)
+ sourceTransformers.push(addExports(extraExports));
+
+ // This module loads itself into a sandbox, keeping track of the require
+ // function which can be used to load further modules into the sandbox.
+ return SandboxedModule.require("./_common", {
+ globals: globals,
+ sourceTransformers: sourceTransformers
+ }).require;
+};
+
+exports.require = require;
« no previous file with comments | « package.json ('k') | test/cssRules.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld