summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_update_frecency_after_delete.js
blob: fa03c0e06bd3d69e28b462060b1f159b89bdfe37 (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
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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* 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/. */

/**
 * Bug 455315
 * https://bugzilla.mozilla.org/show_bug.cgi?id=412132
 *
 * Ensures that the frecency of a bookmark's URI is what it should be after the
 * bookmark is deleted.
 */

add_task(async function removed_bookmark() {
  info(
    "After removing bookmark, frecency of bookmark's URI should be " +
      "zero if URI is unvisited and no longer bookmarked."
  );
  const TEST_URI = Services.io.newURI("http://example.com/1");
  let bm = await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    title: "bookmark title",
    url: TEST_URI,
  });

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Bookmarked => frecency of URI should be != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.remove(bm);

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Unvisited URI no longer bookmarked => frecency should = 0");
  Assert.equal(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.eraseEverything();
  await PlacesUtils.history.clear();
});

add_task(async function removed_but_visited_bookmark() {
  info(
    "After removing bookmark, frecency of bookmark's URI should " +
      "not be zero if URI is visited."
  );
  const TEST_URI = Services.io.newURI("http://example.com/1");
  let bm = await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    title: "bookmark title",
    url: TEST_URI,
  });

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Bookmarked => frecency of URI should be != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesTestUtils.addVisits(TEST_URI);
  await PlacesUtils.bookmarks.remove(bm);

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("*Visited* URI no longer bookmarked => frecency should != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.eraseEverything();
  await PlacesUtils.history.clear();
});

add_task(async function remove_bookmark_still_bookmarked() {
  info(
    "After removing bookmark, frecency of bookmark's URI should " +
      "not be zero if URI is still bookmarked."
  );
  const TEST_URI = Services.io.newURI("http://example.com/1");
  let bm1 = await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    title: "bookmark 1 title",
    url: TEST_URI,
  });
  await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    title: "bookmark 2 title",
    url: TEST_URI,
  });

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Bookmarked => frecency of URI should be != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.remove(bm1);

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("URI still bookmarked => frecency should != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.eraseEverything();
  await PlacesUtils.history.clear();
});

add_task(async function cleared_parent_of_visited_bookmark() {
  info(
    "After removing all children from bookmark's parent, frecency " +
      "of bookmark's URI should not be zero if URI is visited."
  );
  const TEST_URI = Services.io.newURI("http://example.com/1");
  await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    title: "bookmark title",
    url: TEST_URI,
  });

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Bookmarked => frecency of URI should be != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesTestUtils.addVisits(TEST_URI);
  await PlacesUtils.bookmarks.eraseEverything();

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("*Visited* URI no longer bookmarked => frecency should != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.eraseEverything();
  await PlacesUtils.history.clear();
});

add_task(async function cleared_parent_of_bookmark_still_bookmarked() {
  info(
    "After removing all children from bookmark's parent, frecency " +
      "of bookmark's URI should not be zero if URI is still " +
      "bookmarked."
  );
  const TEST_URI = Services.io.newURI("http://example.com/1");
  await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.toolbarGuid,
    title: "bookmark 1 title",
    url: TEST_URI,
  });

  let folder = await PlacesUtils.bookmarks.insert({
    parentGuid: PlacesUtils.bookmarks.unfiledGuid,
    type: PlacesUtils.bookmarks.TYPE_FOLDER,
    title: "bookmark 2 folder",
  });
  await PlacesUtils.bookmarks.insert({
    title: "bookmark 2 title",
    parentGuid: folder.guid,
    url: TEST_URI,
  });

  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  info("Bookmarked => frecency of URI should be != 0");
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.remove(folder);
  await PlacesFrecencyRecalculator.recalculateAnyOutdatedFrecencies();
  // URI still bookmarked => frecency should != 0.
  Assert.notEqual(
    await PlacesTestUtils.getDatabaseValue("moz_places", "frecency", {
      url: TEST_URI,
    }),
    0
  );

  await PlacesUtils.bookmarks.eraseEverything();
  await PlacesUtils.history.clear();
});