summaryrefslogtreecommitdiffstats
path: root/ipc/glue/test/browser/browser_audio_telemetry_utility.js
blob: e121c8904975e6e0a2b2812425ca7928c8e2f133 (plain)
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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/* import-globals-from head-telemetry.js */

Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/ipc/glue/test/browser/head-telemetry.js",
  this
);

add_setup(async function testNoTelemetry() {
  await Telemetry.clearScalars();
});

add_task(async function testAudioDecodingInUtility() {
  await runTest({ expectUtility: true, expectRDD: true });
});

add_task(async function testUtilityTelemetry() {
  const platform = Services.appinfo.OS;
  const extraKey = getExtraKey({ rddPref: true, utilityPref: true });
  for (let exp of utilityPerCodecs[platform]) {
    await verifyTelemetryForProcess(exp.process, exp.codecs, extraKey);
  }
  await verifyNoTelemetryForProcess(
    "rdd",
    ["vorbis", "mp3", "aac", "flac"],
    extraKey
  );
});