Bug 376630 - Test sorting functionality. r=dietrich.

This commit is contained in:
mozilla.mano@sent.com 2007-04-27 03:11:11 -07:00
parent 47eb048b72
commit 0b0726896f

View File

@ -0,0 +1,147 @@
/* -*- 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 Google Inc.
* Portions created by the Initial Developer are Copyright (C) 2005
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* 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 the history service
try {
var histsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
getService(Ci.nsINavHistoryService);
}
catch(ex) {
do_throw("Could not get the history service\n");
}
// Get bookmark service
try {
var bmsvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
getService(Ci.nsINavBookmarksService);
}
catch(ex) {
do_throw("Could not get the nav-bookmarks-service\n");
}
// Get annotation service
try {
var annosvc= Cc["@mozilla.org/browser/annotation-service;1"].getService(Ci.nsIAnnotationService);
} catch(ex) {
do_throw("Could not get annotation service\n");
}
// adds a test URI visit to the database
function add_visit(aURI, aTime) {
histsvc.addVisit(aURI,
aTime,
0, // no referrer
histsvc.TRANSITION_TYPED, // user typed in URL bar
false, // not redirect
0);
}
// main
function run_test() {
var testRoot = bmsvc.createFolder(root,
"Result-sort functionality tests root",
bmsvc.DEFAULT_INDEX);
var uri1 = uri("http://foo.tld/a");
var uri2 = uri("http://foo.tld/b");
var id1 = bmsvc.insertItem(testRoot, uri1, bmsvc.DEFAULT_INDEX);
bmsvc.setItemTitle(id1, "b");
var id2 = bmsvc.insertItem(testRoot, uri2, bmsvc.DEFAULT_INDEX);
bmsvc.setItemTitle(id2, "a");
// url of id1, title of id2
var id3 = bmsvc.insertItem(testRoot, uri1, bmsvc.DEFAULT_INDEX);
bmsvc.setItemTitle(id3, "a");
// query with natural order
var options = histsvc.getNewQueryOptions();
var query = histsvc.getNewQuery();
query.setFolders([testRoot], 1);
var result = histsvc.executeQuery(query, options);
var root = result.root;
root.containerOpen = true;
do_check_eq(root.childCount, 3);
const NHQO = Ci.nsINavHistoryQueryOptions;
function checkOrder(a, b, c) {
do_check_eq(root.getChild(0).bookmarkId, a);
do_check_eq(root.getChild(1).bookmarkId, b);
do_check_eq(root.getChild(2).bookmarkId, c);
}
// natural order
checkOrder(id1, id2, id3);
// title: id3 should precede id2 since we fall-back to URI-based sorting
result.sortingMode = NHQO.SORT_BY_TITLE_ASCENDING;
checkOrder(id3, id2, id1);
// In reverse
result.sortingMode = NHQO.SORT_BY_TITLE_DESCENDING;
checkOrder(id1, id2, id3);
// uri sort: id1 should precede id3 since we fall-back to natural order
result.sortingMode = NHQO.SORT_BY_URI_ASCENDING;
checkOrder(id1, id3, id2);
// test live update
bmsvc.changeBookmarkURI(id1, uri2);
checkOrder(id3, id1, id2);
bmsvc.changeBookmarkURI(id1, uri1);
checkOrder(id1, id3, id2);
// XXXtodo: test history sortings (visit count, visit date)
// XXXtodo: test different item types once folderId and bookmarkId are merged.
annosvc.setAnnotationString(bmsvc.getItemURI(id1), "testAnno", "a", 0, 0);
annosvc.setAnnotationString(bmsvc.getItemURI(id3), "testAnno", "b", 0, 0);
result.sortingAnnotation = "testAnno";
result.sortingMode = NHQO.SORT_BY_ANNOTATION_DESCENDING;
// id1 precedes id2 per title-descending fallback
checkOrder(id3, id1, id2);
// different annotation types, we fall back to the title sorting route
annosvc.setAnnotationInt32(bmsvc.getItemURI(id3), "testAnno", 10, 0, 0);
// XXXtodo: test live update for sortingAnnotation (not yet implemented);
// manually force sort for now...
result.sortingMode = result.sortingMode;
checkOrder(id1, id2, id3);
}