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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require("../lib/rules/use-isInstance");
var RuleTester = require("eslint").RuleTester;
const ruleTester = new RuleTester({ parserOptions: { ecmaVersion: "latest" } });
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
const errors = [
{
messageId: "preferIsInstance",
type: "BinaryExpression",
},
];
const env = { browser: true };
/**
* A test case boilerplate simulating chrome privileged script.
* @param {string} code
*/
function mockChromeScript(code) {
return {
code,
filename: "foo.sys.mjs",
env,
};
}
/**
* A test case boilerplate simulating content script.
* @param {string} code
*/
function mockContentScript(code) {
return {
code,
filename: "foo.js",
env,
};
}
ruleTester.run("use-isInstance", rule, {
valid: [
mockChromeScript("(() => {}) instanceof Function;"),
mockChromeScript("({}) instanceof Object;"),
mockChromeScript("Node instanceof Object;"),
mockChromeScript("node instanceof lazy.Node;"),
mockChromeScript("var Node;node instanceof Node;"),
mockChromeScript("file instanceof lazy.File;"),
mockChromeScript("file instanceof OS.File;"),
mockChromeScript("file instanceof OS.File.Error;"),
mockChromeScript("file instanceof lazy.OS.File;"),
mockChromeScript("file instanceof lazy.OS.File.Error;"),
mockChromeScript("file instanceof lazy.lazy.OS.File;"),
mockChromeScript("var File;file instanceof File;"),
mockChromeScript("foo instanceof RandomGlobalThing;"),
mockChromeScript("foo instanceof lazy.RandomGlobalThing;"),
mockContentScript("node instanceof Node;"),
mockContentScript("file instanceof File;"),
mockContentScript(
"SpecialPowers.ChromeUtils.import(''); file instanceof File;"
),
],
invalid: [
{
code: "node instanceof Node",
output: "Node.isInstance(node)",
env,
errors,
filename: "foo.sys.mjs",
},
{
code: "text instanceof win.Text",
output: "win.Text.isInstance(text)",
errors,
filename: "foo.sys.mjs",
},
{
code: "target instanceof this.contentWindow.HTMLAudioElement",
output: "this.contentWindow.HTMLAudioElement.isInstance(target)",
errors,
filename: "foo.sys.mjs",
},
{
code: "target instanceof File",
output: "File.isInstance(target)",
env,
errors,
filename: "foo.sys.mjs",
},
{
code: "target instanceof win.File",
output: "win.File.isInstance(target)",
errors,
filename: "foo.sys.mjs",
},
{
code: "window.arguments[0] instanceof window.XULElement",
output: "window.XULElement.isInstance(window.arguments[0])",
errors,
filename: "foo.sys.mjs",
},
{
code: "ChromeUtils.import(''); node instanceof Node",
output: "ChromeUtils.import(''); Node.isInstance(node)",
env,
errors,
filename: "foo.js",
},
{
code: "ChromeUtils.import(''); file instanceof File",
output: "ChromeUtils.import(''); File.isInstance(file)",
env,
errors,
filename: "foo.js",
},
],
});
|