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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests if the profiler's tree view, when inverted, displays the self and
* total costs correctly.
*/
const {
ThreadNode,
} = require("devtools/client/performance/modules/logic/tree-model");
const {
CallView,
} = require("devtools/client/performance/modules/widgets/tree-view");
const RecordingUtils = require("devtools/shared/performance/recording-utils");
add_task(function() {
const threadNode = new ThreadNode(gProfile.threads[0], {
startTime: 0,
endTime: 50,
invertTree: true,
});
const treeRoot = new CallView({ frame: threadNode, inverted: true });
const container = document.createXULElement("vbox");
treeRoot.attachTo(container);
// Add 1 to each index to skip the hidden root node
const $$nam = i =>
container.querySelectorAll(
".call-tree-cell[type=function] > .call-tree-name"
)[i + 1];
const $$per = i =>
container.querySelectorAll(".call-tree-cell[type=percentage]")[i + 1];
const $$selfper = i =>
container.querySelectorAll(".call-tree-cell[type='self-percentage']")[
i + 1
];
/**
* Samples:
*
* A->C
* A->B
* A->B->C x4
* A->B->D x4
*
* Expected:
*
* +--total--+--self--+--tree----+
* | 50% | 50% | C |
* | 40% | 0 | -> B |
* | 30% | 0 | -> A |
* | 10% | 0 | -> A |
* | 40% | 40% | D |
* | 40% | 0 | -> B |
* | 40% | 0 | -> A |
* | 10% | 10% | B |
* | 10% | 0 | -> A |
* +---------+--------+----------+
*/
is(
container.childNodes.length,
10,
"The container node should have all children available."
);
// total, self, indent + name
[
[50, 50, "C"],
[40, 0, " B"],
[30, 0, " A"],
[10, 0, " A"],
[40, 40, "D"],
[40, 0, " B"],
[40, 0, " A"],
[10, 10, "B"],
[10, 0, " A"],
].forEach(function(def, i) {
info(`Checking ${i}th tree item.`);
let [total, self, name] = def;
name = name.trim();
is($$nam(i).textContent.trim(), name, `${name} has correct name.`);
is(
$$per(i).textContent.trim(),
`${total}%`,
`${name} has correct total percent.`
);
is(
$$selfper(i).textContent.trim(),
`${self}%`,
`${name} has correct self percent.`
);
});
});
const gProfile = RecordingUtils.deflateProfile({
meta: { version: 2 },
threads: [
{
samples: [
{
time: 5,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "C" },
],
},
{
time: 10,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "D" },
],
},
{
time: 15,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "C" },
],
},
{
time: 20,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
],
},
{
time: 25,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "C" },
],
},
{
time: 30,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "C" },
],
},
{
time: 35,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "D" },
],
},
{
time: 40,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "D" },
],
},
{
time: 45,
frames: [
{ location: "(root)" },
{ location: "B" },
{ location: "C" },
],
},
{
time: 50,
frames: [
{ location: "(root)" },
{ location: "A" },
{ location: "B" },
{ location: "D" },
],
},
],
},
],
});
|