/* -*- 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.com code. * * The Initial Developer of the Original Code is Mozilla Corp. * Portions created by the Initial Developer are Copyright (C) 2007 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Dietrich Ayala * * 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 ***** */ version(170); var loader = Cc["@mozilla.org/moz/jssubscript-loader;1"]. getService(Ci.mozIJSSubScriptLoader); loader.loadSubScript("chrome://global/content/debug.js"); loader.loadSubScript("chrome://browser/content/places/utils.js"); const bmsvc = PlacesUtils.bookmarks; const testFolderId = PlacesUtils.bookmarksMenuFolderId; // main function run_test() { var testURI = uri("http://foo.com"); /* 1. Create a bookmark for a URI, with a keyword and post data. 2. Create a bookmark for the same URI, with a different keyword and different post data. 3. Confirm that our method for getting a URI+postdata retains bookmark affinity. */ var bm1 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm1, "foo"); PlacesUtils.setPostDataForBookmark(bm1, "pdata1"); var bm2 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm2, "bar"); PlacesUtils.setPostDataForBookmark(bm2, "pdata2"); // check kw, pd for bookmark 1 var url, postdata; [url, postdata] = PlacesUtils.getURLAndPostDataForKeyword("foo"); do_check_eq(testURI.spec, url); do_check_eq(postdata, "pdata1"); // check kw, pd for bookmark 2 [url, postdata] = PlacesUtils.getURLAndPostDataForKeyword("bar"); do_check_eq(testURI.spec, url); do_check_eq(postdata, "pdata2"); // cleanup bmsvc.removeItem(bm1); bmsvc.removeItem(bm2); /* 1. Create two bookmarks with the same URI and keyword. 2. Confirm that the most recently created one is returned for that keyword. */ var bm1 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm1, "foo"); PlacesUtils.setPostDataForBookmark(bm1, "pdata1"); var bm2 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm2, "foo"); PlacesUtils.setPostDataForBookmark(bm2, "pdata2"); var bm1da = bmsvc.getItemDateAdded(bm1); var bm1lm = bmsvc.getItemLastModified(bm1); LOG("bm1 dateAdded: " + bm1da + ", lastModified: " + bm1lm); var bm2da = bmsvc.getItemDateAdded(bm2); var bm2lm = bmsvc.getItemLastModified(bm2); LOG("bm2 dateAdded: " + bm2da + ", lastModified: " + bm2lm); do_check_true(bm1da <= bm2da); do_check_true(bm1lm <= bm2lm); [url, postdata] = PlacesUtils.getURLAndPostDataForKeyword("foo"); do_check_eq(testURI.spec, url); do_check_eq(postdata, "pdata2"); // cleanup bmsvc.removeItem(bm1); bmsvc.removeItem(bm2); /* 1. Create two bookmarks with the same URI and keyword. 2. Modify the first-created bookmark. 3. Confirm that the most recently modified one is returned for that keyword. */ var bm1 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm1, "foo"); PlacesUtils.setPostDataForBookmark(bm1, "pdata1"); var bm2 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm2, "foo"); PlacesUtils.setPostDataForBookmark(bm2, "pdata2"); // modify the older bookmark bmsvc.setItemTitle(bm1, "change"); var bm1da = bmsvc.getItemDateAdded(bm1); var bm1lm = bmsvc.getItemLastModified(bm1); LOG("bm1 dateAdded: " + bm1da + ", lastModified: " + bm1lm); var bm2da = bmsvc.getItemDateAdded(bm2); var bm2lm = bmsvc.getItemLastModified(bm2); LOG("bm2 dateAdded: " + bm2da + ", lastModified: " + bm2lm); do_check_true(bm1da <= bm2da); // the last modified for bm1 should be at least as big as bm2 // but could be equal if the test runs faster than our PRNow() // granularity do_check_true(bm1lm >= bm2lm); // we need to ensure that bm1 last modified date is greater // that the modified date of bm2, otherwise in case of a "tie" // bm2 will win, as it has a bigger item id if (bm1lm == bm2lm) bmsvc.setItemLastModified(bm1, bm2lm + 1); [url, postdata] = PlacesUtils.getURLAndPostDataForKeyword("foo"); do_check_eq(testURI.spec, url); do_check_eq(postdata, "pdata1"); // cleanup bmsvc.removeItem(bm1); bmsvc.removeItem(bm2); /* Test that id breaks ties: 1. Create two bookmarks with the same URI and keyword, dateAdded and lastModified. 2. Confirm that the most recently created one is returned for that keyword. */ var testDate = Date.now() * 1000; var bm1 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm1, "foo"); PlacesUtils.setPostDataForBookmark(bm1, "pdata1"); bmsvc.setItemDateAdded(bm1, testDate); bmsvc.setItemLastModified(bm1, testDate); var bm2 = bmsvc.insertBookmark(testFolderId, testURI, -1, "blah"); bmsvc.setKeywordForBookmark(bm2, "foo"); PlacesUtils.setPostDataForBookmark(bm2, "pdata2"); bmsvc.setItemDateAdded(bm2, testDate); bmsvc.setItemLastModified(bm2, testDate); var bm1da = bmsvc.getItemDateAdded(bm1, testDate); var bm1lm = bmsvc.getItemLastModified(bm1); LOG("bm1 dateAdded: " + bm1da + ", lastModified: " + bm1lm); var bm2da = bmsvc.getItemDateAdded(bm2); var bm2lm = bmsvc.getItemLastModified(bm2); LOG("bm2 dateAdded: " + bm2da + ", lastModified: " + bm2lm); do_check_eq(bm1da, bm2da); do_check_eq(bm1lm, bm2lm); var ids = bmsvc.getBookmarkIdsForURI(testURI, {}); do_check_eq(ids[0], bm2); do_check_eq(ids[1], bm1); [url, postdata] = PlacesUtils.getURLAndPostDataForKeyword("foo"); do_check_eq(testURI.spec, url); do_check_eq(postdata, "pdata2"); // cleanup bmsvc.removeItem(bm1); bmsvc.removeItem(bm2); }