diff options
Diffstat (limited to 'dom/media/tests/mochitest/test_getUserMedia_peerIdentity.html')
-rw-r--r-- | dom/media/tests/mochitest/test_getUserMedia_peerIdentity.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/test_getUserMedia_peerIdentity.html b/dom/media/tests/mochitest/test_getUserMedia_peerIdentity.html new file mode 100644 index 000000000..ab75eea77 --- /dev/null +++ b/dom/media/tests/mochitest/test_getUserMedia_peerIdentity.html @@ -0,0 +1,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> |