-
Notifications
You must be signed in to change notification settings - Fork 54
/
test_telemetry.js
141 lines (124 loc) · 4.42 KB
/
test_telemetry.js
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
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests common Places telemetry probes by faking the telemetry service.
const { PlacesDBUtils } = ChromeUtils.import(
"resource://gre/modules/PlacesDBUtils.jsm"
);
var histograms = {
PLACES_PAGES_COUNT: val => Assert.equal(val, 1),
PLACES_BOOKMARKS_COUNT: val => Assert.equal(val, 1),
PLACES_TAGS_COUNT: val => Assert.equal(val, 1),
PLACES_KEYWORDS_COUNT: val => Assert.equal(val, 1),
PLACES_SORTED_BOOKMARKS_PERC: val => Assert.equal(val, 100),
PLACES_TAGGED_BOOKMARKS_PERC: val => Assert.equal(val, 100),
PLACES_DATABASE_FILESIZE_MB: val => Assert.ok(val > 0),
PLACES_DATABASE_FAVICONS_FILESIZE_MB: val => Assert.ok(val > 0),
PLACES_DATABASE_PAGESIZE_B: val => Assert.equal(val, 32768),
PLACES_DATABASE_SIZE_PER_PAGE_B: val => Assert.ok(val > 0),
PLACES_EXPIRATION_STEPS_TO_CLEAN2: val => Assert.ok(val > 1),
PLACES_IDLE_FRECENCY_DECAY_TIME_MS: val => Assert.ok(val >= 0),
PLACES_IDLE_MAINTENANCE_TIME_MS: val => Assert.ok(val > 0),
PLACES_ANNOS_BOOKMARKS_COUNT: val => Assert.equal(val, 1),
PLACES_ANNOS_PAGES_COUNT: val => Assert.equal(val, 1),
PLACES_MAINTENANCE_DAYSFROMLAST: val => Assert.ok(val >= 0),
};
/**
* Forces an expiration run.
*
* @param [optional] aLimit
* Limit for the expiration. Pass -1 for unlimited.
* Any other non-positive value will just expire orphans.
*
* @return {Promise}
* @resolves When expiration finishes.
* @rejects Never.
*/
function promiseForceExpirationStep(aLimit) {
let promise = promiseTopicObserved(PlacesUtils.TOPIC_EXPIRATION_FINISHED);
let expire = Cc["@mozilla.org/places/expiration;1"].getService(
Ci.nsIObserver
);
expire.observe(null, "places-debug-start-expiration", aLimit);
return promise;
}
/**
* Returns a PRTime in the past usable to add expirable visits.
*
* param [optional] daysAgo
* Expiration ignores any visit added in the last 7 days, so by default
* this will be set to 7.
* @note to be safe against DST issues we go back one day more.
*/
function getExpirablePRTime(daysAgo = 7) {
let dateObj = new Date();
// Normalize to midnight
dateObj.setHours(0);
dateObj.setMinutes(0);
dateObj.setSeconds(0);
dateObj.setMilliseconds(0);
dateObj = new Date(dateObj.getTime() - (daysAgo + 1) * 86400000);
return dateObj.getTime() * 1000;
}
add_task(async function test_execute() {
// Put some trash in the database.
let uri = Services.io.newURI("http://moz.org/");
let bookmarks = await PlacesUtils.bookmarks.insertTree({
guid: PlacesUtils.bookmarks.unfiledGuid,
children: [
{
title: "moz test",
type: PlacesUtils.bookmarks.TYPE_FOLDER,
children: [
{
title: "moz test",
url: uri,
},
],
},
],
});
PlacesUtils.tagging.tagURI(uri, ["tag"]);
await PlacesUtils.keywords.insert({ url: uri.spec, keyword: "keyword" });
// Set a large annotation.
let content = "";
while (content.length < 1024) {
content += "0";
}
await setItemAnnotation(bookmarks[1].guid, "test-anno", content);
await PlacesUtils.history.update({
url: uri,
annotations: new Map([["test-anno", content]]),
});
// Request to gather telemetry data.
Cc["@mozilla.org/places/categoriesStarter;1"]
.getService(Ci.nsIObserver)
.observe(null, "gather-telemetry", null);
await PlacesTestUtils.promiseAsyncUpdates();
// Test expiration probes.
let timeInMicroseconds = getExpirablePRTime(8);
function newTimeInMicroseconds() {
timeInMicroseconds = timeInMicroseconds + 1000;
return timeInMicroseconds;
}
for (let i = 0; i < 3; i++) {
await PlacesTestUtils.addVisits({
uri: NetUtil.newURI("http://" + i + ".moz.org/"),
visitDate: newTimeInMicroseconds(),
});
}
Services.prefs.setIntPref("places.history.expiration.max_pages", 0);
await promiseForceExpirationStep(2);
await promiseForceExpirationStep(2);
// Test idle probes.
PlacesUtils.history
.QueryInterface(Ci.nsIObserver)
.observe(null, "idle-daily", null);
await PlacesDBUtils.maintenanceOnIdle();
for (let histogramId in histograms) {
info("checking histogram " + histogramId);
let validate = histograms[histogramId];
let snapshot = Services.telemetry.getHistogramById(histogramId).snapshot();
validate(snapshot.sum);
Assert.ok(Object.values(snapshot.values).reduce((a, b) => a + b, 0) > 0);
}
});