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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/* import-globals-from /tools/profiler/tests/shared-head.js */
Services.scriptloader.loadSubScript(
"chrome://mochitests/content/browser/tools/profiler/tests/browser/shared-head.js",
this
);
// When running full suite, previous tests may have left some utility
// processes running and this might interfere with our testing.
add_setup(async function ensureNoExistingProcess() {
await killUtilityProcesses();
});
add_task(async () => {
const utilityPid = await startUtilityProcess();
info("Start the profiler");
await startProfiler();
let profile;
await TestUtils.waitForCondition(async () => {
profile = await Services.profiler.getProfileDataAsync();
return (
// Search for process name to not be disturbed by other types of utility
// e.g. Utility AudioDecoder
profile.processes.filter(
ps => ps.threads[0].processName === "Utility Process"
).length === 1
);
}, "Give time for the profiler to start and collect some samples");
info(`Check that the utility process ${utilityPid} is present.`);
let utilityProcessIndex = profile.processes.findIndex(
p => p.threads[0].pid == utilityPid
);
Assert.notEqual(utilityProcessIndex, -1, "Could find index of utility");
Assert.equal(
profile.processes[utilityProcessIndex].threads[0].processType,
"utility",
"Profile has processType utility"
);
Assert.equal(
profile.processes[utilityProcessIndex].threads[0].name,
"GeckoMain",
"Profile has correct main thread name"
);
Assert.equal(
profile.processes[utilityProcessIndex].threads[0].processName,
"Utility Process",
"Profile has correct process name"
);
Assert.greater(
profile.processes[utilityProcessIndex].threads.length,
0,
"The utility process should have threads"
);
Assert.equal(
profile.threads.length,
1,
"The parent process should have only one thread"
);
Services.profiler.StopProfiler();
await cleanUtilityProcessShutdown();
});
|