blob: ab75eea7739ff5bcd08c8b2eeb5d66809c3c504e (
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
|
<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
<script type="application/javascript" src="blacksilence.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
title: "Test getUserMedia peerIdentity Constraint",
bug: "942367"
});
function theTest() {
function testPeerIdentityConstraint(withConstraint) {
var config = { audio: true, video: true };
if (withConstraint) {
config.peerIdentity = 'user@example.com';
}
info('getting media with constraints: ' + JSON.stringify(config));
return getUserMedia(config)
.then(stream => Promise.all([
audioIsSilence(withConstraint, stream),
videoIsBlack(withConstraint, stream)
]).then(() => stream.getTracks().forEach(t => t.stop())));
};
// both without and with the constraint
return testPeerIdentityConstraint(false)
.then(() => testPeerIdentityConstraint(true));
}
runTest(theTest);
</script>
</pre>
</body>
</html>
|