mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c3bde40cce
Not having this callback makes life difficult for anyone trying to synchronize bookmarks. You cannot get any additional information about a bookmark when onItemRemoved is called, since it's been removed. Things like a guid no longer exist, which results in a lot of pain for add-ons that want to synchronize. r=dietrich
178 lines
7.3 KiB
JavaScript
178 lines
7.3 KiB
JavaScript
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Places unit test code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Mozilla Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Marco Bonardo <mak77@bonardo.net> (Original Author)
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
// Get services.
|
|
try {
|
|
var histSvc = Cc["@mozilla.org/browser/nav-history-service;1"].
|
|
getService(Ci.nsINavHistoryService);
|
|
var bmSvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
|
|
getService(Ci.nsINavBookmarksService);
|
|
var annoSvc = Cc["@mozilla.org/browser/annotation-service;1"]
|
|
.getService(Ci.nsIAnnotationService);
|
|
} catch(ex) {
|
|
do_throw("Could not get services\n");
|
|
}
|
|
|
|
var validAnnoName = "validAnno";
|
|
var validItemName = "validItem";
|
|
var deletedAnnoName = "deletedAnno";
|
|
var deletedItemName = "deletedItem";
|
|
var bookmarkedURI = uri("http://www.mozilla.org/");
|
|
// set lastModified to the past to prevent VM timing bugs
|
|
var pastDate = Date.now() * 1000 - 1;
|
|
var deletedBookmarkIds = [];
|
|
|
|
// bookmarks observer
|
|
var observer = {
|
|
// cached ordered array of notified items
|
|
_onItemRemovedItemIds: [],
|
|
onBeforeItemRemoved: function(aItemId) { },
|
|
onItemRemoved: function(aItemId, aParentId, aIndex) {
|
|
// We should first get notifications for children, then for their parent
|
|
do_check_eq(this._onItemRemovedItemIds.indexOf(aParentId), -1);
|
|
// Ensure we are not wrongly removing 1 level up
|
|
do_check_neq(aParentId, bmSvc.toolbarFolder);
|
|
// Removed item must be one of those we have manually deleted
|
|
do_check_neq(deletedBookmarkIds.indexOf(aItemId), -1);
|
|
this._onItemRemovedItemIds.push(aItemId);
|
|
},
|
|
|
|
QueryInterface: function(aIID) {
|
|
if (aIID.equals(Ci.nsINavBookmarkObserver) ||
|
|
aIID.equals(Ci.nsISupports)) {
|
|
return this;
|
|
}
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
}
|
|
};
|
|
|
|
bmSvc.addObserver(observer, false);
|
|
|
|
function add_bookmarks() {
|
|
// This is the folder we will cleanup
|
|
var validFolderId = bmSvc.createFolder(bmSvc.toolbarFolder,
|
|
validItemName,
|
|
bmSvc.DEFAULT_INDEX);
|
|
annoSvc.setItemAnnotation(validFolderId, validAnnoName,
|
|
"annotation", 0,
|
|
annoSvc.EXPIRE_NEVER);
|
|
bmSvc.setItemLastModified(validFolderId, pastDate);
|
|
|
|
// This bookmark should not be deleted
|
|
var validItemId = bmSvc.insertBookmark(bmSvc.toolbarFolder,
|
|
bookmarkedURI,
|
|
bmSvc.DEFAULT_INDEX,
|
|
validItemName);
|
|
annoSvc.setItemAnnotation(validItemId, validAnnoName,
|
|
"annotation", 0, annoSvc.EXPIRE_NEVER);
|
|
|
|
// The following contents should be deleted
|
|
var deletedItemId = bmSvc.insertBookmark(validFolderId,
|
|
bookmarkedURI,
|
|
bmSvc.DEFAULT_INDEX,
|
|
deletedItemName);
|
|
annoSvc.setItemAnnotation(deletedItemId, deletedAnnoName,
|
|
"annotation", 0, annoSvc.EXPIRE_NEVER);
|
|
deletedBookmarkIds.push(deletedItemId);
|
|
|
|
var internalFolderId = bmSvc.createFolder(validFolderId,
|
|
deletedItemName,
|
|
bmSvc.DEFAULT_INDEX);
|
|
annoSvc.setItemAnnotation(internalFolderId, deletedAnnoName,
|
|
"annotation", 0, annoSvc.EXPIRE_NEVER);
|
|
deletedBookmarkIds.push(internalFolderId);
|
|
|
|
deletedItemId = bmSvc.insertBookmark(internalFolderId,
|
|
bookmarkedURI,
|
|
bmSvc.DEFAULT_INDEX,
|
|
deletedItemName);
|
|
annoSvc.setItemAnnotation(deletedItemId, deletedAnnoName,
|
|
"annotation", 0, annoSvc.EXPIRE_NEVER);
|
|
deletedBookmarkIds.push(deletedItemId);
|
|
|
|
return validFolderId;
|
|
}
|
|
|
|
function check_bookmarks(aFolderId) {
|
|
// check that we still have valid bookmarks
|
|
var bookmarks = bmSvc.getBookmarkIdsForURI(bookmarkedURI, {});
|
|
for(var i = 0; i < bookmarks.length; i++) {
|
|
do_check_eq(bmSvc.getItemTitle(bookmarks[i]), validItemName);
|
|
do_check_true(annoSvc.itemHasAnnotation(bookmarks[i],validAnnoName));
|
|
}
|
|
|
|
// check that folder exists and has still its annotation
|
|
do_check_eq(bmSvc.getItemTitle(aFolderId), validItemName);
|
|
do_check_true(annoSvc.itemHasAnnotation(aFolderId, validAnnoName));
|
|
|
|
// check that folder is empty
|
|
var options = histSvc.getNewQueryOptions();
|
|
var query = histSvc.getNewQuery();
|
|
query.setFolders([aFolderId], 1);
|
|
var result = histSvc.executeQuery(query, options);
|
|
var root = result.root;
|
|
root.containerOpen = true;
|
|
do_check_eq(root.childCount, 0);
|
|
root.containerOpen = false;
|
|
|
|
// test that lastModified got updated
|
|
do_check_true(pastDate < bmSvc.getItemLastModified(aFolderId));
|
|
|
|
// test that all children have been deleted, we use annos for that
|
|
var deletedItems = annoSvc.getItemsWithAnnotation(deletedAnnoName, {});
|
|
do_check_eq(deletedItems.length, 0);
|
|
|
|
// test that observer has been called for (and only for) deleted items
|
|
do_check_eq(observer._onItemRemovedItemIds.length, deletedBookmarkIds.length);
|
|
|
|
// Sanity check: all roots should be intact
|
|
do_check_eq(bmSvc.getFolderIdForItem(bmSvc.placesRoot), 0);
|
|
do_check_eq(bmSvc.getFolderIdForItem(bmSvc.bookmarksMenuFolder), bmSvc.placesRoot);
|
|
do_check_eq(bmSvc.getFolderIdForItem(bmSvc.tagsFolder), bmSvc.placesRoot);
|
|
do_check_eq(bmSvc.getFolderIdForItem(bmSvc.unfiledBookmarksFolder), bmSvc.placesRoot);
|
|
do_check_eq(bmSvc.getFolderIdForItem(bmSvc.toolbarFolder), bmSvc.placesRoot);
|
|
}
|
|
|
|
// main
|
|
function run_test() {
|
|
var folderId = add_bookmarks();
|
|
bmSvc.removeFolderChildren(folderId);
|
|
check_bookmarks(folderId);
|
|
}
|