summaryrefslogtreecommitdiffstats
path: root/devtools/shared/heapsnapshot/tests/xpcshell/test_HeapAnalyses_getDominatorTree_01.js
blob: 9035624ca2cc51edeaa1750fafe4c1fd6470add2 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Test the HeapAnalyses{Client,Worker} "getDominatorTree" request.

const breakdown = {
  by: "coarseType",
  objects: { by: "count", count: true, bytes: true },
  scripts: { by: "count", count: true, bytes: true },
  strings: { by: "count", count: true, bytes: true },
  other: { by: "count", count: true, bytes: true },
  domNode: { by: "count", count: true, bytes: true },
};

add_task(async function () {
  const client = new HeapAnalysesClient();

  const snapshotFilePath = saveNewHeapSnapshot();
  await client.readHeapSnapshot(snapshotFilePath);
  ok(true, "Should have read the heap snapshot");

  const dominatorTreeId = await client.computeDominatorTree(snapshotFilePath);
  equal(
    typeof dominatorTreeId,
    "number",
    "should get a dominator tree id, and it should be a number"
  );

  const partialTree = await client.getDominatorTree({
    dominatorTreeId,
    breakdown,
  });
  ok(partialTree, "Should get a partial tree");
  equal(typeof partialTree, "object", "partialTree should be an object");

  function checkTree(node) {
    equal(typeof node.nodeId, "number", "each node should have an id");

    if (node === partialTree) {
      equal(node.parentId, undefined, "the root has no parent");
    } else {
      equal(
        typeof node.parentId,
        "number",
        "each node should have a parent id"
      );
    }

    equal(
      typeof node.retainedSize,
      "number",
      "each node should have a retained size"
    );

    ok(
      node.children === undefined || Array.isArray(node.children),
      "each node either has a list of children, " +
        "or undefined meaning no children loaded"
    );
    equal(
      typeof node.moreChildrenAvailable,
      "boolean",
      "each node should indicate if there are more children available or not"
    );

    equal(typeof node.shortestPaths, "object", "Should have shortest paths");
    equal(
      typeof node.shortestPaths.nodes,
      "object",
      "Should have shortest paths' nodes"
    );
    equal(
      typeof node.shortestPaths.edges,
      "object",
      "Should have shortest paths' edges"
    );

    if (node.children) {
      node.children.forEach(checkTree);
    }
  }

  checkTree(partialTree);

  client.destroy();
});