/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ : * ***** 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 Tests. * * The Initial Developer of the Original Code is * Mozilla Foundation. * Portions created by the Initial Developer are Copyright (C) 2009 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Marco Bonardo (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 ***** */ /** * What this is aimed to test: * * bh.removeAllPages should expire everything but bookmarked pages and valid * annos. */ const TOPIC_EXPIRATION_FINISHED = "places-expiration-finished"; let os = Cc["@mozilla.org/observer-service;1"]. getService(Ci.nsIObserverService); let hs = Cc["@mozilla.org/browser/nav-history-service;1"]. getService(Ci.nsINavHistoryService); let bs = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]. getService(Ci.nsINavBookmarksService); let as = Cc["@mozilla.org/browser/annotation-service;1"]. getService(Ci.nsIAnnotationService); /** * Creates an aged annotation. * * @param aIdentifier Either a page url or an item id. * @param aIdentifier Name of the annotation. * @param aValue Value for the annotation. * @param aExpirePolicy Expiration policy of the annotation. * @param aAgeInDays Age in days of the annotation. * @param [optional] aLastModifiedAgeInDays Age in days of the annotation, for lastModified. */ let now = Date.now(); function add_old_anno(aIdentifier, aName, aValue, aExpirePolicy, aAgeInDays, aLastModifiedAgeInDays) { let expireDate = (now - (aAgeInDays * 86400 * 1000)) * 1000; let lastModifiedDate = 0; if (aLastModifiedAgeInDays) lastModifiedDate = (now - (aLastModifiedAgeInDays * 86400 * 1000)) * 1000; let dbConn = DBConn(); let sql; if (typeof(aIdentifier) == "number") { // Item annotation. as.setItemAnnotation(aIdentifier, aName, aValue, 0, aExpirePolicy); // Update dateAdded for the last added annotation. sql = "UPDATE moz_items_annos SET dateAdded = :expire_date, lastModified = :last_modified " + "WHERE id = (SELECT id FROM moz_items_annos " + "WHERE item_id = :id " + "ORDER BY dateAdded DESC LIMIT 1)"; } else if (aIdentifier instanceof Ci.nsIURI){ // Page annotation. as.setPageAnnotation(aIdentifier, aName, aValue, 0, aExpirePolicy); // Update dateAdded for the last added annotation. sql = "UPDATE moz_annos SET dateAdded = :expire_date, lastModified = :last_modified " + "WHERE id = (SELECT a.id FROM moz_annos a " + "LEFT JOIN moz_places_view h on h.id = a.place_id " + "WHERE h.url = :id " + "ORDER BY a.dateAdded DESC LIMIT 1)"; } else do_throw("Wrong identifier type"); let stmt = dbConn.createStatement(sql); stmt.params.id = (typeof(aIdentifier) == "number") ? aIdentifier : aIdentifier.spec; stmt.params.expire_date = expireDate; stmt.params.last_modified = lastModifiedDate; try { stmt.executeStep(); } finally { stmt.finalize(); } } function run_test() { // Set interval to a large value so we don't expire on it. setInterval(3600); // 1h // Expire all expirable pages. setMaxPages(0); // Add some bookmarked page with visit and annotations. for (let i = 0; i < 5; i++) { let pageURI = uri("http://item_anno." + i + ".mozilla.org/"); // This visit will be expired. hs.addVisit(pageURI, now++, null, hs.TRANSITION_TYPED, false, 0); let id = bs.insertBookmark(bs.unfiledBookmarksFolder, pageURI, bs.DEFAULT_INDEX, null); // Will persist because it's an EXPIRE_NEVER item anno. as.setItemAnnotation(id, "persist", "test", 0, as.EXPIRE_NEVER); // Will persist because the page is bookmarked. as.setPageAnnotation(pageURI, "persist", "test", 0, as.EXPIRE_NEVER); // All EXPIRE_SESSION annotations are expected to expire on clear history. as.setItemAnnotation(id, "expire_session", "test", 0, as.EXPIRE_SESSION); as.setPageAnnotation(pageURI, "expire_session", "test", 0, as.EXPIRE_SESSION); // Annotations with timed policy will expire regardless bookmarked status. add_old_anno(id, "expire_days", "test", as.EXPIRE_DAYS, 8); add_old_anno(id, "expire_weeks", "test", as.EXPIRE_WEEKS, 31); add_old_anno(id, "expire_months", "test", as.EXPIRE_MONTHS, 181); add_old_anno(pageURI, "expire_days", "test", as.EXPIRE_DAYS, 8); add_old_anno(pageURI, "expire_weeks", "test", as.EXPIRE_WEEKS, 31); add_old_anno(pageURI, "expire_months", "test", as.EXPIRE_MONTHS, 181); } // Add some visited page and annotations for each. let now = Date.now() * 1000; for (let i = 0; i < 5; i++) { // All page annotations related to these expired pages are expected to // expire as well. let pageURI = uri("http://page_anno." + i + ".mozilla.org/"); hs.addVisit(pageURI, now++, null, hs.TRANSITION_TYPED, false, 0); as.setPageAnnotation(pageURI, "expire", "test", 0, as.EXPIRE_NEVER); as.setPageAnnotation(pageURI, "expire_session", "test", 0, as.EXPIRE_SESSION); add_old_anno(pageURI, "expire_days", "test", as.EXPIRE_DAYS, 8); add_old_anno(pageURI, "expire_weeks", "test", as.EXPIRE_WEEKS, 31); add_old_anno(pageURI, "expire_months", "test", as.EXPIRE_MONTHS, 181); } // Observe expirations. observer = { observe: function(aSubject, aTopic, aData) { os.removeObserver(observer, TOPIC_EXPIRATION_FINISHED); ["expire_days", "expire_weeks", "expire_months", "expire_session", "expire"].forEach(function(aAnno) { let pages = as.getPagesWithAnnotation(aAnno); do_check_eq(pages.length, 0); }); ["expire_days", "expire_weeks", "expire_months", "expire_session", "expire"].forEach(function(aAnno) { let items = as.getItemsWithAnnotation(aAnno); do_check_eq(items.length, 0); }); ["persist"].forEach(function(aAnno) { let pages = as.getPagesWithAnnotation(aAnno); do_check_eq(pages.length, 5); }); ["persist"].forEach(function(aAnno) { let items = as.getItemsWithAnnotation(aAnno); do_check_eq(items.length, 5); items.forEach(function(aItemId) { // Check item exists. bs.getItemIndex(aItemId); }); }); do_test_finished(); } }; os.addObserver(observer, TOPIC_EXPIRATION_FINISHED, false); // Expire all visits for the bookmarks. hs.QueryInterface(Ci.nsIBrowserHistory).removeAllPages(); do_test_pending(); }