Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * vim:set ts=2 sw=2 sts=2 expandtab |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | * This test ensures that when removing a folder within a transaction, undoing |
michael@0 | 9 | * the transaction restores it with the same id (as received by the observers). |
michael@0 | 10 | */ |
michael@0 | 11 | |
michael@0 | 12 | var bs = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]. |
michael@0 | 13 | getService(Ci.nsINavBookmarksService); |
michael@0 | 14 | |
michael@0 | 15 | function run_test() |
michael@0 | 16 | { |
michael@0 | 17 | const TITLE = "test folder"; |
michael@0 | 18 | |
michael@0 | 19 | // Create two test folders; remove the first one. This ensures that undoing |
michael@0 | 20 | // the removal will not get the same id by chance (the insert id's can be |
michael@0 | 21 | // reused in SQLite). |
michael@0 | 22 | let id = bs.createFolder(bs.placesRoot, TITLE, -1); |
michael@0 | 23 | bs.createFolder(bs.placesRoot, "test folder 2", -1); |
michael@0 | 24 | let transaction = bs.getRemoveFolderTransaction(id); |
michael@0 | 25 | transaction.doTransaction(); |
michael@0 | 26 | |
michael@0 | 27 | // Now check to make sure it gets added with the right id |
michael@0 | 28 | bs.addObserver({ |
michael@0 | 29 | onItemAdded: function(aItemId, aFolder, aIndex, aItemType, aURI, aTitle) |
michael@0 | 30 | { |
michael@0 | 31 | do_check_eq(aItemId, id); |
michael@0 | 32 | do_check_eq(aTitle, TITLE); |
michael@0 | 33 | } |
michael@0 | 34 | }, false); |
michael@0 | 35 | transaction.undoTransaction(); |
michael@0 | 36 | } |