mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Depends on D10564 Differential Revision: https://phabricator.services.mozilla.com/D11293 --HG-- extra : moz-landing-system : lando
90 lines
2.7 KiB
JavaScript
90 lines
2.7 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Test functionality of real time markers.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
add_task(async function() {
|
|
const target = await addTabTarget(MAIN_DOMAIN + "doc_perf.html");
|
|
|
|
const front = await target.getFront("performance");
|
|
|
|
let lastMemoryDelta = 0;
|
|
let lastTickDelta = 0;
|
|
|
|
const counters = {
|
|
markers: [],
|
|
memory: [],
|
|
ticks: [],
|
|
};
|
|
|
|
const deferreds = {
|
|
markers: defer(),
|
|
memory: defer(),
|
|
ticks: defer(),
|
|
};
|
|
|
|
front.on("timeline-data", handler);
|
|
|
|
const rec = await front.startRecording(
|
|
{ withMarkers: true, withMemory: true, withTicks: true });
|
|
await Promise.all(Object.keys(deferreds).map(type => deferreds[type].promise));
|
|
await front.stopRecording(rec);
|
|
front.off("timeline-data", handler);
|
|
|
|
is(counters.markers.length, 1, "one marker event fired.");
|
|
is(counters.memory.length, 3, "three memory events fired.");
|
|
is(counters.ticks.length, 3, "three ticks events fired.");
|
|
|
|
await target.destroy();
|
|
gBrowser.removeCurrentTab();
|
|
|
|
function handler(name, data) {
|
|
if (name === "markers") {
|
|
if (counters.markers.length >= 1) {
|
|
return;
|
|
}
|
|
ok(data.markers[0].start, "received atleast one marker with `start`");
|
|
ok(data.markers[0].end, "received atleast one marker with `end`");
|
|
ok(data.markers[0].name, "received atleast one marker with `name`");
|
|
|
|
counters.markers.push(data.markers);
|
|
} else if (name === "memory") {
|
|
if (counters.memory.length >= 3) {
|
|
return;
|
|
}
|
|
const { delta, measurement } = data;
|
|
is(typeof delta, "number", "received `delta` in memory event");
|
|
ok(delta > lastMemoryDelta, "received `delta` in memory event");
|
|
ok(measurement.total, "received `total` in memory event");
|
|
|
|
counters.memory.push({ delta, measurement });
|
|
lastMemoryDelta = delta;
|
|
} else if (name === "ticks") {
|
|
if (counters.ticks.length >= 3) {
|
|
return;
|
|
}
|
|
const { delta, timestamps } = data;
|
|
ok(delta > lastTickDelta, "received `delta` in ticks event");
|
|
|
|
// Timestamps aren't guaranteed to always contain tick events, since
|
|
// they're dependent on the refresh driver, which may be blocked.
|
|
|
|
counters.ticks.push({ delta, timestamps });
|
|
lastTickDelta = delta;
|
|
} else if (name === "frames") {
|
|
// Nothing to do here.
|
|
} else {
|
|
ok(false, `Received unknown event: ${name}`);
|
|
}
|
|
|
|
if (name === "markers" && counters[name].length === 1 ||
|
|
name === "memory" && counters[name].length === 3 ||
|
|
name === "ticks" && counters[name].length === 3) {
|
|
deferreds[name].resolve();
|
|
}
|
|
}
|
|
});
|