summaryrefslogtreecommitdiffstats
path: root/ipc/glue/test/browser/test_utility_audio_on.html
blob: f473527520dfc9351b07282dc5fd5cd22e9db386 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<html>
<head>
  <title>Audio decoder in Utility process</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="head.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();

(async function() {
  const platform = SpecialPowers.Services.appinfo.OS;
  for (let {src, expectations} of audioTestData()) {
    if (!(platform in expectations)) {
      info(`Skipping ${src} for ${platform}`);
      continue;
    }

    try {
      await runMochitestUtilityAudio(src, { expectUtility: expectations[platform].process, expectDecoder: expectations[platform].decoder, expectContent: false, expectJava: false });
    } catch (ex) {
      ok(false, "Failure");
    }
  }

  // Remove all after Bug 1771196
  for (let src of [
    "small-shot.m4a",
  ]) {
    try {
      await runMochitestUtilityAudio(src, { expectUtility: "", expectDecoder: "android decoder", expectContent: false, expectJava: true });
    } catch (ex) {
      ok(false, `Failure ${ex}`);
    }
  }

  SimpleTest.finish();
})();
</script>
</pre>
</body>
</html>