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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* ***** BEGIN LICENSE BLOCK *****
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
* ***** END LICENSE BLOCK ***** */
var testData = [
{
isVisit: true,
title: "page 0",
uri: "http://mozilla.com/",
transType: Ci.nsINavHistoryService.TRANSITION_TYPED,
},
{
isVisit: true,
title: "page 1",
uri: "http://google.com/",
transType: Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
},
{
isVisit: true,
title: "page 2",
uri: "http://microsoft.com/",
transType: Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
},
{
isVisit: true,
title: "page 3",
uri: "http://en.wikipedia.org/",
transType: Ci.nsINavHistoryService.TRANSITION_BOOKMARK,
},
{
isVisit: true,
title: "page 4",
uri: "http://fr.wikipedia.org/",
transType: Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
},
{
isVisit: true,
title: "page 5",
uri: "http://apple.com/",
transType: Ci.nsINavHistoryService.TRANSITION_TYPED,
},
{
isVisit: true,
title: "page 6",
uri: "http://campus-bike-store.com/",
transType: Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
},
{
isVisit: true,
title: "page 7",
uri: "http://uwaterloo.ca/",
transType: Ci.nsINavHistoryService.TRANSITION_TYPED,
},
{
isVisit: true,
title: "page 8",
uri: "http://pugcleaner.com/",
transType: Ci.nsINavHistoryService.TRANSITION_BOOKMARK,
},
{
isVisit: true,
title: "page 9",
uri: "http://de.wikipedia.org/",
transType: Ci.nsINavHistoryService.TRANSITION_TYPED,
},
{
isVisit: true,
title: "arewefastyet",
uri: "http://arewefastyet.com/",
transType: Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
},
{
isVisit: true,
title: "arewefastyet",
uri: "http://arewefastyet.com/",
transType: Ci.nsINavHistoryService.TRANSITION_BOOKMARK,
},
];
// sets of indices of testData array by transition type
var testDataTyped = [0, 5, 7, 9];
var testDataDownload = [1, 2, 4, 6, 10];
var testDataBookmark = [3, 8, 11];
add_task(async function test_transitions() {
let timeNow = Date.now();
for (let item of testData) {
await PlacesTestUtils.addVisits({
uri: uri(item.uri),
transition: item.transType,
visitDate: timeNow++ * 1000,
title: item.title,
});
}
// dump_table("moz_places");
// dump_table("moz_historyvisits");
var numSortFunc = function(a, b) {
return a - b;
};
var arrs = testDataTyped
.concat(testDataDownload)
.concat(testDataBookmark)
.sort(numSortFunc);
// Four tests which compare the result of a query to an expected set.
var data = arrs.filter(function(index) {
return (
testData[index].uri.match(/arewefastyet\.com/) &&
testData[index].transType == Ci.nsINavHistoryService.TRANSITION_DOWNLOAD
);
});
compareQueryToTestData(
"place:domain=arewefastyet.com&transition=" +
Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
data.slice()
);
compareQueryToTestData(
"place:transition=" + Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
testDataDownload.slice()
);
compareQueryToTestData(
"place:transition=" + Ci.nsINavHistoryService.TRANSITION_TYPED,
testDataTyped.slice()
);
compareQueryToTestData(
"place:transition=" +
Ci.nsINavHistoryService.TRANSITION_DOWNLOAD +
"&transition=" +
Ci.nsINavHistoryService.TRANSITION_BOOKMARK,
data
);
// Tests the live update property of transitions.
var query = {};
var options = {};
PlacesUtils.history.queryStringToQuery(
"place:transition=" + Ci.nsINavHistoryService.TRANSITION_DOWNLOAD,
query,
options
);
var result = PlacesUtils.history.executeQuery(query.value, options.value);
var root = result.root;
root.containerOpen = true;
Assert.equal(testDataDownload.length, root.childCount);
await PlacesTestUtils.addVisits({
uri: uri("http://getfirefox.com"),
transition: TRANSITION_DOWNLOAD,
});
Assert.equal(testDataDownload.length + 1, root.childCount);
root.containerOpen = false;
});
/*
* Takes a query and a set of indices. The indices correspond to elements
* of testData that are the result of the query.
*/
function compareQueryToTestData(queryStr, data) {
var query = {};
var options = {};
PlacesUtils.history.queryStringToQuery(queryStr, query, options);
var result = PlacesUtils.history.executeQuery(query.value, options.value);
var root = result.root;
for (var i = 0; i < data.length; i++) {
data[i] = testData[data[i]];
data[i].isInQuery = true;
}
compareArrayToResult(data, root);
}
|