summaryrefslogtreecommitdiffstats
path: root/devtools/client/performance/test/unit/test_tree-model-12.js
blob: fde96e3498fe3bddaaf6b98b672b72675e11332c (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
93
94
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Test that uninverting the call tree works correctly when there are stacks
// in the profile that prefixes of other stacks.

function run_test() {
  run_next_test();
}

add_task(function () {
  let { ThreadNode } = require("devtools/client/performance/modules/logic/tree-model");
  let thread = new ThreadNode(gThread, { startTime: 0, endTime: 50 });
  let root = getFrameNodePath(thread, "(root)");

  /**
   * Samples
   *
   * A->B
   * C->B
   * B
   * A
   * Z->Y->X
   * W->Y->X
   * Y->X
   */

  equal(getFrameNodePath(root, "A > B").youngestFrameSamples, 1,
        "A > B has the correct self count");
  equal(getFrameNodePath(root, "C > B").youngestFrameSamples, 1,
        "C > B has the correct self count");
  equal(getFrameNodePath(root, "B").youngestFrameSamples, 1,
        "B has the correct self count");
  equal(getFrameNodePath(root, "A").youngestFrameSamples, 1,
        "A has the correct self count");
  equal(getFrameNodePath(root, "Z > Y > X").youngestFrameSamples, 1,
        "Z > Y > X has the correct self count");
  equal(getFrameNodePath(root, "W > Y > X").youngestFrameSamples, 1,
        "W > Y > X has the correct self count");
  equal(getFrameNodePath(root, "Y > X").youngestFrameSamples, 1,
        "Y > X has the correct self count");
});

var gThread = synthesizeProfileForTest([{
  time: 5,
  frames: [
    { location: "(root)" },
    { location: "A" },
    { location: "B" },
  ]
}, {
  time: 10,
  frames: [
    { location: "(root)" },
    { location: "C" },
    { location: "B" },
  ]
}, {
  time: 15,
  frames: [
    { location: "(root)" },
    { location: "B" },
  ]
}, {
  time: 20,
  frames: [
    { location: "(root)" },
    { location: "A" },
  ]
}, {
  time: 21,
  frames: [
    { location: "(root)" },
    { location: "Z" },
    { location: "Y" },
    { location: "X" },
  ]
}, {
  time: 22,
  frames: [
    { location: "(root)" },
    { location: "W" },
    { location: "Y" },
    { location: "X" },
  ]
}, {
  time: 23,
  frames: [
    { location: "(root)" },
    { location: "Y" },
    { location: "X" },
  ]
}]);