1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that the frontend is disabled when in private browsing mode.
*/
const { SIMPLE_URL } = require("devtools/client/performance/test/helpers/urls");
const { addWindow } = require("devtools/client/performance/test/helpers/tab-utils");
const { initPerformanceInNewTab, teardownToolboxAndRemoveTab } = require("devtools/client/performance/test/helpers/panel-utils");
const { startRecording, stopRecording } = require("devtools/client/performance/test/helpers/actions");
const { once } = require("devtools/client/performance/test/helpers/event-utils");
let gPanelWinTuples = [];
add_task(function* () {
yield testNormalWindow();
yield testPrivateWindow();
yield testRecordingFailingInWindow(0);
yield testRecordingFailingInWindow(1);
yield teardownPerfInWindow(1, { shouldCloseWindow: true, dontWaitForTabClose: true });
yield testRecordingSucceedingInWindow(0);
yield teardownPerfInWindow(0, { shouldCloseWindow: false });
gPanelWinTuples = null;
});
function* createPanelInNewWindow(options) {
let win = yield addWindow(options);
return yield createPanelInWindow(options, win);
}
function* createPanelInWindow(options, win = window) {
let { panel } = yield initPerformanceInNewTab({
url: SIMPLE_URL,
win: win
}, options);
gPanelWinTuples.push({ panel, win });
return { panel, win };
}
function* testNormalWindow() {
let { panel } = yield createPanelInWindow({
private: false
});
let { PerformanceView } = panel.panelWin;
is(PerformanceView.getState(), "empty",
"The initial state of the performance panel view is correct (1).");
}
function* testPrivateWindow() {
let { panel } = yield createPanelInNewWindow({
private: true,
// The add-on SDK can't seem to be able to listen to "ready" or "close"
// events for private tabs. Don't really absolutely need to though.
dontWaitForTabReady: true
});
let { PerformanceView } = panel.panelWin;
is(PerformanceView.getState(), "unavailable",
"The initial state of the performance panel view is correct (2).");
}
function* testRecordingFailingInWindow(index) {
let { panel } = gPanelWinTuples[index];
let { EVENTS, PerformanceController } = panel.panelWin;
let onRecordingStarted = () => {
ok(false, "Recording should not start while a private window is present.");
};
PerformanceController.on(EVENTS.RECORDING_STATE_CHANGE, onRecordingStarted);
let whenFailed = once(PerformanceController,
EVENTS.BACKEND_FAILED_AFTER_RECORDING_START);
PerformanceController.startRecording();
yield whenFailed;
ok(true, "Recording has failed.");
PerformanceController.off(EVENTS.RECORDING_STATE_CHANGE, onRecordingStarted);
}
function* testRecordingSucceedingInWindow(index) {
let { panel } = gPanelWinTuples[index];
let { EVENTS, PerformanceController } = panel.panelWin;
let onRecordingFailed = () => {
ok(false, "Recording should start while now private windows are present.");
};
PerformanceController.on(EVENTS.BACKEND_FAILED_AFTER_RECORDING_START,
onRecordingFailed);
yield startRecording(panel);
yield stopRecording(panel);
ok(true, "Recording has succeeded.");
PerformanceController.off(EVENTS.BACKEND_FAILED_AFTER_RECORDING_START,
onRecordingFailed);
}
function* teardownPerfInWindow(index, options) {
let { panel, win } = gPanelWinTuples[index];
yield teardownToolboxAndRemoveTab(panel, options);
if (options.shouldCloseWindow) {
win.close();
}
}
|