mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-05 16:09:02 +00:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests if the profiler removes all pending recordings in case of a
|
|
* sudden deactivation.
|
|
*/
|
|
|
|
let test = Task.async(function*() {
|
|
let [target, debuggee, panel] = yield initFrontend(SIMPLE_URL);
|
|
let { $, EVENTS, RecordingsListView } = panel.panelWin;
|
|
|
|
is(RecordingsListView.itemCount, 0,
|
|
"There should be no recordings visible yet.");
|
|
is($("#profile-pane").selectedPanel, $("#empty-notice"),
|
|
"There should be an empty notice displayed in the profile view.");
|
|
|
|
yield startRecording(panel);
|
|
|
|
is(RecordingsListView.itemCount, 1,
|
|
"There should be one recording visible now.");
|
|
is($("#profile-pane").selectedPanel, $("#recording-notice"),
|
|
"There should be a recording notice displayed in the profile view.");
|
|
|
|
let whenLost = panel.panelWin.once(EVENTS.RECORDING_LOST);
|
|
|
|
// Forcibly stop the built-in profiler module.
|
|
nsIProfilerModule.StopProfiler();
|
|
|
|
yield whenLost;
|
|
ok(true, "Recording was cancelled in the frontend.");
|
|
|
|
is(RecordingsListView.itemCount, 0,
|
|
"There should be no recordings visible now.");
|
|
is($("#profile-pane").selectedPanel, $("#empty-notice"),
|
|
"There should be an empty notice displayed in the profile view again.");
|
|
|
|
ok(!$("#record-button").hasAttribute("checked"),
|
|
"The record button was unchecked.");
|
|
|
|
yield teardown(panel);
|
|
finish();
|
|
});
|