blob: b4125fae2ac0be3951c253dc5576bb1de3ab4edb [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="/tracing/core/test_utils.html">
<link rel="import" href="/tracing/model/event_set.html">
<link rel="import" href="/tracing/model/model.html">
<link rel="import" href="/tracing/ui/analysis/analysis_view.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
var Model = tr.Model;
var EventSet = tr.model.EventSet;
var TestUtils = tr.c.TestUtils;
test('analyzeSelectionWithSingleEvent', function() {
var model = TestUtils.newModel(function(model) {
model.p1 = model.getOrCreateProcess(1);
model.t2 = model.p1.getOrCreateThread(model.p1);
model.sA = model.t2.sliceGroup.pushSlice(TestUtils.newSliceEx({
title: 'a', start: 0, end: 2
}));
model.sB = model.t2.sliceGroup.pushSlice(TestUtils.newSliceEx({
title: 'b', start: 9, end: 11
}));
model.fe = TestUtils.newFlowEventEx({
cat: 'cat',
id: 1234,
title: 'MyFlow',
start: 1,
end: 10,
startSlice: model.sA,
endSlice: model.sB
});
model.flowEvents.push(model.fe);
});
var selection = new EventSet();
selection.push(model.fe);
assert.equal(selection.length, 1);
var subView = document.createElement('tr-ui-a-single-event-sub-view');
subView.isFlow = true;
subView.selection = selection;
this.addHTMLOutput(subView);
});
});
</script>