1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable */
/**
* Tests if the waterfall remembers the selection when rerendering.
*/
async function spawnTest() {
let { target, panel } = await initPerformance(SIMPLE_URL);
let { $, $$, EVENTS, PerformanceController, OverviewView, WaterfallView } = panel.panelWin;
const MIN_MARKERS_COUNT = 50;
const MAX_MARKERS_SELECT = 20;
await startRecording(panel);
ok(true, "Recording has started.");
let updated = 0;
OverviewView.on(EVENTS.UI_OVERVIEW_RENDERED, () => updated++);
ok((await waitUntil(() => updated > 0)),
"The overview graphs were updated a bunch of times.");
ok((await waitUntil(() => PerformanceController.getCurrentRecording().getMarkers().length > MIN_MARKERS_COUNT)),
"There are some markers available.");
await stopRecording(panel);
ok(true, "Recording has ended.");
let currentMarkers = PerformanceController.getCurrentRecording().getMarkers();
info("Gathered markers: " + JSON.stringify(currentMarkers, null, 2));
let initialBarsCount = $$(".waterfall-marker-bar").length;
info("Initial bars count: " + initialBarsCount);
// Select a portion of the overview.
let rerendered = WaterfallView.once(EVENTS.UI_WATERFALL_RENDERED);
OverviewView.setTimeInterval({ startTime: 0, endTime: currentMarkers[MAX_MARKERS_SELECT].end });
await rerendered;
ok(!$(".waterfall-tree-item:focus"),
"There is no item focused in the waterfall yet.");
ok($("#waterfall-details").hidden,
"The waterfall sidebar is initially hidden.");
// Focus the second item in the tree.
WaterfallView._markersRoot.getChild(1).focus();
let beforeResizeBarsCount = $$(".waterfall-marker-bar").length;
info("Before resize bars count: " + beforeResizeBarsCount);
ok(beforeResizeBarsCount < initialBarsCount,
"A subset of the total markers was selected.");
is(Array.prototype.indexOf.call($$(".waterfall-tree-item"), $(".waterfall-tree-item:focus")), 2,
"The correct item was focused in the tree.");
ok(!$("#waterfall-details").hidden,
"The waterfall sidebar is now visible.");
// Simulate a resize on the marker details.
rerendered = WaterfallView.once(EVENTS.UI_WATERFALL_RENDERED);
await EventUtils.sendMouseEvent({ type: "mouseup" }, WaterfallView.detailsSplitter);
await rerendered;
let afterResizeBarsCount = $$(".waterfall-marker-bar").length;
info("After resize bars count: " + afterResizeBarsCount);
is(afterResizeBarsCount, beforeResizeBarsCount,
"The same subset of the total markers remained visible.");
is(Array.prototype.indexOf.call($$(".waterfall-tree-item"), $(".waterfall-tree-item:focus")), 2,
"The correct item is still focused in the tree.");
ok(!$("#waterfall-details").hidden,
"The waterfall sidebar is still visible.");
await teardown(panel);
finish();
}
/* eslint-enable */
|