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
119
|
/* -*- 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
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var testData = [];
var timeInMicroseconds = PlacesUtils.toPRTime(Date.now() - 10000);
function newTimeInMicroseconds() {
timeInMicroseconds = timeInMicroseconds + 1000;
return timeInMicroseconds;
}
function createTestData() {
function generateVisits(aPage) {
for (var i = 0; i < aPage.visitCount; i++) {
testData.push({ isInQuery: aPage.inQuery,
isVisit: true,
title: aPage.title,
uri: aPage.uri,
lastVisit: newTimeInMicroseconds(),
isTag: aPage.tags && aPage.tags.length > 0,
tagArray: aPage.tags });
}
}
var pages = [
{ uri: "http://foo.com/", title: "amo", tags: ["moz"], visitCount: 3, inQuery: true },
{ uri: "http://moilla.com/", title: "bMoz", tags: ["bugzilla"], visitCount: 5, inQuery: true },
{ uri: "http://foo.mail.com/changeme1.html", title: "c Moz", visitCount: 7, inQuery: true },
{ uri: "http://foo.mail.com/changeme2.html", tags: ["moz"], title: "", visitCount: 1, inQuery: false },
{ uri: "http://foo.mail.com/changeme3.html", title: "zydeco", visitCount: 5, inQuery: false },
];
pages.forEach(generateVisits);
}
/**
* This test will test Queries that use relative search terms and URI options
*/
function run_test()
{
run_next_test();
}
add_task(function* test_results_as_visit()
{
createTestData();
yield task_populateDB(testData);
var query = PlacesUtils.history.getNewQuery();
query.searchTerms = "moz";
query.minVisits = 2;
// Options
var options = PlacesUtils.history.getNewQueryOptions();
options.sortingMode = options.SORT_BY_VISITCOUNT_ASCENDING;
options.resultType = options.RESULTS_AS_VISIT;
// Results
var result = PlacesUtils.history.executeQuery(query, options);
var root = result.root;
root.containerOpen = true;
do_print("Number of items in result set: " + root.childCount);
for (let i=0; i < root.childCount; ++i) {
do_print("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
do_print("Adding item to query")
var tmp = [];
for (let i=0; i < 2; i++) {
tmp.push({ isVisit: true,
uri: "http://foo.com/added.html",
title: "ab moz" });
}
yield task_populateDB(tmp);
for (let i=0; i < 2; i++)
do_check_eq(root.getChild(i).title, "ab moz");
// Update an existing URI
do_print("Updating Item");
var change2 = [{ isVisit: true,
title: "moz",
uri: "http://foo.mail.com/changeme2.html" }];
yield task_populateDB(change2);
do_check_true(isInResult(change2, root));
// Update some visits - add one and take one out of query set, and simply
// change one so that it still applies to the query.
do_print("Updating More Items");
var change3 = [{ isVisit: true,
lastVisit: newTimeInMicroseconds(),
uri: "http://foo.mail.com/changeme1.html",
title: "foo"},
{ isVisit: true,
lastVisit: newTimeInMicroseconds(),
uri: "http://foo.mail.com/changeme3.html",
title: "moz",
isTag: true,
tagArray: ["foo", "moz"] }];
yield task_populateDB(change3);
do_check_false(isInResult({uri: "http://foo.mail.com/changeme1.html"}, root));
do_check_true(isInResult({uri: "http://foo.mail.com/changeme3.html"}, root));
// And now, delete one
do_print("Delete item outside of batch");
var change4 = [{ isVisit: true,
lastVisit: newTimeInMicroseconds(),
uri: "http://moilla.com/",
title: "mo,z" }];
yield task_populateDB(change4);
do_check_false(isInResult(change4, root));
root.containerOpen = false;
});
|