summaryrefslogtreecommitdiffstats
path: root/devtools/client/aboutdebugging/test/browser_addons_toggle_debug.js
blob: 1f67cac5bcb5b78d76a05a21d8df046ded867e0c (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Test that individual Debug buttons are disabled when "Addons debugging"
// is disabled.
// Test that the buttons are updated dynamically if the preference changes.

const ADDON_ID = "test-devtools@mozilla.org";
const ADDON_NAME = "test-devtools";

add_task(function* () {
  info("Turn off addon debugging.");
  yield new Promise(resolve => {
    let options = {"set": [
      ["devtools.chrome.enabled", false],
      ["devtools.debugger.remote-enabled", false],
    ]};
    SpecialPowers.pushPrefEnv(options, resolve);
  });

  let { tab, document } = yield openAboutDebugging("addons");
  yield waitForInitialAddonList(document);

  info("Install a test addon.");
  yield installAddon({
    document,
    path: "addons/unpacked/install.rdf",
    name: ADDON_NAME,
  });

  let addonDebugCheckbox = document.querySelector("#enable-addon-debugging");
  ok(!addonDebugCheckbox.checked, "Addons debugging should be disabled.");

  info("Check all debug buttons are disabled.");
  let debugButtons = [...document.querySelectorAll("#addons .debug-button")];
  ok(debugButtons.every(b => b.disabled), "Debug buttons should be disabled");

  info("Click on 'Enable addons debugging' checkbox.");
  let addonsContainer = document.getElementById("addons");
  let onAddonsMutation = waitForMutation(addonsContainer,
    { subtree: true, attributes: true });
  addonDebugCheckbox.click();
  yield onAddonsMutation;

  info("Check all debug buttons are enabled.");
  ok(addonDebugCheckbox.checked, "Addons debugging should be enabled.");
  debugButtons = [...document.querySelectorAll("#addons .debug-button")];
  ok(debugButtons.every(b => !b.disabled), "Debug buttons should be enabled");

  info("Click again on 'Enable addons debugging' checkbox.");
  onAddonsMutation = waitForMutation(addonsContainer,
    { subtree: true, attributes: true });
  addonDebugCheckbox.click();
  yield onAddonsMutation;

  info("Check all debug buttons are disabled again.");
  debugButtons = [...document.querySelectorAll("#addons .debug-button")];
  ok(debugButtons.every(b => b.disabled), "Debug buttons should be disabled");

  info("Uninstall addon installed earlier.");
  yield uninstallAddon({document, id: ADDON_ID, name: ADDON_NAME});

  yield closeAboutDebugging(tab);
});