forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction.js
More file actions
432 lines (393 loc) · 13.2 KB
/
Copy pathfunction.js
File metadata and controls
432 lines (393 loc) · 13.2 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/* 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/>. */
/* global jest */
const { shallow } = require("enzyme");
const { REPS } = require("../rep");
const { MODE } = require("../constants");
const { Func } = REPS;
const { getFunctionName } = Func;
const stubs = require("../stubs/function");
const { expectActorAttribute } = require("./test-helpers");
const renderRep = (object, props) => {
return shallow(Func.rep({ object, ...props }));
};
describe("Function - Named", () => {
// Test declaration: `function testName() { let innerVar = "foo" }`
const object = stubs.get("Named");
it("renders named function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"function testName()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function testName()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function testName(a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function testName(a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY
}).text()
).toBe("testName()");
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("testName(a, b, c)");
expectActorAttribute(renderRep(object), object.actor);
});
});
describe("Function - User named", () => {
// Test declaration: `function testName() { let innerVar = "foo" }`
const object = stubs.get("UserNamed");
it("renders user named function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"function testUserName()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function testUserName()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function testUserName(a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function testUserName(a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY
}).text()
).toBe("testUserName()");
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("testUserName(a, b, c)");
});
});
describe("Function - Var named", () => {
// Test declaration: `let testVarName = function() { }`
const object = stubs.get("VarNamed");
it("renders var named function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"function testVarName()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function testVarName()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function testVarName(a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function testVarName(a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY
}).text()
).toBe("testVarName()");
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("testVarName(a, b, c)");
});
});
describe("Function - Anonymous", () => {
// Test declaration: `() => {}`
const object = stubs.get("Anon");
it("renders anonymous function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe("function ()");
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function ()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function (a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function (a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY
}).text()
).toBe("()");
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("(a, b, c)");
});
});
describe("Function - Long name", () => {
// eslint-disable-next-line max-len
// Test declaration: `let f = function loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong() { }`
const object = stubs.get("LongName");
const functionName =
"looooooooooooooooooooooooooooooooooooooooooooooo" +
"oo\u2026ooooooooooooooooooooooooooooooooooooooooooooooong";
it("renders long name function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
`function ${functionName}()`
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
`function ${functionName}()`
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
`function ${functionName}(a)`
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
`function ${functionName}(a, b, c)`
);
expect(
renderRep(object, {
mode: MODE.TINY
}).text()
).toBe(`${functionName}()`);
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe(`${functionName}(a, b, c)`);
});
});
describe("Function - Async function", () => {
const object = stubs.get("AsyncFunction");
it("renders async function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"async function waitUntil2017()"
);
expect(renderRep(object, { mode: MODE.TINY }).text()).toBe(
"async waitUntil2017()"
);
expect(renderRep(object, { mode: MODE.SHORT }).text()).toBe(
"async function waitUntil2017()"
);
expect(renderRep(object, { mode: MODE.LONG }).text()).toBe(
"async function waitUntil2017()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"async function waitUntil2017()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"async function waitUntil2017(a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"async function waitUntil2017(a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("async waitUntil2017(a, b, c)");
});
});
describe("Function - Anonymous async function", () => {
const object = stubs.get("AnonAsyncFunction");
it("renders anonymous async function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"async function ()"
);
expect(renderRep(object, { mode: MODE.TINY }).text()).toBe("async ()");
expect(renderRep(object, { mode: MODE.SHORT }).text()).toBe(
"async function ()"
);
expect(renderRep(object, { mode: MODE.LONG }).text()).toBe(
"async function ()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"async function ()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"async function (a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"async function (a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("async (a, b, c)");
});
});
describe("Function - Generator function", () => {
const object = stubs.get("GeneratorFunction");
it("renders generator function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe(
"function* fib()"
);
expect(renderRep(object, { mode: MODE.TINY }).text()).toBe("* fib()");
expect(renderRep(object, { mode: MODE.SHORT }).text()).toBe(
"function* fib()"
);
expect(renderRep(object, { mode: MODE.LONG }).text()).toBe(
"function* fib()"
);
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function* fib()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function* fib(a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function* fib(a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("* fib(a, b, c)");
});
});
describe("Function - Anonymous generator function", () => {
const object = stubs.get("AnonGeneratorFunction");
it("renders anonymous generator function as expected", () => {
expect(renderRep(object, { mode: undefined }).text()).toBe("function* ()");
expect(renderRep(object, { mode: MODE.TINY }).text()).toBe("* ()");
expect(renderRep(object, { mode: MODE.SHORT }).text()).toBe("function* ()");
expect(renderRep(object, { mode: MODE.LONG }).text()).toBe("function* ()");
expect(renderRep(object, { parameterNames: [] }).text()).toBe(
"function* ()"
);
expect(renderRep(object, { parameterNames: ["a"] }).text()).toBe(
"function* (a)"
);
expect(renderRep(object, { parameterNames: ["a", "b", "c"] }).text()).toBe(
"function* (a, b, c)"
);
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"]
}).text()
).toBe("* (a, b, c)");
});
});
describe("Function - Jump to definition", () => {
it("renders an icon when onViewSourceInDebugger props is provided", () => {
const onViewSourceInDebugger = jest.fn();
const object = stubs.get("getRandom");
const renderedComponent = renderRep(object, {
onViewSourceInDebugger
});
const node = renderedComponent.find(".jump-definition");
node.simulate("click", {
type: "click",
stopPropagation: () => {}
});
expect(node.exists()).toBeTruthy();
expect(onViewSourceInDebugger.mock.calls).toHaveLength(1);
expect(onViewSourceInDebugger.mock.calls[0][0]).toEqual(object.location);
});
it("no icon when onViewSourceInDebugger props not provided", () => {
const object = stubs.get("getRandom");
const renderedComponent = renderRep(object);
const node = renderedComponent.find(".jump-definition");
expect(node.exists()).toBeFalsy();
});
it("does not render an icon when the object has no location", () => {
const object = {
...stubs.get("getRandom"),
location: null
};
const renderedComponent = renderRep(object, {
onViewSourceInDebugger: () => {}
});
const node = renderedComponent.find(".jump-definition");
expect(node.exists()).toBeFalsy();
});
it("does not render an icon when the object has no url location", () => {
const object = {
...stubs.get("getRandom")
};
object.location.url = null;
const renderedComponent = renderRep(object, {
onViewSourceInDebugger: () => {}
});
const node = renderedComponent.find(".jump-definition");
expect(node.exists()).toBeFalsy();
});
it("no icon when function was declared in console input", () => {
const object = stubs.get("EvaledInDebuggerFunction");
const renderedComponent = renderRep(object, {
onViewSourceInDebugger: () => {}
});
const node = renderedComponent.find(".jump-definition");
expect(node.exists()).toBeFalsy();
});
});
describe("Function - Simplify name", () => {
const cases = {
defaultCase: [["define", "define"]],
objectProperty: [
["z.foz", "foz"],
["z.foz/baz", "baz"],
["z.foz/baz/y.bay", "bay"],
["outer/x.fox.bax.nx", "nx"],
["outer/fow.baw", "baw"],
["fromYUI._attach", "_attach"],
["Y.ClassNameManager</getClassName", "getClassName"],
["orion.textview.TextView</addHandler", "addHandler"],
["this.eventPool_.createObject", "createObject"]
],
arrayProperty: [
["this.eventPool_[createObject]", "createObject"],
["jQuery.each(^)/jQuery.fn[o]", "o"],
["viewport[get+D]", "get+D"],
["arr[0]", "0"]
],
functionProperty: [
["fromYUI._attach/<.", "_attach"],
["Y.ClassNameManager<", "ClassNameManager"],
["fromExtJS.setVisible/cb<", "cb"],
["fromDojo.registerWin/<", "registerWin"]
],
annonymousProperty: [["jQuery.each(^)", "each"]]
};
Object.keys(cases).forEach(type => {
for (const [kase, expected] of cases[type]) {
it(`${type} - ${kase}`, () =>
expect(getFunctionName({ displayName: kase })).toEqual(expected));
}
});
});
describe("Function - Two properties with same displayName", () => {
const object = stubs.get("ObjectProperty");
it("renders object properties as expected", () => {
expect(
renderRep(object, { mode: undefined, functionName: "$" }).text()
).toBe("function $:jQuery()");
expect(
renderRep(object, { parameterNames: [], functionName: "$" }).text()
).toBe("function $:jQuery()");
expect(
renderRep(object, { parameterNames: ["a"], functionName: "$" }).text()
).toBe("function $:jQuery(a)");
expect(
renderRep(object, {
parameterNames: ["a", "b", "c"],
functionName: "$"
}).text()
).toBe("function $:jQuery(a, b, c)");
expect(
renderRep(object, {
mode: MODE.TINY,
parameterNames: ["a", "b", "c"],
functionName: "$"
}).text()
).toBe("$:jQuery(a, b, c)");
});
});