From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../test/browser_perf-console-record-03.js | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 devtools/client/performance/test/browser_perf-console-record-03.js (limited to 'devtools/client/performance/test/browser_perf-console-record-03.js') diff --git a/devtools/client/performance/test/browser_perf-console-record-03.js b/devtools/client/performance/test/browser_perf-console-record-03.js new file mode 100644 index 000000000..a12aab5f2 --- /dev/null +++ b/devtools/client/performance/test/browser_perf-console-record-03.js @@ -0,0 +1,58 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ +"use strict"; + +/** + * Tests if the profiler is populated by in-progress console recordings, and + * also console recordings that have finished before it was opened. + */ + +const { SIMPLE_URL } = require("devtools/client/performance/test/helpers/urls"); +const { initPerformanceInTab, initConsoleInNewTab, teardownToolboxAndRemoveTab } = require("devtools/client/performance/test/helpers/panel-utils"); +const { waitForRecordingStoppedEvents } = require("devtools/client/performance/test/helpers/actions"); +const { waitUntil } = require("devtools/client/performance/test/helpers/wait-utils"); +const { getSelectedRecording } = require("devtools/client/performance/test/helpers/recording-utils"); + +add_task(function* () { + let { target, console } = yield initConsoleInNewTab({ + url: SIMPLE_URL, + win: window + }); + + yield console.profile("rust"); + yield console.profileEnd("rust"); + yield console.profile("rust2"); + + let { panel } = yield initPerformanceInTab({ tab: target.tab }); + let { PerformanceController, WaterfallView } = panel.panelWin; + + yield waitUntil(() => PerformanceController.getRecordings().length == 2); + yield waitUntil(() => WaterfallView.wasRenderedAtLeastOnce); + + let recordings = PerformanceController.getRecordings(); + is(recordings.length, 2, "Two recordings found in the performance panel."); + is(recordings[0].isConsole(), true, "Recording came from console.profile (1)."); + is(recordings[0].getLabel(), "rust", "Correct label in the recording model (1)."); + is(recordings[0].isRecording(), false, "Recording is still recording (1)."); + is(recordings[1].isConsole(), true, "Recording came from console.profile (2)."); + is(recordings[1].getLabel(), "rust2", "Correct label in the recording model (2)."); + is(recordings[1].isRecording(), true, "Recording is still recording (2)."); + + const selected = getSelectedRecording(panel); + is(selected, recordings[0], + "The first console recording should be selected."); + is(selected.getLabel(), "rust", + "The profile label for the first recording is correct."); + + let stopped = waitForRecordingStoppedEvents(panel, { + // only emitted for manual recordings + skipWaitingForBackendReady: true, + // only emitted when a finished recording is selected + skipWaitingForOverview: true, + skipWaitingForSubview: true, + }); + yield console.profileEnd("rust2"); + yield stopped; + + yield teardownToolboxAndRemoveTab(panel); +}); -- cgit v1.2.3