blob: d6c12359c45527692e3390efa6439f80e69b5081 [file] [log] [blame]
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="heap-snapshot-test.js"></script>
<script>
function test()
{
var instanceCount = 25;
function createHeapSnapshot()
{
return InspectorTest.createHeapSnapshot(instanceCount);
}
InspectorTest.runHeapSnapshotTestSuite([
function testSorting(next)
{
InspectorTest.takeAndOpenSnapshot(createHeapSnapshot, step1);
function step1()
{
InspectorTest.switchToView("Summary", step2);
}
var columns;
var currentColumn;
var currentColumnOrder;
function step2()
{
columns = InspectorTest.viewColumns();
currentColumn = 0;
currentColumnOrder = false;
setTimeout(step3, 0);
}
function step3()
{
if (currentColumn >= columns.length) {
setTimeout(next, 0);
return;
}
InspectorTest.clickColumn(columns[currentColumn], step4);
}
function step4(newColumnState)
{
columns[currentColumn] = newColumnState;
var contents = InspectorTest.columnContents(columns[currentColumn]);
InspectorTest.assertEquals(true, !!contents.length, "column contents");
var sortTypes = { object: "text", distanceToWindow: "number", count: "number", shallowSize: "size", retainedSize: "size" };
InspectorTest.assertEquals(true, !!sortTypes[columns[currentColumn].identifier], "sort by identifier");
InspectorTest.checkArrayIsSorted(contents, sortTypes[columns[currentColumn].identifier], columns[currentColumn].sort);
if (!currentColumnOrder)
currentColumnOrder = true;
else {
currentColumnOrder = false;
++currentColumn;
}
setTimeout(step3, 0);
}
}
]);
}
</script>
</head>
<body onload="runTest()">
<p>
Tests sorting in Summary view of detailed heap snapshots.
</p>
</body>
</html>