Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: toolkit/components/places/tests/queries/xpcshell.toml
/* -*- 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
// The test data for our database, note that the ordering of the results that
// will be returned by the query (the isInQuery: true objects) is IMPORTANT.
// see compareArrayToResult in head_queries.js for more info.
var testData = [
// Test ftp protocol - vary the title length, embed search term
{
isInQuery: true,
isVisit: true,
isDetails: true,
lastVisit: lastweek,
title: "hugelongconfmozlagurationofwordswithasearchtermsinit whoo-hoo",
},
// Test flat domain with annotation, search term in sentence
{
isInQuery: true,
isVisit: true,
isDetails: true,
isPageAnnotation: true,
annoName: "moz/test",
annoVal: "val",
lastVisit: lastweek,
title: "you know, moz is cool",
},
// Test subdomain included with isRedirect=true, different transtype
{
isInQuery: true,
isVisit: true,
isDetails: true,
title: "amozzie",
isRedirect: true,
lastVisit: old,
transType: PlacesUtils.history.TRANSITION_LINK,
},
// Test subdomain inclued, search term at end
{
isInQuery: true,
isVisit: true,
isDetails: true,
title: "blahmoz",
lastVisit: daybefore,
},
// Test www. style URI is included, with a tag
{
isInQuery: false,
isVisit: true,
isDetails: true,
isTag: true,
tagArray: ["moz"],
lastVisit: yesterday,
title: "foo",
},
// Test https protocol
{
isInQuery: true,
isVisit: true,
isDetails: true,
title: "moz",
lastVisit: today,
},
// Begin the invalid queries: wrong search term
{
isInQuery: false,
isVisit: true,
isDetails: true,
title: "m o z",
lastVisit: today,
},
// Test bad URI
{
isInQuery: false,
isVisit: true,
isDetails: true,
title: "moz",
lastVisit: yesterday,
},
// Test what we do with escaping in titles
{
isInQuery: false,
isVisit: true,
isDetails: true,
title: "m%0o%0z",
lastVisit: yesterday,
},
// Test another invalid title - for updating later
{
isInQuery: false,
isVisit: true,
isDetails: true,
title: "m,oz",
lastVisit: yesterday,
},
];
/**
* This test will test Queries that use relative search terms and domain options
*/
add_task(async function test_searchterms_domain() {
await task_populateDB(testData);
var query = PlacesUtils.history.getNewQuery();
query.searchTerms = "moz";
query.domain = "foo.com";
query.domainIsHost = false;
// Options
var options = PlacesUtils.history.getNewQueryOptions();
options.sortingMode = options.SORT_BY_DATE_ASCENDING;
options.resultType = options.RESULTS_AS_URI;
// Results
var result = PlacesUtils.history.executeQuery(query, options);
var root = result.root;
root.containerOpen = true;
info("Number of items in result set: " + root.childCount);
for (var i = 0; i < root.childCount; ++i) {
info(
"result: " + root.getChild(i).uri + " Title: " + root.getChild(i).title
);
}
// Check our inital result set
compareArrayToResult(testData, root);
// If that passes, check liveupdate
// Add to the query set
info("Adding item to query");
var change1 = [
{
isVisit: true,
isDetails: true,
title: "moz",
transType: PlacesUtils.history.TRANSITION_LINK,
},
];
await task_populateDB(change1);
Assert.ok(nodeInResult(change1, root));
// Update an existing URI
info("Updating Item");
var change2 = [
];
await task_populateDB(change2);
Assert.ok(nodeInResult(change2, root));
// Add one and take one out of query set, and simply change one so that it
// still applies to the query.
info("Updating More Items");
var change3 = [
{
isDetails: true,
title: "moz now updated",
},
];
await task_populateDB(change3);
// And now, delete one
info("Deleting items");
await task_populateDB(change4);
Assert.ok(!nodeInResult(change4, root));
root.containerOpen = false;
});