Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* -*- 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/. */
/**
*
* 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();
});