blob: 5d12538089c7c6f1f6fb5845bbc6df8b6d5ba0f1 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript;version=1.8">
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");
gumTest.chain.execute()
.then(() => forwardingTest.chain.execute())
.then(() => gumTest.close())
.then(() => forwardingTest.close())
.then(() => networkTestFinished());
});
</script>
</pre>
</body>
</html>
|