summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_restartIceNoRtcpMux.html
blob: 5d4780211a9200d0576f377182abc255ba6a0851 (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="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "906986",
    title: "Renegotiation: restart ice, with disabled RTCP-Mux"
  });

  var test;
  runNetworkTest(function (options) {
    options = options || { };
    options.rtcpmux = false;
    test = new PeerConnectionTest(options);

    addRenegotiation(test.chain,
      [
        // causes a full, normal ice restart
        function PC_LOCAL_SET_OFFER_OPTION(test) {
          test.setOfferOptions({ iceRestart: true });
        },
        function PC_LOCAL_EXPECT_ICE_CHECKING(test) {
          test.pcLocal.expectIceChecking();
        },
        function PC_REMOTE_EXPECT_ICE_CHECKING(test) {
          test.pcRemote.expectIceChecking();
        }
      ]
    );

    test.setMediaConstraints([{audio: true}, {video: true}],
                             [{audio: true}, {video: true}]);
    return test.run();
  });

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