1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 22:22:56 +00:00
Files
UXP/devtools/client/framework/test/browser_toolbox_select_event.js
T
Moonchild 8c395520d9 Issue #1656 - Part 1: Nuke most vim config lines in the tree.
Since these are just interpreted comments, there's 0 impact on actual code.
This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are
a few others scattered around which will be removed manually in a second part.
2020-09-25 22:04:12 +08:00

101 lines
3.0 KiB
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const PAGE_URL = "data:text/html;charset=utf-8,test select events";
requestLongerTimeout(2);
add_task(function* () {
let tab = yield addTab(PAGE_URL);
let toolbox = yield openToolboxForTab(tab, "webconsole", "bottom");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield testToolSelectEvent("inspector");
yield testToolSelectEvent("webconsole");
yield testToolSelectEvent("styleeditor");
yield toolbox.destroy();
toolbox = yield openToolboxForTab(tab, "webconsole", "side");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield toolbox.destroy();
toolbox = yield openToolboxForTab(tab, "webconsole", "window");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield testSelectEvent("inspector");
yield testSelectEvent("webconsole");
yield testSelectEvent("styleeditor");
yield toolbox.destroy();
yield testSelectToolRace();
/**
* Assert that selecting the given toolId raises a select event
* @param {toolId} Id of the tool to test
*/
function* testSelectEvent(toolId) {
let onSelect = toolbox.once("select");
toolbox.selectTool(toolId);
let id = yield onSelect;
is(id, toolId, toolId + " selected");
}
/**
* Assert that selecting the given toolId raises its corresponding
* selected event
* @param {toolId} Id of the tool to test
*/
function* testToolSelectEvent(toolId) {
let onSelected = toolbox.once(toolId + "-selected");
toolbox.selectTool(toolId);
yield onSelected;
is(toolbox.currentToolId, toolId, toolId + " tool selected");
}
/**
* Assert that two calls to selectTool won't race
*/
function* testSelectToolRace() {
let toolbox = yield openToolboxForTab(tab, "webconsole");
let selected = false;
let onSelect = (event, id) => {
if (selected) {
ok(false, "Got more than one 'select' event");
} else {
selected = true;
}
};
toolbox.once("select", onSelect);
let p1 = toolbox.selectTool("inspector")
let p2 = toolbox.selectTool("inspector");
// Check that both promises don't resolve too early
let checkSelectToolResolution = panel => {
ok(selected, "selectTool resolves only after 'select' event is fired");
let inspector = toolbox.getPanel("inspector");
is(panel, inspector, "selecTool resolves to the panel instance");
};
p1.then(checkSelectToolResolution);
p2.then(checkSelectToolResolution);
yield p1;
yield p2;
yield toolbox.destroy();
}
});