forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplayName.spec.js
More file actions
129 lines (107 loc) · 3.78 KB
/
Copy pathdisplayName.spec.js
File metadata and controls
129 lines (107 loc) · 3.78 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
/* 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/>. */
// @flow
import {
formatCopyName,
formatDisplayName,
simplifyDisplayName
} from "../displayName";
import { makeMockFrame, makeMockSource } from "../../../test-mockup";
describe("formatCopyName", () => {
it("simple", () => {
const source = makeMockSource("todo-view.js");
const frame = makeMockFrame(undefined, source, undefined, 12, "child");
expect(formatCopyName(frame, L10N)).toEqual("child (todo-view.js#12)");
});
});
describe("formatting display names", () => {
it("uses a library description", () => {
const source = makeMockSource("assets/backbone.js");
const frame = {
...makeMockFrame(undefined, source, undefined, undefined, "extend/child"),
library: "Backbone"
};
expect(formatDisplayName(frame, undefined, L10N)).toEqual("Create Class");
});
it("shortens an anonymous function", () => {
const source = makeMockSource("assets/bar.js");
const frame = makeMockFrame(
undefined,
source,
undefined,
undefined,
"extend/child/bar/baz"
);
expect(formatDisplayName(frame, undefined, L10N)).toEqual("baz");
});
it("does not truncates long function names", () => {
const source = makeMockSource("extend/child/bar/baz");
const frame = makeMockFrame(
undefined,
source,
undefined,
undefined,
"bazbazbazbazbazbazbazbazbazbazbazbazbaz"
);
expect(formatDisplayName(frame, undefined, L10N)).toEqual(
"bazbazbazbazbazbazbazbazbazbazbazbazbaz"
);
});
it("returns the original function name when present", () => {
const source = makeMockSource("entry.js");
const frame = {
...makeMockFrame(undefined, source),
originalDisplayName: "originalFn",
displayName: "fn"
};
expect(formatDisplayName(frame, undefined, L10N)).toEqual("originalFn");
});
it("returns anonymous when displayName is undefined", () => {
const frame = { ...makeMockFrame(), displayName: undefined };
expect(formatDisplayName(frame, undefined, L10N)).toEqual("<anonymous>");
});
it("returns anonymous when displayName is null", () => {
const frame = { ...makeMockFrame(), displayName: (null: any) };
expect(formatDisplayName(frame, undefined, L10N)).toEqual("<anonymous>");
});
it("returns anonymous when displayName is an empty string", () => {
const frame = { ...makeMockFrame(), displayName: "" };
expect(formatDisplayName(frame, undefined, L10N)).toEqual("<anonymous>");
});
});
describe("simplifying display names", () => {
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 => {
cases[type].forEach(([kase, expected]) => {
it(`${type} - ${kase}`, () =>
expect(simplifyDisplayName(kase)).toEqual(expected));
});
});
});