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
63 lines
2.2 KiB
JavaScript
63 lines
2.2 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if the retrieved profiler data samples are correctly filtered and
|
|
* normalized before passed to consumers.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
// time in ms
|
|
const WAIT_TIME = 1000;
|
|
|
|
add_task(async function() {
|
|
await SpecialPowers.pushPrefEnv({"set": [["privacy.reduceTimerPrecision", false]]});
|
|
const target = await addTabTarget(MAIN_DOMAIN + "doc_perf.html");
|
|
|
|
const front = await target.getFront("performance");
|
|
|
|
// Perform the first recording...
|
|
|
|
const firstRecording = await front.startRecording();
|
|
const firstRecordingStartTime = firstRecording._startTime;
|
|
info("Started profiling at: " + firstRecordingStartTime);
|
|
|
|
// allow the profiler module to sample some cpu activity
|
|
busyWait(WAIT_TIME);
|
|
|
|
await front.stopRecording(firstRecording);
|
|
|
|
ok(firstRecording.getDuration() >= WAIT_TIME,
|
|
"The first recording duration is correct.");
|
|
|
|
// Perform the second recording...
|
|
|
|
const secondRecording = await front.startRecording();
|
|
const secondRecordingStartTime = secondRecording._startTime;
|
|
info("Started profiling at: " + secondRecordingStartTime);
|
|
|
|
// allow the profiler module to sample more cpu activity
|
|
busyWait(WAIT_TIME);
|
|
|
|
await front.stopRecording(secondRecording);
|
|
const secondRecordingProfile = secondRecording.getProfile();
|
|
const secondRecordingSamples = secondRecordingProfile.threads[0].samples.data;
|
|
|
|
ok(secondRecording.getDuration() >= WAIT_TIME,
|
|
"The second recording duration is correct.");
|
|
|
|
const TIME_SLOT = secondRecordingProfile.threads[0].samples.schema.time;
|
|
ok(secondRecordingSamples[0][TIME_SLOT] < secondRecordingStartTime,
|
|
"The second recorded sample times were normalized.");
|
|
ok(secondRecordingSamples[0][TIME_SLOT] > 0,
|
|
"The second recorded sample times were normalized correctly.");
|
|
ok(!secondRecordingSamples.find(
|
|
e => e[TIME_SLOT] + secondRecordingStartTime <= firstRecording.getDuration()
|
|
),
|
|
"There should be no samples from the first recording in the second one, " +
|
|
"even though the total number of frames did not overflow.");
|
|
|
|
await target.destroy();
|
|
gBrowser.removeCurrentTab();
|
|
});
|