forked from mirrors/gecko-dev
MozReview-Commit-ID: F6xUXCgdRE4 --HG-- extra : rebase_source : 65de1b0aba412d9044b5196115f74276caa058f2
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Test that we get a "TimeStamp" marker.
|
|
*/
|
|
"use strict";
|
|
|
|
const { PerformanceFront } = require("devtools/shared/fronts/performance");
|
|
const { pmmConsoleMethod, pmmLoadFrameScripts, pmmClearFrameScripts }
|
|
= require("devtools/client/performance/test/helpers/profiler-mm-utils");
|
|
const MARKER_NAME = "TimeStamp";
|
|
|
|
add_task(async function() {
|
|
await addTab(MAIN_DOMAIN + "doc_perf.html");
|
|
|
|
initDebuggerServer();
|
|
const client = new DebuggerClient(DebuggerServer.connectPipe());
|
|
const form = await connectDebuggerClient(client);
|
|
const front = PerformanceFront(client, form);
|
|
await front.connect();
|
|
const rec = await front.startRecording({ withMarkers: true });
|
|
|
|
pmmLoadFrameScripts(gBrowser);
|
|
pmmConsoleMethod("timeStamp");
|
|
pmmConsoleMethod("timeStamp", "myLabel");
|
|
|
|
const markers = await waitForMarkerType(front, MARKER_NAME, m => m.length >= 2);
|
|
|
|
await front.stopRecording(rec);
|
|
|
|
ok(markers.every(({stack}) => typeof stack === "number"),
|
|
"All markers have stack references.");
|
|
ok(markers.every(({name}) => name === "TimeStamp"),
|
|
"All markers found are TimeStamp markers");
|
|
ok(markers.length === 2, "found 2 TimeStamp markers");
|
|
ok(markers.every(({start, end}) => typeof start === "number" && start === end),
|
|
"All markers have equal start and end times");
|
|
is(markers[0].causeName, void 0, "Unlabeled timestamps have an empty causeName");
|
|
is(markers[1].causeName, "myLabel", "Labeled timestamps have correct causeName");
|
|
|
|
pmmClearFrameScripts();
|
|
|
|
await client.close();
|
|
gBrowser.removeCurrentTab();
|
|
});
|