summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_getUserMedia_cubebDisabledFakeStreams.html
blob: f8150cc4c10baf5d70f3181ad8637781d2e4f244 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="mediaStreamPlayback.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    title: "getUserMedia fake stream with Cubeb Disabled Test",
    bug: "1443525"
  });
  /**
   * Run a test to verify we can still return a fake stream even if we cannot
   * get a cubeb context. See also Bug 1434477
   */
  runTest(async function () {
    info("Get user media with cubeb disabled and fake tracks starting");
    // Push prefs to ensure no cubeb context and fake streams
    await pushPrefs(["media.cubeb.force_null_context", true],
                    ["media.navigator.streams.fake", true],
                    ['media.audio_loopback_dev', '']);
    let testAudio = createMediaElement('audio', 'testAudio');
    // Request audio only, to avoid cams
    let constraints = {audio: true, video: false};
    let stream;
    try {
      stream = await getUserMedia(constraints);
    } catch (e) {
      // We've got no audio backend, so we expect gUM to fail
      ok(false, `Did not expect to fail, but got ${e}`);
      return;
    }
    ok(stream, "getUserMedia should get a stream!");
    let playback = new MediaStreamPlayback(testAudio, stream);
    return playback.playMedia(false);
  });


</script>
</pre>
</body>
</html>