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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* Test bug 424717 to make sure searching with an existing location like
* http://site/ also matches https://site/ or ftp://site/. Same thing for
* ftp://site/ and https://site/.
*
* Test bug 461483 to make sure a search for "w" doesn't match the "www." from
* site subdomains.
*/
add_task(async function test_swap_protocol() {
let uri1 = NetUtil.newURI("http://www.site/");
let uri2 = NetUtil.newURI("http://site/");
let uri3 = NetUtil.newURI("ftp://ftp.site/");
let uri4 = NetUtil.newURI("ftp://site/");
let uri5 = NetUtil.newURI("https://www.site/");
let uri6 = NetUtil.newURI("https://site/");
let uri7 = NetUtil.newURI("http://woohoo/");
let uri8 = NetUtil.newURI("http://wwwwwwacko/");
await PlacesTestUtils.addVisits([
{ uri: uri1, title: "title" },
{ uri: uri2, title: "title" },
{ uri: uri3, title: "title" },
{ uri: uri4, title: "title" },
{ uri: uri5, title: "title" },
{ uri: uri6, title: "title" },
{ uri: uri7, title: "title" },
{ uri: uri8, title: "title" },
]);
// uri1 and uri2 won't appear since they are lower-ranked duplicates of uri6.
let allMatches = [
{ uri: uri3, title: "title" },
{ uri: uri4, title: "title" },
{ uri: uri5, title: "title" },
{ uri: uri6, title: "title" },
];
// Disable autoFill to avoid handling the first result.
Services.prefs.setBoolPref("browser.urlbar.autoFill", false);
Services.prefs.setBoolPref("browser.urlbar.autoFill.searchEngines", false);
info("http://www.site matches 'www.site' pages");
await check_autocomplete({
search: "http://www.site",
matches: [{ uri: uri5, title: "title" }],
});
info("http://site matches all site");
await check_autocomplete({
search: "http://site",
matches: allMatches,
});
info("ftp://ftp.site matches itself");
await check_autocomplete({
search: "ftp://ftp.site",
matches: [{ uri: uri3, title: "title" }],
});
info("ftp://site matches all site");
await check_autocomplete({
search: "ftp://site",
matches: allMatches,
});
info("https://www.site matches all site");
await check_autocomplete({
search: "https://www.site",
matches: [{ uri: uri5, title: "title" }],
});
info("https://site matches all site");
await check_autocomplete({
search: "https://site",
matches: allMatches,
});
info("www.site matches 'www.site' pages");
await check_autocomplete({
search: "www.site",
matches: [{ uri: uri5, title: "title" }],
});
info("w matches 'w' pages, including 'www'");
await check_autocomplete({
search: "w",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri7, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://w matches 'w' pages, including 'www'");
await check_autocomplete({
search: "http://w",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri7, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://www.w matches nothing");
await check_autocomplete({
search: "http://www.w",
matches: [],
});
info("ww matches no 'ww' pages, including 'www'");
await check_autocomplete({
search: "ww",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://ww matches no 'ww' pages, including 'www'");
await check_autocomplete({
search: "http://ww",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://www.ww matches nothing");
await check_autocomplete({
search: "http://www.ww",
matches: [],
});
info("www matches 'www' pages");
await check_autocomplete({
search: "www",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://www matches 'www' pages");
await check_autocomplete({
search: "http://www",
matches: [
{ uri: uri5, title: "title" },
{ uri: uri8, title: "title" },
],
});
info("http://www.www matches nothing");
await check_autocomplete({
search: "http://www.www",
matches: [],
});
await cleanup();
});
|