mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
711 lines
31 KiB
JavaScript
711 lines
31 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 mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is example Inc.
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Sungjoon Steve Won <stevewon@gmail.com> (Original Author)
|
|
* Asaf Romano <mano@mozilla.com>
|
|
*
|
|
* 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 bookmark service
|
|
try {
|
|
var bmsvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].getService(Ci.nsINavBookmarksService);
|
|
} catch(ex) {
|
|
do_throw("Could not get nav-bookmarks-service\n");
|
|
}
|
|
|
|
// Get livemark service
|
|
try {
|
|
var lmsvc = Cc["@mozilla.org/browser/livemark-service;2"].getService(Ci.nsILivemarkService);
|
|
} catch(ex) {
|
|
do_throw("Could not get livemark-service\n");
|
|
}
|
|
|
|
// Get microsummary service
|
|
try {
|
|
var mss = Cc["@mozilla.org/microsummary/service;1"].getService(Ci.nsIMicrosummaryService);
|
|
} catch(ex) {
|
|
do_throw("Could not get microsummary-service\n");
|
|
}
|
|
|
|
// Get Places Transaction Manager Service
|
|
try {
|
|
var ptSvc = Cc["@mozilla.org/browser/placesTransactionsService;1"].
|
|
getService(Ci.nsIPlacesTransactionsService);
|
|
} catch(ex) {
|
|
do_throw("Could not get Places Transactions Service\n");
|
|
}
|
|
|
|
// Get tagging service
|
|
try {
|
|
var tagssvc = Cc["@mozilla.org/browser/tagging-service;1"].
|
|
getService(Ci.nsITaggingService);
|
|
} catch(ex) {
|
|
do_throw("Could not get tagging service\n");
|
|
}
|
|
|
|
// Get annotations service
|
|
try {
|
|
var annosvc = Cc["@mozilla.org/browser/annotation-service;1"].
|
|
getService(Ci.nsIAnnotationService);
|
|
} catch(ex) {
|
|
do_throw("Could not get annotations service\n");
|
|
}
|
|
|
|
// create and add bookmarks observer
|
|
var observer = {
|
|
onBeginUpdateBatch: function() {
|
|
this._beginUpdateBatch = true;
|
|
},
|
|
onEndUpdateBatch: function() {
|
|
this._endUpdateBatch = true;
|
|
},
|
|
onItemAdded: function(id, folder, index) {
|
|
this._itemAddedId = id;
|
|
this._itemAddedParent = folder;
|
|
this._itemAddedIndex = index;
|
|
},
|
|
onItemRemoved: function(id, folder, index) {
|
|
this._itemRemovedId = id;
|
|
this._itemRemovedFolder = folder;
|
|
this._itemRemovedIndex = index;
|
|
},
|
|
onItemChanged: function(id, property, isAnnotationProperty, value) {
|
|
this._itemChangedId = id;
|
|
this._itemChangedProperty = property;
|
|
this._itemChanged_isAnnotationProperty = isAnnotationProperty;
|
|
this._itemChangedValue = value;
|
|
},
|
|
onItemVisited: function(id, visitID, time) {
|
|
this._itemVisitedId = id;
|
|
this._itemVisitedVistId = visitID;
|
|
this._itemVisitedTime = time;
|
|
},
|
|
onItemMoved: function(id, oldParent, oldIndex, newParent, newIndex) {
|
|
this._itemMovedId = id
|
|
this._itemMovedOldParent = oldParent;
|
|
this._itemMovedOldIndex = oldIndex;
|
|
this._itemMovedNewParent = newParent;
|
|
this._itemMovedNewIndex = newIndex;
|
|
},
|
|
QueryInterface: function(iid) {
|
|
if (iid.equals(Ci.nsINavBookmarkObserver) ||
|
|
iid.equals(Ci.nsISupports)) {
|
|
return this;
|
|
}
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
}
|
|
};
|
|
bmsvc.addObserver(observer, false);
|
|
|
|
// index at which items should begin
|
|
var bmStartIndex = 0;
|
|
|
|
// main
|
|
function run_test() {
|
|
// get bookmarks root index
|
|
var root = bmsvc.bookmarksMenuFolder;
|
|
|
|
//Test creating a folder with a description
|
|
const DESCRIPTION_ANNO = "bookmarkProperties/description";
|
|
const TEST_DESCRIPTION = "this is my test description";
|
|
var annos = [{ name: DESCRIPTION_ANNO,
|
|
type: annosvc.TYPE_STRING,
|
|
flags: 0,
|
|
value: TEST_DESCRIPTION,
|
|
expires: annosvc.EXPIRE_NEVER }];
|
|
var txn1 = ptSvc.createFolder("Testing folder", root, bmStartIndex, annos);
|
|
txn1.doTransaction();
|
|
var folderId = bmsvc.getChildFolder(root, "Testing folder");
|
|
do_check_eq(TEST_DESCRIPTION,
|
|
annosvc.getItemAnnotation(folderId, DESCRIPTION_ANNO));
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedId, folderId);
|
|
txn1.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, folderId);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
txn1.redoTransaction();
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedId, folderId);
|
|
txn1.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, folderId);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
|
|
// Test creating an item
|
|
// Create to Root
|
|
var txn2 = ptSvc.createItem(uri("http://www.example.com"), root, bmStartIndex, "Testing1");
|
|
ptSvc.doTransaction(txn2); //Also testing doTransaction
|
|
var b = (bmsvc.getBookmarkIdsForURI(uri("http://www.example.com"), {}))[0];
|
|
do_check_eq(observer._itemAddedId, b);
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_true(bmsvc.isBookmarked(uri("http://www.example.com")));
|
|
txn2.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, b);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
do_check_false(bmsvc.isBookmarked(uri("http://www.example.com")));
|
|
txn2.redoTransaction();
|
|
do_check_true(bmsvc.isBookmarked(uri("http://www.example.com")));
|
|
var newId = (bmsvc.getBookmarkIdsForURI(uri("http://www.example.com"), {}))[0];
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedId, newId);
|
|
txn2.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, newId);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
|
|
// Create item to a folder
|
|
var txn2a = ptSvc.createFolder("Folder", root, bmStartIndex);
|
|
ptSvc.doTransaction(txn2a);
|
|
var fldrId = bmsvc.getChildFolder(root, "Folder");
|
|
var txn2b = ptSvc.createItem(uri("http://www.example2.com"), fldrId, bmStartIndex, "Testing1b");
|
|
ptSvc.doTransaction(txn2b);
|
|
var b2 = (bmsvc.getBookmarkIdsForURI(uri("http://www.example2.com"), {}))[0];
|
|
do_check_eq(observer._itemAddedId, b2);
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_true(bmsvc.isBookmarked(uri("http://www.example2.com")));
|
|
txn2b.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, b2);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
txn2b.redoTransaction();
|
|
newId = (bmsvc.getBookmarkIdsForURI(uri("http://www.example2.com"), {}))[0];
|
|
do_check_eq(observer._itemAddedIndex, bmStartIndex);
|
|
do_check_eq(observer._itemAddedParent, fldrId);
|
|
do_check_eq(observer._itemAddedId, newId);
|
|
txn2b.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, newId);
|
|
do_check_eq(observer._itemRemovedFolder, fldrId);
|
|
do_check_eq(observer._itemRemovedIndex, bmStartIndex);
|
|
|
|
// Testing moving an item
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.example3.com"), root, -1, "Testing2"));
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.example3.com"), root, -1, "Testing3"));
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.example3.com"), fldrId, -1, "Testing4"));
|
|
var bkmkIds = bmsvc.getBookmarkIdsForURI(uri("http://www.example3.com"), {});
|
|
bkmkIds.sort();
|
|
var bkmk1Id = bkmkIds[0];
|
|
var bkmk2Id = bkmkIds[1];
|
|
var bkmk3Id = bkmkIds[2];
|
|
|
|
// Moving items between the same folder
|
|
var txn3 = ptSvc.moveItem(bkmk1Id, root, -1);
|
|
txn3.doTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 2);
|
|
txn3.undoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 2);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
txn3.redoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 2);
|
|
txn3.undoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 2);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
|
|
// Moving items between different folders
|
|
var txn3b = ptSvc.moveItem(bkmk1Id, fldrId, -1);
|
|
txn3b.doTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, fldrId);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
txn3.undoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, fldrId);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
txn3b.redoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, root);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, fldrId);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
txn3.undoTransaction();
|
|
do_check_eq(observer._itemMovedId, bkmk1Id);
|
|
do_check_eq(observer._itemMovedOldParent, fldrId);
|
|
do_check_eq(observer._itemMovedOldIndex, 1);
|
|
do_check_eq(observer._itemMovedNewParent, root);
|
|
do_check_eq(observer._itemMovedNewIndex, 1);
|
|
|
|
// Test Removing a Folder
|
|
ptSvc.doTransaction(ptSvc.createFolder("Folder2", root, -1));
|
|
var fldrId2 = bmsvc.getChildFolder(root, "Folder2");
|
|
var txn4 = ptSvc.removeItem(fldrId2);
|
|
txn4.doTransaction();
|
|
do_check_eq(observer._itemRemovedId, fldrId2);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 3);
|
|
txn4.undoTransaction();
|
|
do_check_eq(observer._itemAddedId, fldrId2);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 3);
|
|
txn4.redoTransaction();
|
|
do_check_eq(observer._itemRemovedId, fldrId2);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 3);
|
|
txn4.undoTransaction();
|
|
do_check_eq(observer._itemAddedId, fldrId2);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 3);
|
|
|
|
// Test removing an item with a keyword
|
|
bmsvc.setKeywordForBookmark(bkmk2Id, "test_keyword");
|
|
var txn5 = ptSvc.removeItem(bkmk2Id);
|
|
txn5.doTransaction();
|
|
do_check_eq(observer._itemRemovedId, bkmk2Id);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 2);
|
|
do_check_eq(bmsvc.getKeywordForBookmark(bkmk2Id), null);
|
|
txn5.undoTransaction();
|
|
var newbkmk2Id = observer._itemAddedId;
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 2);
|
|
do_check_eq(bmsvc.getKeywordForBookmark(newbkmk2Id), "test_keyword");
|
|
txn5.redoTransaction();
|
|
do_check_eq(observer._itemRemovedId, newbkmk2Id);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 2);
|
|
do_check_eq(bmsvc.getKeywordForBookmark(newbkmk2Id), null);
|
|
txn5.undoTransaction();
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 2);
|
|
|
|
// Test creating a separator
|
|
var txn6 = ptSvc.createSeparator(root, 1);
|
|
txn6.doTransaction();
|
|
var sepId = observer._itemAddedId;
|
|
do_check_eq(observer._itemAddedIndex, 1);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
txn6.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, sepId);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 1);
|
|
txn6.redoTransaction();
|
|
var newSepId = observer._itemAddedId;
|
|
do_check_eq(observer._itemAddedIndex, 1);
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
txn6.undoTransaction();
|
|
do_check_eq(observer._itemRemovedId, newSepId);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 1);
|
|
|
|
// Test removing a separator
|
|
ptSvc.doTransaction(ptSvc.createSeparator(root, 1));
|
|
var sepId2 = observer._itemAddedId;
|
|
var txn7 = ptSvc.removeItem(sepId2);
|
|
txn7.doTransaction();
|
|
do_check_eq(observer._itemRemovedId, sepId2);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 1);
|
|
txn7.undoTransaction();
|
|
do_check_eq(observer._itemAddedId, sepId2); //New separator created
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 1);
|
|
txn7.redoTransaction();
|
|
do_check_eq(observer._itemRemovedId, sepId2);
|
|
do_check_eq(observer._itemRemovedFolder, root);
|
|
do_check_eq(observer._itemRemovedIndex, 1);
|
|
txn7.undoTransaction();
|
|
do_check_eq(observer._itemAddedId, sepId2); //New separator created
|
|
do_check_eq(observer._itemAddedParent, root);
|
|
do_check_eq(observer._itemAddedIndex, 1);
|
|
|
|
// Test editing item title
|
|
var txn8 = ptSvc.editItemTitle(bkmk1Id, "Testing2_mod");
|
|
txn8.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "title");
|
|
do_check_eq(observer._itemChangedValue, "Testing2_mod");
|
|
txn8.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "title");
|
|
do_check_eq(observer._itemChangedValue, "Testing2");
|
|
txn8.redoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "title");
|
|
do_check_eq(observer._itemChangedValue, "Testing2_mod");
|
|
txn8.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "title");
|
|
do_check_eq(observer._itemChangedValue, "Testing2");
|
|
|
|
// Test editing item uri
|
|
var txn9 = ptSvc.editBookmarkURI(bkmk1Id, uri("http://newuri.com"));
|
|
txn9.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "uri");
|
|
do_check_eq(observer._itemChangedValue, "http://newuri.com/");
|
|
txn9.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "uri");
|
|
do_check_eq(observer._itemChangedValue, "http://www.example3.com/");
|
|
txn9.redoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "uri");
|
|
do_check_eq(observer._itemChangedValue, "http://newuri.com/");
|
|
txn9.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "uri");
|
|
do_check_eq(observer._itemChangedValue, "http://www.example3.com/");
|
|
|
|
// Test edit item description
|
|
var txn10 = ptSvc.editItemDescription(bkmk1Id, "Description1");
|
|
txn10.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "bookmarkProperties/description");
|
|
|
|
// Testing edit keyword
|
|
var txn11 = ptSvc.editBookmarkKeyword(bkmk1Id, "kw1");
|
|
txn11.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "keyword");
|
|
do_check_eq(observer._itemChangedValue, "kw1");
|
|
txn11.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "keyword");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
|
|
// Testing create livemark
|
|
var txn12 = ptSvc.createLivemark(uri("http://feeduri.com"),
|
|
uri("http://siteuri.com"),
|
|
"Livemark1", root);
|
|
txn12.doTransaction();
|
|
var lvmkId = observer._itemAddedId;
|
|
do_check_true(lmsvc.isLivemark(lvmkId));
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://siteuri.com/");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://feeduri.com/");
|
|
txn12.undoTransaction();
|
|
do_check_false(lmsvc.isLivemark(lvmkId));
|
|
txn12.redoTransaction();
|
|
lvmkId = observer._itemAddedId;
|
|
do_check_true(lmsvc.isLivemark(lvmkId));
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://siteuri.com/");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://feeduri.com/");
|
|
|
|
// editLivemarkSiteURI
|
|
var txn13 = ptSvc.editLivemarkSiteURI(lvmkId, uri("http://new-siteuri.com/"));
|
|
txn13.doTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/siteURI");
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://new-siteuri.com/");
|
|
txn13.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/siteURI");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://siteuri.com/");
|
|
txn13.redoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/siteURI");
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://new-siteuri.com/");
|
|
txn13.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/siteURI");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://siteuri.com/");
|
|
|
|
// editLivemarkFeedURI
|
|
var txn14 = ptSvc.editLivemarkFeedURI(lvmkId, uri("http://new-feeduri.com/"));
|
|
txn14.doTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/feedURI");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://new-feeduri.com/");
|
|
txn14.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/feedURI");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://feeduri.com/");
|
|
txn14.redoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/feedURI");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://new-feeduri.com/");
|
|
txn14.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, lvmkId);
|
|
do_check_eq(observer._itemChangedProperty, "livemark/feedURI");
|
|
do_check_eq(observer._itemChangedValue, "");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://feeduri.com/");
|
|
|
|
// Testing remove livemark
|
|
// Set an annotation and check that we don't lose it on undo
|
|
annosvc.setItemAnnotation(lvmkId, "livemark/testAnno", "testAnno",
|
|
0, annosvc.EXPIRE_NEVER);
|
|
var txn15 = ptSvc.removeItem(lvmkId);
|
|
txn15.doTransaction();
|
|
do_check_false(lmsvc.isLivemark(lvmkId));
|
|
do_check_eq(observer._itemRemovedId, lvmkId);
|
|
txn15.undoTransaction();
|
|
lvmkId = observer._itemAddedId;
|
|
do_check_true(lmsvc.isLivemark(lvmkId));
|
|
do_check_eq(lmsvc.getSiteURI(lvmkId).spec, "http://siteuri.com/");
|
|
do_check_eq(lmsvc.getFeedURI(lvmkId).spec, "http://feeduri.com/");
|
|
do_check_eq(annosvc.getItemAnnotation(lvmkId, "livemark/testAnno"), "testAnno");
|
|
txn15.redoTransaction();
|
|
do_check_false(lmsvc.isLivemark(lvmkId));
|
|
do_check_eq(observer._itemRemovedId, lvmkId);
|
|
|
|
// Test setLoadInSidebar
|
|
const LOAD_IN_SIDEBAR_ANNO = "bookmarkProperties/loadInSidebar";
|
|
var txn16 = ptSvc.setLoadInSidebar(bkmk1Id, true);
|
|
txn16.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, LOAD_IN_SIDEBAR_ANNO);
|
|
do_check_eq(observer._itemChanged_isAnnotationProperty, true);
|
|
txn16.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, LOAD_IN_SIDEBAR_ANNO);
|
|
do_check_eq(observer._itemChanged_isAnnotationProperty, true);
|
|
|
|
// Test generic item annotation
|
|
var itemAnnoObj = { name: "testAnno/testInt",
|
|
type: Ci.nsIAnnotationService.TYPE_INT32,
|
|
flags: 0,
|
|
value: 123,
|
|
expires: Ci.nsIAnnotationService.EXPIRE_NEVER };
|
|
var genItemAnnoTxn = ptSvc.setItemAnnotation(bkmk1Id, itemAnnoObj);
|
|
genItemAnnoTxn.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "testAnno/testInt");
|
|
do_check_eq(observer._itemChanged_isAnnotationProperty, true);
|
|
genItemAnnoTxn.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "testAnno/testInt");
|
|
do_check_eq(observer._itemChanged_isAnnotationProperty, true);
|
|
genItemAnnoTxn.redoTransaction();
|
|
do_check_eq(observer._itemChangedId, bkmk1Id);
|
|
do_check_eq(observer._itemChangedProperty, "testAnno/testInt");
|
|
do_check_eq(observer._itemChanged_isAnnotationProperty, true);
|
|
|
|
// Test generic page annotation
|
|
var pageAnnoObj = { name: "testAnno/testInt",
|
|
type: Ci.nsIAnnotationService.TYPE_INT32,
|
|
flags: 0,
|
|
value: 123,
|
|
expires: Ci.nsIAnnotationService.EXPIRE_NEVER };
|
|
var genPageAnnoTxn = ptSvc.setPageAnnotation(uri("http://www.mozilla.org/"), pageAnnoObj);
|
|
genPageAnnoTxn.doTransaction();
|
|
do_check_true(annosvc.pageHasAnnotation(uri("http://www.mozilla.org/"), "testAnno/testInt"));
|
|
genPageAnnoTxn.undoTransaction();
|
|
do_check_false(annosvc.pageHasAnnotation(uri("http://www.mozilla.org/"), "testAnno/testInt"));
|
|
genPageAnnoTxn.redoTransaction();
|
|
do_check_true(annosvc.pageHasAnnotation(uri("http://www.mozilla.org/"), "testAnno/testInt"));
|
|
|
|
// sortFolderByName
|
|
ptSvc.doTransaction(ptSvc.createFolder("Sorting folder", root, bmStartIndex, [], null));
|
|
var srtFldId = bmsvc.getChildFolder(root, "Sorting folder");
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.sortingtest.com"), srtFldId, -1, "c"));
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.sortingtest.com"), srtFldId, -1, "b"));
|
|
ptSvc.doTransaction(ptSvc.createItem(uri("http://www.sortingtest.com"), srtFldId, -1, "a"));
|
|
var b = bmsvc.getBookmarkIdsForURI(uri("http://www.sortingtest.com"), {});
|
|
b.sort();
|
|
var b1 = b[0];
|
|
var b2 = b[1];
|
|
var b3 = b[2];
|
|
do_check_eq(0, bmsvc.getItemIndex(b1));
|
|
do_check_eq(1, bmsvc.getItemIndex(b2));
|
|
do_check_eq(2, bmsvc.getItemIndex(b3));
|
|
var txn17 = ptSvc.sortFolderByName(srtFldId);
|
|
txn17.doTransaction();
|
|
do_check_eq(2, bmsvc.getItemIndex(b1));
|
|
do_check_eq(1, bmsvc.getItemIndex(b2));
|
|
do_check_eq(0, bmsvc.getItemIndex(b3));
|
|
txn17.undoTransaction();
|
|
do_check_eq(0, bmsvc.getItemIndex(b1));
|
|
do_check_eq(1, bmsvc.getItemIndex(b2));
|
|
do_check_eq(2, bmsvc.getItemIndex(b3));
|
|
txn17.redoTransaction();
|
|
do_check_eq(2, bmsvc.getItemIndex(b1));
|
|
do_check_eq(1, bmsvc.getItemIndex(b2));
|
|
do_check_eq(0, bmsvc.getItemIndex(b3));
|
|
txn17.undoTransaction();
|
|
do_check_eq(0, bmsvc.getItemIndex(b1));
|
|
do_check_eq(1, bmsvc.getItemIndex(b2));
|
|
do_check_eq(2, bmsvc.getItemIndex(b3));
|
|
|
|
// editBookmarkMicrosummary
|
|
var tmpMs = mss.createMicrosummary(uri("http://testmicro.com"),
|
|
uri("http://dietrich.ganx4.com/mozilla/test-microsummary.xml"));
|
|
ptSvc.doTransaction(
|
|
ptSvc.createItem(uri("http://dietrich.ganx4.com/mozilla/test-microsummary-content.php"),
|
|
root, -1, "micro test", null, null, null));
|
|
var bId = (bmsvc.getBookmarkIdsForURI(uri("http://dietrich.ganx4.com/mozilla/test-microsummary-content.php"),{}))[0];
|
|
do_check_true(!mss.hasMicrosummary(bId));
|
|
var txn18 = ptSvc.editBookmarkMicrosummary(bId, tmpMs);
|
|
txn18.doTransaction();
|
|
do_check_eq(observer._itemChangedId, bId);
|
|
do_check_true(mss.hasMicrosummary(bId));
|
|
txn18.undoTransaction();
|
|
do_check_eq(observer._itemChangedId, bId);
|
|
do_check_true(!mss.hasMicrosummary(bId));
|
|
|
|
// Testing edit Post Data
|
|
const POST_DATA_ANNO = "bookmarkProperties/POSTData";
|
|
var postData = "foo";
|
|
var postDataURI = uri("http://foo.com");
|
|
ptSvc.doTransaction(
|
|
ptSvc.createItem(postDataURI, root, -1, "postdata test", null, null, null));
|
|
var postDataId = (bmsvc.getBookmarkIdsForURI(postDataURI,{}))[0];
|
|
var postDataTxn = ptSvc.editBookmarkPostData(postDataId, postData);
|
|
postDataTxn.doTransaction();
|
|
do_check_true(annosvc.itemHasAnnotation(postDataId, POST_DATA_ANNO))
|
|
do_check_eq(annosvc.getItemAnnotation(postDataId, POST_DATA_ANNO), postData);
|
|
postDataTxn.undoTransaction();
|
|
do_check_false(annosvc.itemHasAnnotation(postDataId, POST_DATA_ANNO))
|
|
|
|
// Test editing item date added
|
|
var oldAdded = bmsvc.getItemDateAdded(bkmk1Id);
|
|
var newAdded = Date.now();
|
|
var eidaTxn = ptSvc.editItemDateAdded(bkmk1Id, newAdded);
|
|
eidaTxn.doTransaction();
|
|
do_check_eq(newAdded, bmsvc.getItemDateAdded(bkmk1Id));
|
|
eidaTxn.undoTransaction();
|
|
do_check_eq(oldAdded, bmsvc.getItemDateAdded(bkmk1Id));
|
|
|
|
// Test editing item last modified
|
|
var oldModified = bmsvc.getItemLastModified(bkmk1Id);
|
|
var newModified = Date.now();
|
|
var eilmTxn = ptSvc.editItemLastModified(bkmk1Id, newModified);
|
|
eilmTxn.doTransaction();
|
|
do_check_eq(newModified, bmsvc.getItemLastModified(bkmk1Id));
|
|
eilmTxn.undoTransaction();
|
|
do_check_eq(oldModified, bmsvc.getItemLastModified(bkmk1Id));
|
|
|
|
// Test tagURI/untagURI
|
|
var tagURI = uri("http://foo.tld");
|
|
var tagTxn = ptSvc.tagURI(tagURI, ["foo", "bar"]);
|
|
tagTxn.doTransaction();
|
|
do_check_eq(uneval(tagssvc.getTagsForURI(tagURI, { })), uneval(["bar","foo"]));
|
|
tagTxn.undoTransaction();
|
|
do_check_true(tagssvc.getTagsForURI(tagURI, { }).length == 0);
|
|
tagTxn.redoTransaction();
|
|
do_check_eq(uneval(tagssvc.getTagsForURI(tagURI, { })), uneval(["bar","foo"]));
|
|
var untagTxn = ptSvc.untagURI(tagURI, ["bar"]);
|
|
untagTxn.doTransaction();
|
|
do_check_eq(uneval(tagssvc.getTagsForURI(tagURI, { })), uneval(["foo"]));
|
|
untagTxn.undoTransaction();
|
|
do_check_eq(uneval(tagssvc.getTagsForURI(tagURI, { })), uneval(["bar","foo"]));
|
|
untagTxn.redoTransaction();
|
|
do_check_eq(uneval(tagssvc.getTagsForURI(tagURI, { })), uneval(["foo"]));
|
|
|
|
// Test aggregate removeItem transaction
|
|
var bkmk1Id = bmsvc.insertBookmark(root, uri("http://www.mozilla.org/"), 0, "Mozilla");
|
|
var bkmk2Id = bmsvc.insertSeparator(root, 1);
|
|
var bkmk3Id = bmsvc.createFolder(root, "folder", 2);
|
|
var bkmk3_1Id = bmsvc.insertBookmark(bkmk3Id, uri("http://www.mozilla.org/"), 0, "Mozilla");
|
|
var bkmk3_2Id = bmsvc.insertSeparator(bkmk3Id, 1);
|
|
var bkmk3_3Id = bmsvc.createFolder(bkmk3Id, "folder", 2);
|
|
|
|
var transactions = [];
|
|
transactions.push(ptSvc.removeItem(bkmk1Id));
|
|
transactions.push(ptSvc.removeItem(bkmk2Id));
|
|
transactions.push(ptSvc.removeItem(bkmk3Id));
|
|
var txn = ptSvc.aggregateTransactions("RemoveItems", transactions);
|
|
|
|
txn.doTransaction();
|
|
do_check_eq(bmsvc.getItemIndex(bkmk1Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(bkmk2Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(bkmk3Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(bkmk3_1Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(bkmk3_2Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(bkmk3_3Id), -1);
|
|
|
|
txn.undoTransaction();
|
|
var newBkmk1Id = bmsvc.getIdForItemAt(root, 0);
|
|
var newBkmk2Id = bmsvc.getIdForItemAt(root, 1);
|
|
var newBkmk3Id = bmsvc.getIdForItemAt(root, 2);
|
|
var newBkmk3_1Id = bmsvc.getIdForItemAt(newBkmk3Id, 0);
|
|
var newBkmk3_2Id = bmsvc.getIdForItemAt(newBkmk3Id, 1);
|
|
var newBkmk3_3Id = bmsvc.getIdForItemAt(newBkmk3Id, 2);
|
|
do_check_eq(bmsvc.getItemType(newBkmk1Id), bmsvc.TYPE_BOOKMARK);
|
|
do_check_eq(bmsvc.getBookmarkURI(newBkmk1Id).spec, "http://www.mozilla.org/");
|
|
do_check_eq(bmsvc.getItemType(newBkmk2Id), bmsvc.TYPE_SEPARATOR);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3Id), bmsvc.TYPE_FOLDER);
|
|
do_check_eq(bmsvc.getItemTitle(newBkmk3Id), "folder");
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_1Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_1Id), bmsvc.TYPE_BOOKMARK);
|
|
do_check_eq(bmsvc.getBookmarkURI(newBkmk3_1Id).spec, "http://www.mozilla.org/");
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_2Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_2Id), bmsvc.TYPE_SEPARATOR);
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_3Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_3Id), bmsvc.TYPE_FOLDER);
|
|
do_check_eq(bmsvc.getItemTitle(newBkmk3_3Id), "folder");
|
|
|
|
txn.redoTransaction();
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk1Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk2Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk3Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk3_1Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk3_2Id), -1);
|
|
do_check_eq(bmsvc.getItemIndex(newBkmk3_3Id), -1);
|
|
|
|
txn.undoTransaction();
|
|
newBkmk1Id = bmsvc.getIdForItemAt(root, 0);
|
|
newBkmk2Id = bmsvc.getIdForItemAt(root, 1);
|
|
newBkmk3Id = bmsvc.getIdForItemAt(root, 2);
|
|
newBkmk3_1Id = bmsvc.getIdForItemAt(newBkmk3Id, 0);
|
|
newBkmk3_2Id = bmsvc.getIdForItemAt(newBkmk3Id, 1);
|
|
newBkmk3_3Id = bmsvc.getIdForItemAt(newBkmk3Id, 2);
|
|
do_check_eq(bmsvc.getItemType(newBkmk1Id), bmsvc.TYPE_BOOKMARK);
|
|
do_check_eq(bmsvc.getBookmarkURI(newBkmk1Id).spec, "http://www.mozilla.org/");
|
|
do_check_eq(bmsvc.getItemType(newBkmk2Id), bmsvc.TYPE_SEPARATOR);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3Id), bmsvc.TYPE_FOLDER);
|
|
do_check_eq(bmsvc.getItemTitle(newBkmk3Id), "folder");
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_1Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_1Id), bmsvc.TYPE_BOOKMARK);
|
|
do_check_eq(bmsvc.getBookmarkURI(newBkmk3_1Id).spec, "http://www.mozilla.org/");
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_2Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_2Id), bmsvc.TYPE_SEPARATOR);
|
|
do_check_eq(bmsvc.getFolderIdForItem(newBkmk3_3Id), newBkmk3Id);
|
|
do_check_eq(bmsvc.getItemType(newBkmk3_3Id), bmsvc.TYPE_FOLDER);
|
|
do_check_eq(bmsvc.getItemTitle(newBkmk3_3Id), "folder");
|
|
|
|
bmsvc.removeObserver(observer, false);
|
|
}
|