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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that the waterfall collapsing works when atleast two
* collapsible markers downward, and the following marker is outside of both ranges.
*/
add_task(function test() {
const WaterfallUtils = require("devtools/client/performance/modules/logic/waterfall-utils");
const rootMarkerNode = WaterfallUtils.createParentNode({ name: "(root)" });
WaterfallUtils.collapseMarkersIntoNode({
rootNode: rootMarkerNode,
markersList: gTestMarkers,
});
function compare(marker, expected) {
for (const prop in expected) {
if (prop === "submarkers") {
for (let i = 0; i < expected.submarkers.length; i++) {
compare(marker.submarkers[i], expected.submarkers[i]);
}
} else if (prop !== "uid") {
equal(marker[prop], expected[prop], `${expected.name} matches ${prop}`);
}
}
}
compare(rootMarkerNode, gExpectedOutput);
});
const gTestMarkers = [
{ start: 2, end: 10, name: "DOMEvent" },
{ start: 3, end: 9, name: "Javascript" },
{ start: 4, end: 8, name: "GarbageCollection" },
{ start: 11, end: 12, name: "Styles" },
{ start: 13, end: 14, name: "Styles" },
{ start: 15, end: 25, name: "DOMEvent" },
{ start: 17, end: 24, name: "Javascript" },
{ start: 18, end: 19, name: "GarbageCollection" },
];
const gExpectedOutput = {
name: "(root)",
submarkers: [
{
start: 2,
end: 10,
name: "DOMEvent",
submarkers: [
{
start: 3,
end: 9,
name: "Javascript",
submarkers: [{ start: 4, end: 8, name: "GarbageCollection" }],
},
],
},
{ start: 11, end: 12, name: "Styles" },
{ start: 13, end: 14, name: "Styles" },
{
start: 15,
end: 25,
name: "DOMEvent",
submarkers: [
{
start: 17,
end: 24,
name: "Javascript",
submarkers: [{ start: 18, end: 19, name: "GarbageCollection" }],
},
],
},
],
};
|