mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
Automatic changes by ESLint, except for manual corrections for .xml files. Differential Revision: https://phabricator.services.mozilla.com/D4439 --HG-- extra : moz-landing-system : lando
102 lines
3.3 KiB
JavaScript
102 lines
3.3 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
ChromeUtils.import("resource://gre/modules/TelemetryController.jsm", this);
|
|
ChromeUtils.import("resource://gre/modules/TelemetrySession.jsm", this);
|
|
|
|
function tick(aHowMany) {
|
|
for (let i = 0; i < aHowMany; i++) {
|
|
Services.obs.notifyObservers(null, "user-interaction-active");
|
|
}
|
|
}
|
|
|
|
function checkSessionTicks(aExpected) {
|
|
let payload = TelemetrySession.getPayload();
|
|
Assert.equal(payload.simpleMeasurements.activeTicks, aExpected,
|
|
"Should record the expected number of active ticks for the session.");
|
|
}
|
|
|
|
function checkSubsessionTicks(aExpected, aClearSubsession) {
|
|
let payload = TelemetrySession.getPayload("main", aClearSubsession);
|
|
Assert.equal(payload.simpleMeasurements.activeTicks, aExpected,
|
|
"Should record the expected number of active ticks for the subsession.");
|
|
if (aExpected > 0) {
|
|
Assert.equal(payload.processes.parent.scalars["browser.engagement.active_ticks"], aExpected,
|
|
"Should record the expected number of active ticks for the subsession, in a scalar.");
|
|
}
|
|
}
|
|
|
|
add_task(async function test_setup() {
|
|
do_get_profile();
|
|
// Make sure we don't generate unexpected pings due to pref changes.
|
|
await setEmptyPrefWatchlist();
|
|
});
|
|
|
|
add_task(async function test_record_activeTicks() {
|
|
await TelemetryController.testSetup();
|
|
|
|
let checkActiveTicks = (expected) => {
|
|
// Scalars are only present in subsession payloads.
|
|
let payload = TelemetrySession.getPayload("main");
|
|
Assert.equal(payload.simpleMeasurements.activeTicks, expected,
|
|
"TelemetrySession must record the expected number of active ticks (in simpleMeasurements).");
|
|
// Subsessions are not yet supported on Android.
|
|
if (!gIsAndroid) {
|
|
Assert.equal(payload.processes.parent.scalars["browser.engagement.active_ticks"], expected,
|
|
"TelemetrySession must record the expected number of active ticks (in scalars).");
|
|
}
|
|
};
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
Services.obs.notifyObservers(null, "user-interaction-active");
|
|
}
|
|
checkActiveTicks(3);
|
|
|
|
// Now send inactive. This must not increment the active ticks.
|
|
Services.obs.notifyObservers(null, "user-interaction-inactive");
|
|
checkActiveTicks(3);
|
|
|
|
// If we send active again, this should be counted as inactive.
|
|
Services.obs.notifyObservers(null, "user-interaction-active");
|
|
checkActiveTicks(3);
|
|
|
|
// If we send active again, this should be counted as active.
|
|
Services.obs.notifyObservers(null, "user-interaction-active");
|
|
checkActiveTicks(4);
|
|
|
|
Services.obs.notifyObservers(null, "user-interaction-active");
|
|
checkActiveTicks(5);
|
|
|
|
await TelemetryController.testShutdown();
|
|
});
|
|
|
|
add_task({
|
|
skip_if: () => gIsAndroid,
|
|
},
|
|
async function test_subsession_activeTicks() {
|
|
await TelemetryController.testReset();
|
|
Telemetry.clearScalars();
|
|
|
|
tick(5);
|
|
checkSessionTicks(5);
|
|
checkSubsessionTicks(5, true);
|
|
|
|
// After clearing the subsession, subsession ticks should be 0 but session
|
|
// ticks should still be 5.
|
|
checkSubsessionTicks(0);
|
|
checkSessionTicks(5);
|
|
|
|
tick(1);
|
|
checkSessionTicks(6);
|
|
checkSubsessionTicks(1, true);
|
|
|
|
checkSubsessionTicks(0);
|
|
checkSessionTicks(6);
|
|
|
|
tick(2);
|
|
checkSessionTicks(8);
|
|
checkSubsessionTicks(2);
|
|
|
|
await TelemetryController.testShutdown();
|
|
});
|