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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests the task creator `setCensusDisplayAndRefreshAndRefresh()` for custom
* displays.
*/
const {
censusState,
viewState,
} = require("resource://devtools/client/memory/constants.js");
const {
setCensusDisplayAndRefresh,
} = require("resource://devtools/client/memory/actions/census-display.js");
const {
takeSnapshotAndCensus,
} = require("resource://devtools/client/memory/actions/snapshot.js");
const {
changeView,
} = require("resource://devtools/client/memory/actions/view.js");
const CUSTOM = {
displayName: "Custom",
tooltip: "Custom tooltip",
inverted: false,
breakdown: {
by: "internalType",
then: { by: "count", bytes: true, count: false },
},
};
add_task(async function () {
const front = new StubbedMemoryFront();
const heapWorker = new HeapAnalysesClient();
await front.attach();
const store = Store();
const { getState, dispatch } = store;
dispatch(changeView(viewState.CENSUS));
dispatch(setCensusDisplayAndRefresh(heapWorker, CUSTOM));
equal(
getState().censusDisplay,
CUSTOM,
"CUSTOM display stored in display state."
);
dispatch(takeSnapshotAndCensus(front, heapWorker));
await waitUntilCensusState(store, s => s.census, [censusState.SAVED]);
equal(
getState().snapshots[0].census.display,
CUSTOM,
"New snapshot stored CUSTOM display when done taking census"
);
ok(
getState().snapshots[0].census.report.children.length,
"Census has some children"
);
// Ensure we don't have `count` in any results
ok(
getState().snapshots[0].census.report.children.every(c => !c.count),
"Census used CUSTOM display without counts"
);
// Ensure we do have `bytes` in the results
ok(
getState().snapshots[0].census.report.children.every(
c => typeof c.bytes === "number"
),
"Census used CUSTOM display with bytes"
);
});
|