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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests UrlbarProviderTabToSearch. See also
* browser/components/urlbar/tests/browser/browser_tabToSearch.js
*/
"use strict";
let testEngine;
add_task(async function init() {
// Disable search suggestions for a less verbose test.
Services.prefs.setBoolPref("browser.search.suggest.enabled", false);
// Disable tab-to-search onboarding results. Those are covered in
// browser/components/urlbar/tests/browser/browser_tabToSearch.js.
Services.prefs.setIntPref(
"browser.urlbar.tabToSearch.onboard.interactionsLeft",
0
);
testEngine = await Services.search.addEngineWithDetails("Test", {
template: "https://example.com/?search={searchTerms}",
});
registerCleanupFunction(async () => {
await Services.search.removeEngine(testEngine);
Services.prefs.clearUserPref(
"browser.urlbar.tabToSearch.onboard.interactionsLeft"
);
Services.prefs.clearUserPref("browser.search.suggest.enabled");
});
});
// Tests that tab-to-search results appear when the engine's result domain is
// autofilled.
add_task(async function basic() {
await PlacesTestUtils.addVisits(["https://example.com/"]);
let context = createContext("examp", { isPrivate: false });
await check_results({
context,
autofilled: "example.com/",
completed: "https://example.com/",
matches: [
makeVisitResult(context, {
uri: "https://example.com/",
title: "https://example.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: testEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
testEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
info("Repeat the search but with tab-to-search disabled through pref.");
Services.prefs.setBoolPref("browser.urlbar.suggest.engines", false);
await check_results({
context,
autofilled: "example.com/",
completed: "https://example.com/",
matches: [
makeVisitResult(context, {
uri: "https://example.com/",
title: "https://example.com",
heuristic: true,
providerName: "Autofill",
}),
],
});
Services.prefs.clearUserPref("browser.urlbar.suggest.engines");
await cleanupPlaces();
});
// Tests that tab-to-search results aren't shown when the typed string matches
// an engine domain but there is no autofill.
add_task(async function noAutofill() {
// Note we are not adding any history visits.
let context = createContext("examp", { isPrivate: false });
await check_results({
context,
matches: [
makeSearchResult(context, {
engineName: Services.search.defaultEngine.name,
engineIconUri: Services.search.defaultEngine.iconURI?.spec,
heuristic: true,
providerName: "HeuristicFallback",
}),
],
});
});
// Tests that tab-to-search results are not shown when the typed string matches
// an engine domain, but something else is being autofilled.
add_task(async function autofillDoesNotMatchEngine() {
await PlacesTestUtils.addVisits(["https://example.test.ca/"]);
let context = createContext("example", { isPrivate: false });
await check_results({
context,
autofilled: "example.test.ca/",
completed: "https://example.test.ca/",
matches: [
makeVisitResult(context, {
uri: "https://example.test.ca/",
title: "https://example.test.ca",
heuristic: true,
providerName: "Autofill",
}),
],
});
await cleanupPlaces();
});
// Tests that www. is ignored for the purposes of matching autofill to
// tab-to-search.
add_task(async function ignoreWww() {
// The history result has www., the engine does not.
await PlacesTestUtils.addVisits(["https://www.example.com/"]);
let context = createContext("www.examp", { isPrivate: false });
await check_results({
context,
autofilled: "www.example.com/",
completed: "https://www.example.com/",
matches: [
makeVisitResult(context, {
uri: "https://www.example.com/",
title: "https://www.example.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: testEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
testEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
// The engine has www., the history result does not.
await PlacesTestUtils.addVisits(["https://foo.bar/"]);
let wwwTestEngine = await Services.search.addEngineWithDetails("TestWww", {
template: "https://www.foo.bar/?search={searchTerms}",
});
context = createContext("foo", { isPrivate: false });
await check_results({
context,
autofilled: "foo.bar/",
completed: "https://foo.bar/",
matches: [
makeVisitResult(context, {
uri: "https://foo.bar/",
title: "https://foo.bar",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: wwwTestEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
wwwTestEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
// Both the engine and the history result have www.
await PlacesTestUtils.addVisits(["https://www.foo.bar/"]);
context = createContext("foo", { isPrivate: false });
await check_results({
context,
autofilled: "foo.bar/",
completed: "https://www.foo.bar/",
matches: [
makeVisitResult(context, {
uri: "https://www.foo.bar/",
title: "https://www.foo.bar",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: wwwTestEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
wwwTestEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
await Services.search.removeEngine(wwwTestEngine);
});
// Tests that when a user's query causes autofill to replace one engine's domain
// with another, the correct tab-to-search results are shown.
add_task(async function conflictingEngines() {
for (let i = 0; i < 3; i++) {
await PlacesTestUtils.addVisits([
"https://foobar.com/",
"https://foo.com/",
]);
}
let fooBarTestEngine = await Services.search.addEngineWithDetails(
"TestFooBar",
{ template: "https://foobar.com/?search={searchTerms}" }
);
let fooTestEngine = await Services.search.addEngineWithDetails("TestFoo", {
template: "https://foo.com/?search={searchTerms}",
});
// Search for "foo", autofilling foo.com. Observe that the foo.com
// tab-to-search result is shown, even though the foobar.com engine was added
// first (and thus enginesForDomainPrefix puts it earlier in its returned
// array.)
let context = createContext("foo", { isPrivate: false });
await check_results({
context,
autofilled: "foo.com/",
completed: "https://foo.com/",
matches: [
makeVisitResult(context, {
uri: "https://foo.com/",
title: "https://foo.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: fooTestEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
fooTestEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
makeVisitResult(context, {
uri: "https://foobar.com/",
title: "test visit for https://foobar.com/",
providerName: "UnifiedComplete",
}),
],
});
// Search for "foob", autofilling foobar.com. Observe that the foo.com
// tab-to-search result is replaced with the foobar.com tab-to-search result.
context = createContext("foob", { isPrivate: false });
await check_results({
context,
autofilled: "foobar.com/",
completed: "https://foobar.com/",
matches: [
makeVisitResult(context, {
uri: "https://foobar.com/",
title: "https://foobar.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: fooBarTestEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
fooBarTestEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
await Services.search.removeEngine(fooTestEngine);
await Services.search.removeEngine(fooBarTestEngine);
});
add_task(async function multipleEnginesForHostname() {
info(
"In case of multiple engines only one tab-to-search result should be returned"
);
let mapsEngine = await Services.search.addEngineWithDetails("TestMaps", {
template: "https://example.com/maps/?search={searchTerms}",
});
await PlacesTestUtils.addVisits(["https://example.com/"]);
let context = createContext("examp", { isPrivate: false });
await check_results({
context,
autofilled: "example.com/",
completed: "https://example.com/",
matches: [
makeVisitResult(context, {
uri: "https://example.com/",
title: "https://example.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: testEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
testEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
await Services.search.removeEngine(mapsEngine);
});
add_task(async function test_casing() {
info("Tab-to-search results appear also in case of different casing.");
await PlacesTestUtils.addVisits(["https://example.com/"]);
let context = createContext("eXAm", { isPrivate: false });
await check_results({
context,
autofilled: "eXAmple.com/",
completed: "https://example.com/",
matches: [
makeVisitResult(context, {
uri: "https://example.com/",
title: "https://example.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: testEngine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(
testEngine.getResultDomain()
),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
await cleanupPlaces();
});
add_task(async function test_publicSuffix() {
info("Tab-to-search results appear also in case of partial host match.");
let engine = await Services.search.addEngineWithDetails("MyTest", {
template: "https://test.mytest.it/?search={searchTerms}",
});
await PlacesTestUtils.addVisits(["https://test.mytest.it/"]);
let context = createContext("my", { isPrivate: false });
await check_results({
context,
matches: [
makeSearchResult(context, {
engineName: Services.search.defaultEngine.name,
engineIconUri: Services.search.defaultEngine.iconURI?.spec,
heuristic: true,
providerName: "HeuristicFallback",
}),
makeSearchResult(context, {
engineName: engine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(engine.getResultDomain()),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
satisfiesAutofillThreshold: true,
}),
makeVisitResult(context, {
uri: "https://test.mytest.it/",
title: "test visit for https://test.mytest.it/",
providerName: "UnifiedComplete",
}),
],
});
await cleanupPlaces();
await Services.search.removeEngine(engine);
});
add_task(async function test_publicSuffixIsHost() {
info("Tab-to-search results does not appear in case we autofill a suffix.");
let suffixEngine = await Services.search.addEngineWithDetails("SuffixTest", {
template: "https://somesuffix.com.mx/?search={searchTerms}",
});
// The top level domain will be autofilled, not the full domain.
await PlacesTestUtils.addVisits(["https://com.mx/"]);
let context = createContext("co", { isPrivate: false });
await check_results({
context,
autofilled: "com.mx/",
completed: "https://com.mx/",
matches: [
makeVisitResult(context, {
uri: "https://com.mx/",
title: "https://com.mx",
heuristic: true,
providerName: "Autofill",
}),
],
});
await cleanupPlaces();
await Services.search.removeEngine(suffixEngine);
});
add_task(async function test_disabledEngine() {
info("Tab-to-search results does not appear for a Pref-disabled engine.");
let engine = await Services.search.addEngineWithDetails("Disabled", {
template: "https://disabled.com/?search={searchTerms}",
});
await PlacesTestUtils.addVisits(["https://disabled.com/"]);
let context = createContext("dis", { isPrivate: false });
info("Sanity check that the engine would appear.");
await check_results({
context,
autofilled: "disabled.com/",
completed: "https://disabled.com/",
matches: [
makeVisitResult(context, {
uri: "https://disabled.com/",
title: "https://disabled.com",
heuristic: true,
providerName: "Autofill",
}),
makeSearchResult(context, {
engineName: engine.name,
engineIconUri: UrlbarUtils.ICON.SEARCH_GLASS_INVERTED,
uri: UrlbarUtils.stripPublicSuffixFromHost(engine.getResultDomain()),
providesSearchMode: true,
query: "",
providerName: "TabToSearch",
}),
],
});
info("Now disable the engine.");
Services.prefs.setCharPref("browser.search.hiddenOneOffs", engine.name);
await check_results({
context,
autofilled: "disabled.com/",
completed: "https://disabled.com/",
matches: [
makeVisitResult(context, {
uri: "https://disabled.com/",
title: "https://disabled.com",
heuristic: true,
providerName: "Autofill",
}),
],
});
Services.prefs.clearUserPref("browser.search.hiddenOneOffs");
await cleanupPlaces();
await Services.search.removeEngine(engine);
});
|