summaryrefslogtreecommitdiffstats
path: root/devtools/client/performance/test/browser_timeline-filters-02.js
blob: f9ab00711913a4ccacb37b13eb8629b80baa053c (plain)
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/* eslint-disable */
/**
 * Tests markers filtering mechanism.
 */

const URL = EXAMPLE_URL + "doc_innerHTML.html";

function* spawnTest() {
  let { panel } = yield initPerformance(URL);
  let { $, $$, EVENTS, PerformanceController, OverviewView, WaterfallView } = panel.panelWin;

  yield startRecording(panel);
  ok(true, "Recording has started.");

  yield waitUntil(() => {
    let markers = PerformanceController.getCurrentRecording().getMarkers();
    return markers.some(m => m.name == "Parse HTML") &&
           markers.some(m => m.name == "Javascript");
  });

  let waterfallRendered = WaterfallView.once(EVENTS.UI_WATERFALL_RENDERED);
  yield stopRecording(panel);

  $("#filter-button").click();
  let filterJS = $("menuitem[marker-type=Javascript]");

  yield waterfallRendered;

  ok($(".waterfall-marker-bar[type=Javascript]"), "Found at least one 'Javascript' marker");
  ok(!$(".waterfall-marker-bar[type='Parse HTML']"), "Found no Parse HTML markers as they are nested still");

  EventUtils.synthesizeMouseAtCenter(filterJS, {type: "mouseup"}, panel.panelWin);
  yield Promise.all([
    WaterfallView.once(EVENTS.UI_WATERFALL_RENDERED),
    once(filterJS, "command")
  ]);

  ok(!$(".waterfall-marker-bar[type=Javascript]"), "Javascript markers are all hidden.");
  ok($(".waterfall-marker-bar[type='Parse HTML']"),
    "Found at least one 'Parse HTML' marker still visible after hiding JS markers");

  yield teardown(panel);
  finish();
}
/* eslint-enable */