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
105
106
107
108
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests one-off search button behavior with search mode.
*/
const TEST_ENGINE_NAME = "test engine";
add_setup(async function () {
await SearchTestUtils.installSearchExtension({
name: TEST_ENGINE_NAME,
keyword: "@test",
});
});
add_task(async function test() {
info("Test no one-off buttons are selected when entering search mode");
info("Open the result popup");
await UrlbarTestUtils.promiseAutocompleteResultPopup({
window,
value: "",
});
info("Select one of one-off button");
const oneOffs = UrlbarTestUtils.getOneOffSearchButtons(window);
await TestUtils.waitForCondition(
() => !oneOffs._rebuilding,
"Waiting for one-offs to finish rebuilding"
);
EventUtils.synthesizeKey("KEY_ArrowDown", { altKey: true });
ok(oneOffs.selectedButton, "There is a selected one-off button");
info("Enter search mode");
await UrlbarTestUtils.enterSearchMode(window, {
engineName: TEST_ENGINE_NAME,
});
await UrlbarTestUtils.assertSearchMode(window, {
engineName: TEST_ENGINE_NAME,
entry: "oneoff",
});
ok(!oneOffs.selectedButton, "There is no selected one-off button");
});
add_task(async function () {
info(
"Test the status of the selected one-off button when exiting search mode with backspace"
);
info("Open the result popup");
await UrlbarTestUtils.promiseAutocompleteResultPopup({
window,
value: "",
});
info("Select one of one-off button");
const oneOffs = UrlbarTestUtils.getOneOffSearchButtons(window);
await TestUtils.waitForCondition(
() => !oneOffs._rebuilding,
"Waiting for one-offs to finish rebuilding"
);
EventUtils.synthesizeKey("KEY_ArrowDown", { altKey: true });
ok(oneOffs.selectedButton, "There is a selected one-off button");
await UrlbarTestUtils.assertSearchMode(window, {
engineName: oneOffs.selectedButton.engine.name,
source: UrlbarUtils.RESULT_SOURCE.SEARCH,
entry: "oneoff",
isPreview: true,
});
info("Exit from search mode");
await UrlbarTestUtils.exitSearchMode(window);
ok(!oneOffs.selectedButton, "There is no any selected one-off button");
});
add_task(async function () {
info(
"Test the status of the selected one-off button when exiting search mode with clicking close button"
);
info("Open the result popup");
await UrlbarTestUtils.promiseAutocompleteResultPopup({
window,
value: "",
});
info("Select one of one-off button");
const oneOffs = UrlbarTestUtils.getOneOffSearchButtons(window);
await TestUtils.waitForCondition(
() => !oneOffs._rebuilding,
"Waiting for one-offs to finish rebuilding"
);
EventUtils.synthesizeKey("KEY_ArrowDown", { altKey: true });
ok(oneOffs.selectedButton, "There is a selected one-off button");
await UrlbarTestUtils.assertSearchMode(window, {
engineName: oneOffs.selectedButton.engine.name,
source: UrlbarUtils.RESULT_SOURCE.SEARCH,
entry: "oneoff",
isPreview: true,
});
info("Exit from search mode");
await UrlbarTestUtils.exitSearchMode(window, { clickClose: true });
ok(!oneOffs.selectedButton, "There is no any selected one-off button");
});
|