1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
var bm;
var fakeQuery;
var folderShortcut;
add_task(async function setup() {
await PlacesUtils.bookmarks.eraseEverything();
bm = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
url: "http://example.com/",
title: "a bookmark",
});
fakeQuery = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
url: "place:terms=foo",
title: "a bookmark",
});
folderShortcut = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
url: `place:parent=${PlacesUtils.bookmarks.toolbarGuid}`,
title: "a bookmark",
});
checkBookmarkObject(bm);
checkBookmarkObject(fakeQuery);
checkBookmarkObject(folderShortcut);
});
add_task(async function test_bookmarks_url_query_implicit_exclusions() {
// When we run bookmarks url queries, we implicity filter out queries and
// folder shortcuts regardless of excludeQueries. They don't make sense to
// include in the results.
let expectedGuids = [bm.guid];
let query = PlacesUtils.history.getNewQuery();
let options = PlacesUtils.history.getNewQueryOptions();
options.excludeQueries = true;
options.queryType = Ci.nsINavHistoryQueryOptions.QUERY_TYPE_BOOKMARKS;
let root = PlacesUtils.history.executeQuery(query, options).root;
root.containerOpen = true;
Assert.equal(
root.childCount,
expectedGuids.length,
"Checking root child count"
);
for (let i = 0; i < expectedGuids.length; i++) {
Assert.equal(
root.getChild(i).bookmarkGuid,
expectedGuids[i],
"should have got the expected item"
);
}
root.containerOpen = false;
});
add_task(async function test_bookmarks_excludeQueries() {
// When excluding queries, we exclude actual queries, but not folder shortcuts.
let expectedGuids = [bm.guid, folderShortcut.guid];
let query = {},
options = {};
let queryString = `place:parent=${PlacesUtils.bookmarks.unfiledGuid}&excludeQueries=1`;
PlacesUtils.history.queryStringToQuery(queryString, query, options);
let root = PlacesUtils.history.executeQuery(query.value, options.value).root;
root.containerOpen = true;
Assert.equal(
root.childCount,
expectedGuids.length,
"Checking root child count"
);
for (let i = 0; i < expectedGuids.length; i++) {
Assert.equal(
root.getChild(i).bookmarkGuid,
expectedGuids[i],
"should have got the expected item"
);
}
root.containerOpen = false;
});
add_task(async function test_search_excludesQueries() {
// Searching implicity removes queries and folder shortcuts even if excludeQueries
// is not specified.
let expectedGuids = [bm.guid];
let query = PlacesUtils.history.getNewQuery();
query.searchTerms = "bookmark";
let options = PlacesUtils.history.getNewQueryOptions();
options.queryType = Ci.nsINavHistoryQueryOptions.QUERY_TYPE_BOOKMARKS;
let root = PlacesUtils.history.executeQuery(query, options).root;
root.containerOpen = true;
Assert.equal(
root.childCount,
expectedGuids.length,
"Checking root child count"
);
for (let i = 0; i < expectedGuids.length; i++) {
Assert.equal(
root.getChild(i).bookmarkGuid,
expectedGuids[i],
"should have got the expected item"
);
}
root.containerOpen = false;
});
|