Revision control
Copy as Markdown
Other Tools
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/*
* Need to test that removing a page from autocomplete actually removes a page
* Description From Shawn Wilsher :sdwilsh 2009-02-18 11:29:06 PST
* We don't test the code path of onValueRemoved
* for the autocomplete implementation
*/
var histsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
getService(Ci.nsINavHistoryService);
function run_test()
{
run_next_test();
}
add_task(async function test_autocomplete_on_value_removed()
{
// QI to nsIAutoCompleteSimpleResultListener
var listener = Cc["@mozilla.org/autocomplete/search;1?name=history"].
getService(Ci.nsIAutoCompleteSimpleResultListener);
// add history visit
await PlacesTestUtils.addVisits({
uri: testUri,
});
// create a query object
var query = histsvc.getNewQuery();
// create the options object we will never use
var options = histsvc.getNewQueryOptions();
// look for this uri only
query.uri = testUri;
// execute
var queryRes = histsvc.executeQuery(query, options);
// open the result container
queryRes.root.containerOpen = true;
// debug queries
// dump_table("moz_places");
Assert.equal(queryRes.root.childCount, 1);
// call the untested code path
listener.onValueRemoved(null, testUri.spec, true);
// make sure it is GONE from the DB
Assert.equal(queryRes.root.childCount, 0);
// close the container
queryRes.root.containerOpen = false;
});