summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_toolbox_window_shortcuts.js
blob: 53cea3a55ae55ed34711daea7ec9ac062397baf5 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

var Startup = Cc["@mozilla.org/devtools/startup-clh;1"].getService(
  Ci.nsISupports
).wrappedJSObject;
var { Toolbox } = require("resource://devtools/client/framework/toolbox.js");

var toolbox,
  toolIDs,
  toolShortcuts = [],
  idIndex,
  modifiedPrefs = [];

async function test() {
  addTab("about:blank").then(async function () {
    toolIDs = [];
    for (const [id, definition] of gDevTools._tools) {
      const shortcut = Startup.KeyShortcuts.filter(s => s.toolId == id)[0];
      if (!shortcut) {
        continue;
      }
      toolIDs.push(id);
      toolShortcuts.push(shortcut);

      // Enable disabled tools
      const pref = definition.visibilityswitch;
      if (pref) {
        const prefValue = Services.prefs.getBoolPref(pref, false);
        if (!prefValue) {
          modifiedPrefs.push(pref);
          Services.prefs.setBoolPref(pref, true);
        }
      }
    }
    const tab = gBrowser.selectedTab;
    idIndex = 0;
    gDevTools
      .showToolboxForTab(tab, {
        toolId: toolIDs[0],
        hostType: Toolbox.HostType.WINDOW,
      })
      .then(testShortcuts);
  });
}

function testShortcuts(aToolbox, aIndex) {
  if (aIndex === undefined) {
    aIndex = 1;
  } else if (aIndex == toolIDs.length) {
    tidyUp();
    return;
  }

  toolbox = aToolbox;
  info("Toolbox fired a `ready` event");

  toolbox.once("select", selectCB);

  const shortcut = toolShortcuts[aIndex];
  const key = shortcut.shortcut;
  const toolModifiers = shortcut.modifiers;
  const modifiers = {
    accelKey: toolModifiers.includes("accel"),
    altKey: toolModifiers.includes("alt"),
    shiftKey: toolModifiers.includes("shift"),
  };
  idIndex = aIndex;
  info(
    "Testing shortcut for tool " +
      aIndex +
      ":" +
      toolIDs[aIndex] +
      " using key " +
      key
  );
  EventUtils.synthesizeKey(key, modifiers, toolbox.win.parent);
}

function selectCB(id) {
  info("toolbox-select event from " + id);

  is(
    toolIDs.indexOf(id),
    idIndex,
    "Correct tool is selected on pressing the shortcut for " + id
  );

  testShortcuts(toolbox, idIndex + 1);
}

function tidyUp() {
  toolbox.destroy().then(function () {
    gBrowser.removeCurrentTab();

    for (const pref of modifiedPrefs) {
      Services.prefs.clearUserPref(pref);
    }
    toolbox = toolIDs = idIndex = modifiedPrefs = Toolbox = null;
    finish();
  });
}