summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_toolbox_selected_tool_unavailable.js
blob: c55ad5867c908f68673e3c213c11f90848e66b23 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that opening the toolbox doesn't throw when the previously selected
// tool is not supported.

const testToolDefinition = {
  id: "testTool",
  isToolSupported: () => true,
  visibilityswitch: "devtools.test-tool.enabled",
  url: "about:blank",
  label: "someLabel",
  build: (iframeWindow, toolbox) => {
    return {
      target: toolbox.target,
      toolbox,
      isReady: true,
      destroy: () => {},
      panelDoc: iframeWindow.document,
    };
  },
};

add_task(async function () {
  gDevTools.registerTool(testToolDefinition);
  let tab = await addTab("about:blank");

  let toolbox = await gDevTools.showToolboxForTab(tab, {
    toolId: testToolDefinition.id,
  });
  is(toolbox.currentToolId, "testTool", "test-tool was selected");
  await toolbox.destroy();

  // Make the previously selected tool unavailable.
  testToolDefinition.isToolSupported = () => false;

  toolbox = await gDevTools.showToolboxForTab(tab);
  is(toolbox.currentToolId, "webconsole", "web console was selected");

  await toolbox.destroy();
  gDevTools.unregisterTool(testToolDefinition.id);
  tab = toolbox = null;
  gBrowser.removeCurrentTab();
});