Bug 1431533: Part 4 - Add ESLint support for ChromeUtils import methods. r?florian draft
authorKris Maglione <maglione.k@gmail.com>
Thu, 18 Jan 2018 12:53:01 -0800
changeset 723883 e6571b91f68022653889e8bdf7da7a9e3bb24367
parent 723882 f01a298948f94b79447ef0b525c91774ee84b9f3
child 723884 5fdf4f6832b2997b79d9f1b7c7f1e4fe7cbcf7c2
push id96567
push usermaglione.k@gmail.com
push dateWed, 24 Jan 2018 00:47:30 +0000
reviewersflorian
bugs1431533
milestone59.0a1
Bug 1431533: Part 4 - Add ESLint support for ChromeUtils import methods. r?florian This adds support for detecting globals created by these helpers, as well as a rule to enforce their use over the older XPConnect variants. The latter rule also supports fixing code to use the newer variants, and will be used in the next part to rewrite in-tree ESLint-enabled code that fails it. MozReview-Commit-ID: 6Bgo6ohQA5j
devtools/.eslintrc.js
tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js
tools/lint/eslint/eslint-plugin-mozilla/lib/helpers.js
tools/lint/eslint/eslint-plugin-mozilla/lib/index.js
tools/lint/eslint/eslint-plugin-mozilla/lib/rules/use-chromeutils-import.js
tools/lint/eslint/eslint-plugin-mozilla/tests/use-chromeutils-import.js
--- a/devtools/.eslintrc.js
+++ b/devtools/.eslintrc.js
@@ -44,16 +44,17 @@ module.exports = {
     "mozilla/no-single-arg-cu-import": "error",
     // See bug 1224289.
     "mozilla/reject-importGlobalProperties": "error",
     // devtools/shared/platform is special; see the README.md in that
     // directory for details.  We reject requires using explicit
     // subdirectories of this directory.
     "mozilla/reject-some-requires": ["error", "^devtools/shared/platform/(chome|content)/"],
     "mozilla/var-only-at-top-level": "error",
+    "mozilla/use-chromeutils-import": ["error", {allowCu: true}],
 
     // Rules from the React plugin
     "react/display-name": "error",
     "react/no-danger": "error",
     "react/no-did-mount-set-state": "error",
     "react/no-did-update-set-state": "error",
     "react/no-direct-mutation-state": "error",
     "react/no-unknown-property": "error",
--- a/tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js
@@ -156,16 +156,17 @@ module.exports = {
     "max-nested-callbacks": ["error", 10],
 
     "mozilla/avoid-removeChild": "error",
     "mozilla/import-browser-window-globals": "error",
     "mozilla/import-globals": "error",
     "mozilla/no-import-into-var-and-global": "error",
     "mozilla/no-useless-parameters": "error",
     "mozilla/no-useless-removeEventListener": "error",
+    "mozilla/use-chromeutils-import": "error",
     "mozilla/use-default-preference-values": "error",
     "mozilla/use-ownerGlobal": "error",
     "mozilla/use-services": "error",
 
     // Always require parenthesis for new calls
     // "new-parens": "error",
 
     // Use [] instead of Array()
--- a/tools/lint/eslint/eslint-plugin-mozilla/lib/helpers.js
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/helpers.js
@@ -18,16 +18,17 @@ var directoryManifests = new Map();
 
 const callExpressionDefinitions = [
   /^loader\.lazyGetter\(this, "(\w+)"/,
   /^loader\.lazyImporter\(this, "(\w+)"/,
   /^loader\.lazyServiceGetter\(this, "(\w+)"/,
   /^loader\.lazyRequireGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineLazyGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineLazyModuleGetter\(this, "(\w+)"/,
+  /^ChromeUtils\.defineModuleGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineLazyPreferenceGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineLazyScriptGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineLazyServiceGetter\(this, "(\w+)"/,
   /^XPCOMUtils\.defineConstant\(this, "(\w+)"/,
   /^DevToolsUtils\.defineLazyModuleGetter\(this, "(\w+)"/,
   /^DevToolsUtils\.defineLazyGetter\(this, "(\w+)"/,
   /^Object\.defineProperty\(this, "(\w+)"/,
   /^Reflect\.defineProperty\(this, "(\w+)"/,
@@ -35,17 +36,17 @@ const callExpressionDefinitions = [
 ];
 
 const callExpressionMultiDefinitions = [
   "XPCOMUtils.defineLazyModuleGetters(this,",
   "XPCOMUtils.defineLazyServiceGetters(this,"
 ];
 
 const imports = [
-  /^(?:Cu|Components\.utils)\.import\(".*\/((.*?)\.jsm?)"(?:, this)?\)/
+  /^(?:Cu|Components\.utils|ChromeUtils)\.import\(".*\/((.*?)\.jsm?)"(?:, this)?\)/
 ];
 
 const workerImportFilenameMatch = /(.*\/)*(.*?\.jsm?)/;
 
 module.exports = {
   get modulesGlobalData() {
     if (!gModules) {
       if (this.isMozillaCentralBased()) {
--- a/tools/lint/eslint/eslint-plugin-mozilla/lib/index.js
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/index.js
@@ -55,17 +55,18 @@ module.exports = {
       require("../lib/rules/no-useless-run-test"),
     "reject-importGlobalProperties":
       require("../lib/rules/reject-importGlobalProperties"),
     "reject-some-requires": require("../lib/rules/reject-some-requires"),
     "use-default-preference-values":
       require("../lib/rules/use-default-preference-values"),
     "use-ownerGlobal": require("../lib/rules/use-ownerGlobal"),
     "use-services": require("../lib/rules/use-services"),
-    "var-only-at-top-level": require("../lib/rules/var-only-at-top-level")
+    "var-only-at-top-level": require("../lib/rules/var-only-at-top-level"),
+    "use-chromeutils-import": require("../lib/rules/use-chromeutils-import")
   },
   rulesConfig: {
     "avoid-Date-timing": "off",
     "avoid-removeChild": "off",
     "balanced-listeners": "off",
     "import-browser-window-globals": "off",
     "import-content-task-globals": "off",
     "import-globals": "off",
@@ -80,11 +81,12 @@ module.exports = {
     "no-useless-parameters": "off",
     "no-useless-run-test": "off",
     "no-useless-removeEventListener": "off",
     "reject-importGlobalProperties": "off",
     "reject-some-requires": "off",
     "use-default-preference-values": "off",
     "use-ownerGlobal": "off",
     "use-services": "off",
-    "var-only-at-top-level": "off"
+    "var-only-at-top-level": "off",
+    "use-chromeutils-import": "off"
   }
 };
new file mode 100644
--- /dev/null
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/rules/use-chromeutils-import.js
@@ -0,0 +1,81 @@
+/**
+ * @fileoverview Reject use of Cu.import and XPCOMUtils.defineLazyModuleGetter
+ *               in favor of ChromeUtils.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+"use strict";
+
+// -----------------------------------------------------------------------------
+// Rule Definition
+// -----------------------------------------------------------------------------
+
+function isIdentifier(node, id) {
+  return node && node.type === "Identifier" && node.name === id;
+}
+
+function isMemberExpression(node, object, member) {
+  return (node.type === "MemberExpression" &&
+          isIdentifier(node.object, object) &&
+          isIdentifier(node.property, member));
+}
+
+module.exports = {
+  meta: {
+    schema: [
+      {
+        "type": "object",
+        "properties": {
+          "allowCu": {
+            "type": "boolean"
+          }
+        },
+        "additionalProperties": false
+      }
+    ],
+    fixable: "code"
+  },
+
+  create(context) {
+    return {
+      "CallExpression": function(node) {
+        if (node.callee.type !== "MemberExpression") {
+          return;
+        }
+
+        let {allowCu} = context.options[0] || {};
+
+        let {callee} = node;
+
+        // Is the expression starting with `Cu` or `Components.utils`?
+        let isCu = ((!allowCu && isIdentifier(callee.object, "Cu")) ||
+                    isMemberExpression(callee.object, "Components", "utils"));
+
+        if (isCu && isIdentifier(callee.property, "import")) {
+          context.report({
+            node,
+            message: "Please use ChromeUtils.import instead of Cu.import",
+            fix(fixer) {
+              return fixer.replaceText(callee, "ChromeUtils.import");
+            }
+          });
+        }
+
+        if (isMemberExpression(callee, "XPCOMUtils", "defineLazyModuleGetter") &&
+            node.arguments.length < 4) {
+          context.report({
+            node,
+            message: ("Please use ChromeUtils.defineModuleGetter instead of " +
+                      "XPCOMUtils.defineLazyModuleGetter"),
+            fix(fixer) {
+              return fixer.replaceText(callee, "ChromeUtils.defineModuleGetter");
+            }
+          });
+        }
+      }
+    };
+  }
+};
new file mode 100644
--- /dev/null
+++ b/tools/lint/eslint/eslint-plugin-mozilla/tests/use-chromeutils-import.js
@@ -0,0 +1,80 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+// ------------------------------------------------------------------------------
+// Requirements
+// ------------------------------------------------------------------------------
+
+var rule = require("../lib/rules/use-chromeutils-import");
+var RuleTester = require("eslint/lib/testers/rule-tester");
+
+const ruleTester = new RuleTester({ parserOptions: { ecmaVersion: 6 } });
+
+// ------------------------------------------------------------------------------
+// Tests
+// ------------------------------------------------------------------------------
+
+function callError(message) {
+  return [{message, type: "CallExpression"}];
+}
+
+const MESSAGE_IMPORT = "Please use ChromeUtils.import instead of Cu.import";
+const MESSAGE_DEFINE = ("Please use ChromeUtils.defineModuleGetter instead of " +
+                        "XPCOMUtils.defineLazyModuleGetter");
+
+ruleTester.run("use-chromeutils-import", rule, {
+  valid: [
+    `ChromeUtils.import("resource://gre/modules/Service.jsm");`,
+    `ChromeUtils.import("resource://gre/modules/Service.jsm", this);`,
+    `ChromeUtils.defineModuleGetter(this, "Services",
+                                    "resource://gre/modules/Service.jsm");`,
+    `XPCOMUtils.defineLazyModuleGetter(this, "Services",
+                                       "resource://gre/modules/Service.jsm",
+                                       "Foo");`,
+    `XPCOMUtils.defineLazyModuleGetter(this, "Services",
+                                       "resource://gre/modules/Service.jsm",
+                                       undefined, preServicesLambda);`,
+    {
+      options: [{allowCu: true}],
+      code: `Cu.import("resource://gre/modules/Service.jsm");`
+    }
+  ],
+  invalid: [
+    {
+      code: `Cu.import("resource://gre/modules/Services.jsm");`,
+      output: `ChromeUtils.import("resource://gre/modules/Services.jsm");`,
+      errors: callError(MESSAGE_IMPORT)
+    },
+    {
+      code: `Cu.import("resource://gre/modules/Services.jsm", this);`,
+      output: `ChromeUtils.import("resource://gre/modules/Services.jsm", this);`,
+      errors: callError(MESSAGE_IMPORT)
+    },
+    {
+      code: `Components.utils.import("resource://gre/modules/Services.jsm");`,
+      output: `ChromeUtils.import("resource://gre/modules/Services.jsm");`,
+      errors: callError(MESSAGE_IMPORT)
+    },
+    {
+      code: `Components.utils.import("resource://gre/modules/Services.jsm");`,
+      output: `ChromeUtils.import("resource://gre/modules/Services.jsm");`,
+      errors: callError(MESSAGE_IMPORT)
+    },
+    {
+      options: [{allowCu: true}],
+      code: `Components.utils.import("resource://gre/modules/Services.jsm", this);`,
+      output: `ChromeUtils.import("resource://gre/modules/Services.jsm", this);`,
+      errors: callError(MESSAGE_IMPORT)
+    },
+    {
+      code: `XPCOMUtils.defineLazyModuleGetter(this, "Services",
+                                               "resource://gre/modules/Services.jsm");`,
+      output: `ChromeUtils.defineModuleGetter(this, "Services",
+                                               "resource://gre/modules/Services.jsm");`,
+      errors: callError(MESSAGE_DEFINE)
+    }
+  ]
+});
+