/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ /** * Tests that the js call tree view renders the correct columns. */ function* spawnTest() { // This test seems to take a long time to cleanup on Ubuntu VMs. requestLongerTimeout(2); let { panel } = yield initPerformance(SIMPLE_URL); let { EVENTS, $, $$, DetailsView, JsCallTreeView } = panel.panelWin; // Enable platform data to show the `busyWait` function in the tree. Services.prefs.setBoolPref(PLATFORM_DATA_PREF, true); yield startRecording(panel); yield busyWait(1000); let rendered = once(JsCallTreeView, EVENTS.JS_CALL_TREE_RENDERED); yield stopRecording(panel); yield DetailsView.selectView("js-calltree"); ok(DetailsView.isViewSelected(JsCallTreeView), "The call tree is now selected."); yield rendered; testCells($, $$, { "duration": true, "percentage": true, "allocations": false, "self-duration": true, "self-percentage": true, "self-allocations": false, "samples": true, "function": true }); yield teardown(panel); finish(); } function testCells($, $$, visibleCells) { for (let cell in visibleCells) { if (visibleCells[cell]) { ok($(`.call-tree-cell[type=${cell}]`), `At least one ${cell} column was visible in the tree.`); } else { ok(!$(`.call-tree-cell[type=${cell}]`), `No ${cell} columns were visible in the tree.`); } } is($$(".call-tree-cell", $(".call-tree-item")).length, Object.keys(visibleCells).filter(e => visibleCells[e]).length, "The correct number of cells were found in the tree."); }