summaryrefslogtreecommitdiffstats
path: root/devtools/client/memory/test/xpcshell/test_dominator_trees_09.js
blob: b87964970e1ff20d2a1c1f0e5744d208fc48b33c (plain)
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that we can change the display with which we describe a dominator tree
// while the dominator tree is in the middle of being fetched.

const {
  dominatorTreeState,
  viewState,
  labelDisplays,
  treeMapState,
} = require("resource://devtools/client/memory/constants.js");
const {
  setLabelDisplayAndRefresh,
} = require("resource://devtools/client/memory/actions/label-display.js");
const {
  changeView,
} = require("resource://devtools/client/memory/actions/view.js");
const {
  takeSnapshotAndCensus,
} = require("resource://devtools/client/memory/actions/snapshot.js");

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.DOMINATOR_TREE));

  dispatch(takeSnapshotAndCensus(front, heapWorker));
  await waitUntilCensusState(store, s => s.treeMap, [treeMapState.SAVED]);
  ok(
    !getState().snapshots[0].dominatorTree,
    "There shouldn't be a dominator tree model yet since it is not computed " +
      "until we switch to the dominators view."
  );

  // Wait for the dominator tree to start fetching.
  await waitUntilState(
    store,
    state =>
      state.snapshots[0] &&
      state.snapshots[0].dominatorTree &&
      state.snapshots[0].dominatorTree.state === dominatorTreeState.FETCHING
  );

  ok(
    getState().labelDisplay,
    "We have a default display for describing nodes in a dominator tree"
  );
  equal(
    getState().labelDisplay,
    labelDisplays.coarseType,
    "and the default is coarse type"
  );
  equal(
    getState().labelDisplay,
    getState().snapshots[0].dominatorTree.display,
    "and the newly computed dominator tree has that display"
  );

  // Switch to the allocationStack display while we are still fetching the
  // dominator tree.
  dispatch(
    setLabelDisplayAndRefresh(heapWorker, labelDisplays.allocationStack)
  );

  // Wait for the dominator tree to finish being fetched.
  await waitUntilState(
    store,
    state =>
      state.snapshots[0].dominatorTree.state === dominatorTreeState.LOADED
  );

  equal(
    getState().snapshots[0].dominatorTree.display,
    labelDisplays.allocationStack,
    "The new dominator tree's display is allocationStack"
  );
  equal(
    getState().labelDisplay,
    labelDisplays.allocationStack,
    "as is our requested dominator tree display"
  );

  heapWorker.destroy();
  await front.detach();
});