mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
c2599e18f5
--HG-- extra : rebase_source : 7e7e89e0b6400d33bc3374be31ab1a00dff33c4d
79 lines
2.8 KiB
JavaScript
79 lines
2.8 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests that the details view is locked after recording has stopped and before
|
|
* the recording has finished loading.
|
|
* Also test that the details view isn't locked if the recording that is being
|
|
* stopped isn't the active one.
|
|
*/
|
|
|
|
let test = Task.async(function*() {
|
|
let { panel } = yield initPerformance(SIMPLE_URL);
|
|
let { PerformanceController, PerformanceView, RecordingsView,
|
|
EVENTS, $ } = panel.panelWin;
|
|
|
|
let detailsContainer = $("#details-pane-container");
|
|
let recordingNotice = $("#recording-notice");
|
|
let loadingNotice = $("#loading-notice");
|
|
let detailsPane = $("#details-pane");
|
|
|
|
info("Start to record");
|
|
yield startRecording(panel);
|
|
|
|
is(detailsContainer.selectedPanel, recordingNotice,
|
|
"The recording-notice is shown while recording");
|
|
|
|
info("Stop the recording and wait for the WILL_STOP and STOPPED events");
|
|
let clicked = PerformanceView.once(EVENTS.UI_STOP_RECORDING);
|
|
let willStop = PerformanceController.once(EVENTS.RECORDING_WILL_STOP);
|
|
let hasStopped = PerformanceController.once(EVENTS.RECORDING_STOPPED);
|
|
|
|
click(panel.panelWin, $("#main-record-button"));
|
|
yield clicked;
|
|
yield willStop;
|
|
|
|
is(detailsContainer.selectedPanel, loadingNotice,
|
|
"The loading-notice is shown while the record is stopping");
|
|
|
|
let stateChanged = once(PerformanceView, EVENTS.UI_STATE_CHANGED);
|
|
yield hasStopped;
|
|
yield stateChanged;
|
|
|
|
is(detailsContainer.selectedPanel, detailsPane,
|
|
"The details panel is shown after the record has stopped");
|
|
|
|
info("Start to record again");
|
|
yield startRecording(panel);
|
|
|
|
info("While the 2nd record is still going, switch to the first one");
|
|
let select = once(PerformanceController, EVENTS.RECORDING_SELECTED);
|
|
RecordingsView.selectedIndex = 0;
|
|
yield select;
|
|
|
|
info("Stop the 2nd recording and wait for the WILL_STOP and STOPPED events");
|
|
clicked = PerformanceView.once(EVENTS.UI_STOP_RECORDING);
|
|
willStop = PerformanceController.once(EVENTS.RECORDING_WILL_STOP);
|
|
hasStopped = PerformanceController.once(EVENTS.RECORDING_STOPPED);
|
|
|
|
click(panel.panelWin, $("#main-record-button"));
|
|
yield clicked;
|
|
yield willStop;
|
|
|
|
is(detailsContainer.selectedPanel, detailsPane,
|
|
"The details panel is still shown while the 2nd record is being stopped");
|
|
is(RecordingsView.selectedIndex, 0, "The first record is still selected");
|
|
|
|
stateChanged = once(PerformanceView, EVENTS.UI_STATE_CHANGED);
|
|
yield hasStopped;
|
|
yield stateChanged;
|
|
|
|
is(detailsContainer.selectedPanel, detailsPane,
|
|
"The details panel is still shown after the 2nd record has stopped");
|
|
is(RecordingsView.selectedIndex, 1, "The second record is now selected");
|
|
|
|
yield PerformanceController.clearRecordings();
|
|
yield teardown(panel);
|
|
finish();
|
|
});
|