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
|
/* 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(async function () {
const tab = await addTab(PAGE_URL);
let toolbox = await openToolboxForTab(tab, "webconsole", "bottom");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await testToolSelectEvent("inspector");
await testToolSelectEvent("webconsole");
await testToolSelectEvent("styleeditor");
await toolbox.destroy();
toolbox = await openToolboxForTab(tab, "webconsole", "right");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await toolbox.destroy();
toolbox = await openToolboxForTab(tab, "webconsole", "window");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await testSelectEvent("inspector");
await testSelectEvent("webconsole");
await testSelectEvent("styleeditor");
await toolbox.destroy();
await testSelectToolRace();
/**
* Assert that selecting the given toolId raises a select event
* @param {toolId} Id of the tool to test
*/
async function testSelectEvent(toolId) {
const onSelect = toolbox.once("select");
toolbox.selectTool(toolId);
const id = await 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
*/
async function testToolSelectEvent(toolId) {
const onSelected = toolbox.once(toolId + "-selected");
toolbox.selectTool(toolId);
await onSelected;
is(toolbox.currentToolId, toolId, toolId + " tool selected");
}
/**
* Assert that two calls to selectTool won't race
*/
async function testSelectToolRace() {
const toolbox = await openToolboxForTab(tab, "webconsole");
let selected = false;
const onSelect = (event, id) => {
if (selected) {
ok(false, "Got more than one 'select' event");
} else {
selected = true;
}
};
toolbox.once("select", onSelect);
const p1 = toolbox.selectTool("inspector");
const p2 = toolbox.selectTool("inspector");
// Check that both promises don't resolve too early
const checkSelectToolResolution = panel => {
ok(selected, "selectTool resolves only after 'select' event is fired");
const inspector = toolbox.getPanel("inspector");
is(panel, inspector, "selecTool resolves to the panel instance");
};
p1.then(checkSelectToolResolution);
p2.then(checkSelectToolResolution);
await p1;
await p2;
await toolbox.destroy();
}
});
|