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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests if the profiler is populated by 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 {
waitUntil,
} = require("devtools/client/performance/test/helpers/wait-utils");
const {
getSelectedRecording,
} = require("devtools/client/performance/test/helpers/recording-utils");
add_task(async function() {
const { target, console } = await initConsoleInNewTab({
url: SIMPLE_URL,
win: window,
});
await console.profile("rust");
await console.profileEnd("rust");
const { panel } = await initPerformanceInTab({ tab: target.localTab });
const { PerformanceController, WaterfallView } = panel.panelWin;
await waitUntil(() => PerformanceController.getRecordings().length == 1);
await waitUntil(() => WaterfallView.wasRenderedAtLeastOnce);
const recordings = PerformanceController.getRecordings();
is(recordings.length, 1, "One recording found in the performance panel.");
is(recordings[0].isConsole(), true, "Recording came from console.profile.");
is(recordings[0].getLabel(), "rust", "Correct label in the recording model.");
const selected = getSelectedRecording(panel);
is(
selected,
recordings[0],
"The profile from console should be selected as it's the only one."
);
is(
selected.getLabel(),
"rust",
"The profile label for the first recording is correct."
);
await teardownToolboxAndRemoveTab(panel);
});
|