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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests that flame graph data is cached, and that the cache may be cleared.
const {
FlameGraphUtils,
} = require("devtools/client/shared/widgets/FlameGraph");
add_task(async function() {
await addTab("about:blank");
await performTest();
gBrowser.removeCurrentTab();
});
function performTest() {
const out1 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA);
const out2 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA);
is(out1, out2, "The outputted data is identical.");
const out3 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA, {
flattenRecursion: true,
});
is(out2, out3, "The outputted data is still identical.");
FlameGraphUtils.removeFromCache(TEST_DATA);
const out4 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA, {
flattenRecursion: true,
});
isnot(out3, out4, "The outputted data is not identical anymore.");
}
var TEST_DATA = synthesizeProfileForTest([
{
frames: [
{
location: "A",
},
{
location: "A",
},
{
location: "A",
},
{
location: "B",
},
{
location: "B",
},
{
location: "C",
},
],
time: 50,
},
]);
|