2010-01-15 08:40:47 -08:00
|
|
|
/* -*- 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 <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 ***** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What this is aimed to test:
|
|
|
|
*
|
|
|
|
* Annotations can be set with a timed expiration policy.
|
|
|
|
* Supported policies are:
|
|
|
|
* - EXPIRE_DAYS: annotation would be expired after 7 days
|
|
|
|
* - EXPIRE_WEEKS: annotation would be expired after 30 days
|
|
|
|
* - EXPIRE_MONTHS: annotation would be expired after 180 days
|
|
|
|
*/
|
|
|
|
|
|
|
|
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 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");
|
|
|
|
|
2010-04-01 15:42:25 -07:00
|
|
|
let stmt = DBConn().createStatement(sql);
|
2010-01-15 08:40:47 -08:00
|
|
|
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 and timed annotations for each.
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
let pageURI = uri("http://item_anno." + i + ".mozilla.org/");
|
|
|
|
hs.addVisit(pageURI, now++, null, hs.TRANSITION_TYPED, false, 0);
|
|
|
|
let id = bs.insertBookmark(bs.unfiledBookmarksFolder, pageURI,
|
|
|
|
bs.DEFAULT_INDEX, null);
|
|
|
|
// Add a 6 days old anno.
|
|
|
|
add_old_anno(id, "persist_days", "test", as.EXPIRE_DAYS, 6);
|
|
|
|
// Add a 8 days old anno, modified 5 days ago.
|
|
|
|
add_old_anno(id, "persist_lm_days", "test", as.EXPIRE_DAYS, 8, 6);
|
|
|
|
// Add a 8 days old anno.
|
|
|
|
add_old_anno(id, "expire_days", "test", as.EXPIRE_DAYS, 8);
|
|
|
|
|
|
|
|
// Add a 29 days old anno.
|
|
|
|
add_old_anno(id, "persist_weeks", "test", as.EXPIRE_WEEKS, 29);
|
|
|
|
// Add a 31 days old anno, modified 29 days ago.
|
|
|
|
add_old_anno(id, "persist_lm_weeks", "test", as.EXPIRE_WEEKS, 31, 29);
|
|
|
|
// Add a 31 days old anno.
|
|
|
|
add_old_anno(id, "expire_weeks", "test", as.EXPIRE_WEEKS, 31);
|
|
|
|
|
|
|
|
// Add a 179 days old anno.
|
|
|
|
add_old_anno(id, "persist_months", "test", as.EXPIRE_MONTHS, 179);
|
|
|
|
// Add a 181 days old anno, modified 179 days ago.
|
|
|
|
add_old_anno(id, "persist_lm_months", "test", as.EXPIRE_MONTHS, 181, 179);
|
|
|
|
// Add a 181 days old anno.
|
|
|
|
add_old_anno(id, "expire_months", "test", as.EXPIRE_MONTHS, 181);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add some visited page and timed annotations for each.
|
|
|
|
let now = Date.now() * 1000;
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
let pageURI = uri("http://page_anno." + i + ".mozilla.org/");
|
|
|
|
hs.addVisit(pageURI, now++, null, hs.TRANSITION_TYPED, false, 0);
|
|
|
|
// Add a 6 days old anno.
|
|
|
|
add_old_anno(pageURI, "persist_days", "test", as.EXPIRE_DAYS, 6);
|
|
|
|
// Add a 8 days old anno, modified 5 days ago.
|
|
|
|
add_old_anno(pageURI, "persist_lm_days", "test", as.EXPIRE_DAYS, 8, 6);
|
|
|
|
// Add a 8 days old anno.
|
|
|
|
add_old_anno(pageURI, "expire_days", "test", as.EXPIRE_DAYS, 8);
|
|
|
|
|
|
|
|
// Add a 29 days old anno.
|
|
|
|
add_old_anno(pageURI, "persist_weeks", "test", as.EXPIRE_WEEKS, 29);
|
|
|
|
// Add a 31 days old anno, modified 29 days ago.
|
|
|
|
add_old_anno(pageURI, "persist_lm_weeks", "test", as.EXPIRE_WEEKS, 31, 29);
|
|
|
|
// Add a 31 days old anno.
|
|
|
|
add_old_anno(pageURI, "expire_weeks", "test", as.EXPIRE_WEEKS, 31);
|
|
|
|
|
|
|
|
// Add a 179 days old anno.
|
|
|
|
add_old_anno(pageURI, "persist_months", "test", as.EXPIRE_MONTHS, 179);
|
|
|
|
// Add a 181 days old anno, modified 179 days ago.
|
|
|
|
add_old_anno(pageURI, "persist_lm_months", "test", as.EXPIRE_MONTHS, 181, 179);
|
|
|
|
// Add a 181 days old anno.
|
|
|
|
add_old_anno(pageURI, "expire_months", "test", as.EXPIRE_MONTHS, 181);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Observe expirations.
|
|
|
|
observer = {
|
|
|
|
observe: function(aSubject, aTopic, aData) {
|
2010-04-22 05:53:54 -07:00
|
|
|
os.removeObserver(observer, PlacesUtils.TOPIC_EXPIRATION_FINISHED);
|
2010-01-15 08:40:47 -08:00
|
|
|
|
|
|
|
["expire_days", "expire_weeks", "expire_months"].forEach(function(aAnno) {
|
|
|
|
let pages = as.getPagesWithAnnotation(aAnno);
|
|
|
|
do_check_eq(pages.length, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
["expire_days", "expire_weeks", "expire_months"].forEach(function(aAnno) {
|
|
|
|
let items = as.getItemsWithAnnotation(aAnno);
|
|
|
|
do_check_eq(items.length, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
["persist_days", "persist_lm_days", "persist_weeks", "persist_lm_weeks",
|
|
|
|
"persist_months", "persist_lm_months"].forEach(function(aAnno) {
|
|
|
|
let pages = as.getPagesWithAnnotation(aAnno);
|
|
|
|
do_check_eq(pages.length, 5);
|
|
|
|
});
|
|
|
|
|
|
|
|
["persist_days", "persist_lm_days", "persist_weeks", "persist_lm_weeks",
|
|
|
|
"persist_months", "persist_lm_months"].forEach(function(aAnno) {
|
|
|
|
let items = as.getItemsWithAnnotation(aAnno);
|
|
|
|
do_check_eq(items.length, 5);
|
|
|
|
});
|
|
|
|
|
|
|
|
do_test_finished();
|
|
|
|
}
|
|
|
|
};
|
2010-04-22 05:53:54 -07:00
|
|
|
os.addObserver(observer, PlacesUtils.TOPIC_EXPIRATION_FINISHED, false);
|
2010-01-15 08:40:47 -08:00
|
|
|
|
|
|
|
// Expire all visits for the bookmarks.
|
|
|
|
force_expiration_step(5);
|
|
|
|
do_test_pending();
|
|
|
|
}
|