summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_filters.js
blob: 8eb5369261edd02da9b073edc2de338813fd901d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Tests filters.

"use strict";

const { MESSAGE_LEVEL } = require("devtools/client/webconsole/new-console-output/constants");

const TEST_URI = "http://example.com/browser/devtools/client/webconsole/new-console-output/test/mochitest/test-console-filters.html";

add_task(function* () {
  let hud = yield openNewTabAndConsole(TEST_URI);
  const outputNode = hud.ui.experimentalOutputNode;

  const toolbar = yield waitFor(() => {
    return outputNode.querySelector(".webconsole-filterbar-primary");
  });
  ok(toolbar, "Toolbar found");

  // Show the filter bar
  toolbar.querySelector(".devtools-filter-icon").click();
  const filterBar = yield waitFor(() => {
    return outputNode.querySelector(".webconsole-filterbar-secondary");
  });
  ok(filterBar, "Filter bar is shown when filter icon is clicked.");

  // Check defaults.
  Object.values(MESSAGE_LEVEL).forEach(level => {
    ok(filterIsEnabled(filterBar.querySelector(`.${level}`)),
      `Filter button for ${level} is on by default`);
  });
  ["net", "netxhr"].forEach(category => {
    ok(!filterIsEnabled(filterBar.querySelector(`.${category}`)),
      `Filter button for ${category} is off by default`);
  });

  // Check that messages are shown as expected. This depends on cached messages being
  // shown.
  ok(findMessages(hud, "").length == 5,
    "Messages of all levels shown when filters are on.");

  // Check that messages are not shown when their filter is turned off.
  filterBar.querySelector(".error").click();
  yield waitFor(() => findMessages(hud, "").length == 4);
  ok(true, "When a filter is turned off, its messages are not shown.");

  // Check that the ui settings were persisted.
  yield closeTabAndToolbox();
  yield testFilterPersistence();
});

function filterIsEnabled(button) {
  return button.classList.contains("checked");
}

function* testFilterPersistence() {
  let hud = yield openNewTabAndConsole(TEST_URI);
  const outputNode = hud.ui.experimentalOutputNode;
  const filterBar = yield waitFor(() => {
    return outputNode.querySelector(".webconsole-filterbar-secondary");
  });
  ok(filterBar, "Filter bar ui setting is persisted.");

  // Check that the filter settings were persisted.
  ok(!filterIsEnabled(filterBar.querySelector(".error")),
    "Filter button setting is persisted");
  ok(findMessages(hud, "").length == 4,
    "Messages of all levels shown when filters are on.");
}