gecko-dev/browser/devtools/performance/test/browser_perf-allocations-to-samples.js

103 lines
1.9 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests if allocations data received from the memory actor is properly
* converted to something that follows the same structure as the samples data
* received from the profiler.
*/
function test() {
let RecordingUtils = devtools.require("devtools/performance/recording-utils");
let output = RecordingUtils.getProfileThreadFromAllocations(TEST_DATA);
is(output.toSource(), EXPECTED_OUTPUT.toSource(), "The output is correct.");
finish();
}
let TEST_DATA = {
sites: [0, 0, 1, 2, 3],
timestamps: [50, 100, 150, 200, 250],
frames: [
null, {
source: "A",
line: 1,
column: 2,
functionDisplayName: "x",
parent: 0
}, {
source: "B",
line: 3,
column: 4,
functionDisplayName: "y",
parent: 1
}, {
source: "C",
line: 5,
column: 6,
functionDisplayName: null,
parent: 2
}
],
counts: [11, 22, 33, 44]
};
let EXPECTED_OUTPUT = {
name: "allocations",
samples: {
"schema": {
"stack": 0,
"time": 1,
"responsiveness": 2,
"rss": 3,
"uss": 4,
"frameNumber": 5,
"power": 6
},
data: [
[ 1, 150 ],
[ 2, 200 ],
[ 3, 250 ]
]
},
stackTable: {
"schema": {
"prefix": 0,
"frame": 1
},
"data": [
null,
[ null, 1 ], // x (A:1:2)
[ 1, 2 ], // x (A:1:2) > y (B:3:4)
[ 2, 3 ] // x (A:1:2) > y (B:3:4) > C:5:6
]
},
frameTable: {
"schema": {
"location": 0,
"implementation": 1,
"optimizations": 2,
"line": 3,
"category": 4
},
data: [
null,
[ 0 ],
[ 1 ],
[ 2 ]
]
},
"stringTable": [
"x (A:1:2)",
"y (B:3:4)",
"C:5:6"
],
"allocationsTable": [
11,
22,
33,
44
]
};