summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js
blob: 89ccc3206e007bf9bef86c1d05c9f6938d266cab (plain)
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
/* 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(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/");
  yield 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" }
  ]);

  let allMatches = [
    { uri: uri1, title: "title" },
    { uri: uri2, title: "title" },
    { 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);

  do_print("http://www.site matches all site");
  yield check_autocomplete({
    search: "http://www.site",
    matches: allMatches
  });

  do_print("http://site matches all site");
  yield check_autocomplete({
    search: "http://site",
    matches: allMatches
  });

  do_print("ftp://ftp.site matches itself");
  yield check_autocomplete({
    search: "ftp://ftp.site",
    matches: [ { uri: uri3, title: "title" } ]
  });

  do_print("ftp://site matches all site");
  yield check_autocomplete({
    search: "ftp://site",
    matches: allMatches
  });

  do_print("https://www.site matches all site");
  yield check_autocomplete({
    search: "https://www.site",
    matches: allMatches
  });

  do_print("https://site matches all site");
  yield check_autocomplete({
    search: "https://site",
    matches: allMatches
  });

  do_print("www.site matches all site");
  yield check_autocomplete({
    search: "www.site",
    matches: allMatches
  });

  do_print("w matches none of www.");
  yield check_autocomplete({
    search: "w",
    matches: [ { uri: uri7, title: "title" },
               { uri: uri8, title: "title" } ]
  });

  do_print("http://w matches none of www.");
  yield check_autocomplete({
    search: "http://w",
    matches: [ { uri: uri7, title: "title" },
               { uri: uri8, title: "title" } ]
  });

  do_print("http://w matches none of www.");
  yield check_autocomplete({
    search: "http://www.w",
    matches: [ { uri: uri7, title: "title" },
               { uri: uri8, title: "title" } ]
  });

  do_print("ww matches none of www.");
  yield check_autocomplete({
    search: "ww",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("ww matches none of www.");
  yield check_autocomplete({
    search: "ww",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("http://ww matches none of www.");
  yield check_autocomplete({
    search: "http://ww",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("http://www.ww matches none of www.");
  yield check_autocomplete({
    search: "http://www.ww",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("www matches none of www.");
  yield check_autocomplete({
    search: "www",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("http://www matches none of www.");
  yield check_autocomplete({
    search: "http://www",
    matches: [ { uri: uri8, title: "title" } ]
  });

  do_print("http://www.www matches none of www.");
  yield check_autocomplete({
    search: "http://www.www",
    matches: [ { uri: uri8, title: "title" } ]
  });

  yield cleanup();
});