summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html')
-rw-r--r--testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html b/testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html
new file mode 100644
index 000000000..806416e2c
--- /dev/null
+++ b/testing/web-platform/tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html
@@ -0,0 +1,47 @@
+<!doctype html>
+<html>
+<head>
+<title>enumerateDevices: test that enumerateDevices is present</title>
+<link rel="author" title="Dr Alex Gouaillard" href="mailto:agouaillard@gmail.com"/>
+<link rel="help" href="https://w3c.github.io/mediacapture-main/#enumerating-devices">
+<meta name='assert' content='Check that the enumerateDevices() method is present.'/>
+</head>
+<body>
+<h1 class="instructions">Description</h1>
+<p class="instructions">This test checks for the presence of the
+<code>navigator.mediaDevices.enumerateDevices()</code> method.</p>
+<div id='log'></div>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script>
+"use strict";
+//NOTE ALEX: for completion, a test for ondevicechange event is missing.
+test(function () {
+ assert_true(undefined !== navigator.mediaDevices.enumerateDevices, "navigator.mediaDevices.enumerateDevices exists");
+ var p = navigator.mediaDevices.enumerateDevices()
+ p.then(function(list){
+ for(let mediainfo of list){
+ // TODO check the type of mediainfo
+ assert_true(undefined !== mediainfo.deviceId, "mediaInfo's deviceId should exist.");
+ assert_true(undefined !== mediainfo.kind, "mediaInfo's kind should exist.");
+ assert_true(undefined !== mediainfo.label, "mediaInfo's label should exist.");
+ assert_true(undefined !== mediainfo.groupId, "mediaInfo's groupId should exist.");
+ // TODO the values of some of those fields should be empty string by default if no permission has been requested.
+ if( mediainfo.kind == "audioinput" ||
+ mediainfo.kind == "videoinput") {
+ // NOTE ALEX: looks like nobody has implemented that. How can I make it a separate test,
+ // ... to have better granularity?
+ // assert_true(undefined !== mediainfo.getCapabilities(), "MediaDeviceInfo.getCapabilities() exists.");
+ // var cap = mediainfo.getcapabilities();
+ } else if ( mediainfo.kind !== "audiooutput" ) {
+ assert_unreached("mediainfo.kind should be one of 'audioinput', 'videoinput', or 'audiooutput'.")
+ }
+ }
+ })
+ p.catch(function(err){
+ assert_unreached("A call to enumerateDevices() should never fail.");
+ });
+}, "mediaDevices.enumerateDevices() is present and working on navigator");
+</script>
+</body>
+</html>