blob: 2f632e1432b0e34933cb42a3d8eaec088210f8aa [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 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.
-->
<link rel="import" href="/core/analysis/analysis_view.html">
<link rel="import" href="/core/test_utils.html">
<link rel="import" href="/core/selection.html">
<link rel="import" href="/core/trace_model/trace_model.html">
<script>
'use strict';
tv.b.unittest.testSuite(function() {
var TraceModel = tv.c.TraceModel;
var Selection = tv.c.Selection;
var GlobalMemoryDump = tv.c.trace_model.GlobalMemoryDump;
var ProcessMemoryDump = tv.c.trace_model.ProcessMemoryDump;
test('basic', function() {
var m = new TraceModel();
var p = m.getOrCreateProcess(42);
function addProcessMemoryDump(timestamp) {
var gmd = new GlobalMemoryDump(m, timestamp);
m.globalMemoryDumps.push(gmd);
var pmd = new ProcessMemoryDump(gmd, p, timestamp);
p.memoryDumps.push(pmd);
gmd.processMemoryDumps[pmd.pid] = pmd;
return pmd;
}
var d1 = addProcessMemoryDump(5);
var d2 = addProcessMemoryDump(20);
var selection = new Selection();
selection.push(d1);
selection.push(d2);
assert.equal(selection.length, 2);
var subView = document.createElement(
'tv-c-multi-process-memory-dump-sub-view');
subView.selection = selection;
this.addHTMLOutput(subView);
});
});
</script>