blob: 5c806f1b294a85c149b8ceb7b8027b4e38d46dcb [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(
`Tests Summary view of detailed heap snapshots. Shown node count must be preserved after sorting.\n`);
await TestRunner.loadModule('heap_profiler_test_runner');
await TestRunner.showPanel('heap_profiler');
var instanceCount = 25;
function createHeapSnapshot() {
return HeapProfilerTestRunner.createHeapSnapshot(instanceCount);
}
HeapProfilerTestRunner.runHeapSnapshotTestSuite([function testExpansionPreservedWhenSorting(next) {
HeapProfilerTestRunner.takeAndOpenSnapshot(createHeapSnapshot, step1);
function step1() {
HeapProfilerTestRunner.switchToView('Summary', step2);
}
var columns;
function step2() {
columns = HeapProfilerTestRunner.viewColumns();
HeapProfilerTestRunner.clickColumn(columns[0], step3);
}
function step3() {
var row = HeapProfilerTestRunner.findRow('B');
TestRunner.assertEquals(true, !!row, '"B" row');
HeapProfilerTestRunner.expandRow(row, showNext);
function showNext(row) {
var buttonsNode = HeapProfilerTestRunner.findButtonsNode(row);
TestRunner.assertEquals(true, !!buttonsNode, 'no buttons node found!');
HeapProfilerTestRunner.clickShowMoreButton('showNext', buttonsNode, step4);
}
}
var nodeCount;
function step4(row) {
// There must be enough nodes to have some unrevealed.
var buttonsNode = HeapProfilerTestRunner.findButtonsNode(row);
TestRunner.assertEquals(true, !!buttonsNode, 'no buttons node found!');
nodeCount = HeapProfilerTestRunner.columnContents(columns[0]).length;
TestRunner.assertEquals(true, nodeCount > 0, 'nodeCount > 0');
HeapProfilerTestRunner.clickColumn(columns[0], clickTwice);
function clickTwice() {
HeapProfilerTestRunner.clickColumn(columns[0], step6);
}
}
function step6() {
var newNodeCount = HeapProfilerTestRunner.columnContents(columns[0]).length;
TestRunner.assertEquals(nodeCount, newNodeCount);
setTimeout(next, 0);
}
}]);
})();