summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_forwarding_basicAudioVideoCombined.html
blob: 84b53a123bf09d0181be33f968e007e21d5cea03 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "931903",
    title: "Forwarding a stream from a combined audio/video peerconnection to another"
  });

runNetworkTest(function() {
  var gumTest = new PeerConnectionTest();

  var forwardingOptions = { config_local: { label_suffix: "forwarded" },
                            config_remote: { label_suffix: "forwarded" } };
  var forwardingTest = new PeerConnectionTest(forwardingOptions);

  gumTest.setMediaConstraints([{audio: true, video: true}], []);
  forwardingTest.setMediaConstraints([{audio: true, video: true}], []);
  forwardingTest.chain.replace("PC_LOCAL_GUM", [
    function PC_FORWARDING_CAPTUREVIDEO(test) {
      var streams = gumTest.pcRemote._pc.getRemoteStreams();
      is(streams.length, 1, "One stream to forward");
      is(streams[0].getTracks().length, 2, "Forwarded stream has 2 tracks");
      forwardingTest.pcLocal.attachLocalStream(streams[0]);
      return Promise.resolve();
    }
  ]);
  gumTest.chain.removeAfter("PC_REMOTE_WAIT_FOR_MEDIA_FLOW");
  return gumTest.chain.execute()
    .then(() => forwardingTest.chain.execute())
    .then(() => gumTest.close())
    .then(() => forwardingTest.close());
});
</script>
</pre>
</body>
</html>