summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_stereoFmtpPref.html
blob: ab7811fe82331eeb8f34d4d3df2577b460eb2e49 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "1793776",
    title: "Test that media.peerconnection.sdp.disable_stereo_fmtp works"
  });

  const tests = [
    async function testStereo() {
      const offerer = new RTCPeerConnection();
      offerer.addTransceiver('audio');
      const answerer = new RTCPeerConnection();
      await offerer.setLocalDescription();
      ok(offerer.localDescription.sdp.includes('stereo=1'),
          'Offer uses stereo=1 when media.peerconnection.sdp.disable_stereo_fmtp is not set');
      await answerer.setRemoteDescription(offerer.localDescription);
      const {sdp} = await answerer.createAnswer();
      ok(sdp.includes('stereo=1'), 'Answer uses stereo=1 when media.peerconnection.sdp.disable_stereo_fmtp is not set');
    },

    async function testNoStereo() {
      await pushPrefs(
          ['media.peerconnection.sdp.disable_stereo_fmtp', true]);

      const offerer = new RTCPeerConnection();
      offerer.addTransceiver('audio');
      const answerer = new RTCPeerConnection();
      await offerer.setLocalDescription();
      ok(offerer.localDescription.sdp.includes('stereo=0'),
          'Offer uses stereo=0 when media.peerconnection.sdp.disable_stereo_fmtp is set');
      await answerer.setRemoteDescription(offerer.localDescription);
      const {sdp} = await answerer.createAnswer();
      ok(sdp.includes('stereo=0'), 'Answer uses stereo=0 when media.peerconnection.sdp.disable_stereo_fmtp is set');
    },
  ];

  runNetworkTest(async () => {
    for (const test of tests) {
      info(`Running test: ${test.name}`);
      try {
        await test();
      } catch (e) {
        ok(false, `Caught ${e.name}: ${e.message} ${e.stack}`);
      }
      info(`Done running test: ${test.name}`);
      // Make sure we don't build up a pile of GC work, and also get PCImpl to
      // print their timecards.
      await new Promise(r => SpecialPowers.exactGC(r));
    }

    await SpecialPowers.popPrefEnv();
  });
</script>
</pre>
</body>
</html>