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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require("../lib/rules/use-static-import");
var RuleTester = require("eslint").RuleTester;
const ruleTester = new RuleTester({
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
});
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
function callError() {
return [{ messageId: "useStaticImport", type: "VariableDeclaration" }];
}
ruleTester.run("use-static-import", rule, {
valid: [
{
// Already converted, no issues.
code: 'import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs";',
filename: "test.sys.mjs",
},
{
// Inside an if statement.
code: 'if (foo) { const { XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs") }',
filename: "test.sys.mjs",
},
{
// Inside a function.
code: 'function foo() { const { XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs") }',
filename: "test.sys.mjs",
},
{
// importESModule with two args cannot be converted.
code: 'const { f } = ChromeUtils.importESModule("some/module.sys.mjs", { loadInDevToolsLoader : true });',
filename: "test.sys.mjs",
},
{
// A non-system file attempting to import a system file should not be
// converted.
code: 'const { XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs")',
filename: "test.mjs",
},
],
invalid: [
{
// Simple import in system module should be converted.
code: 'const { XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs")',
errors: callError(),
filename: "test.sys.mjs",
output:
'import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs"',
},
{
// Should handle rewritten variables as well.
code: 'const { XPCOMUtils: foo } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs")',
errors: callError(),
filename: "test.sys.mjs",
output:
'import { XPCOMUtils as foo } from "resource://gre/modules/XPCOMUtils.sys.mjs"',
},
{
// Should handle multiple variables.
code: 'const { foo, XPCOMUtils } = ChromeUtils.importESModule("resource://gre/modules/XPCOMUtils.sys.mjs")',
errors: callError(),
filename: "test.sys.mjs",
output:
'import { foo, XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs"',
},
],
});
|