mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Implement GetAvailability for Bluetooth
This commit is contained in:
parent
8ca1383c41
commit
ca7aa6bff8
9 changed files with 98 additions and 9 deletions
|
@ -11443,6 +11443,24 @@
|
|||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-not-present.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/bluetooth/getAvailability/adapter-not-present.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-off.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/bluetooth/getAvailability/adapter-off.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-on.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/bluetooth/getAvailability/adapter-on.html",
|
||||
{}
|
||||
]
|
||||
],
|
||||
"mozilla/bluetooth/getCharacteristic/blocklisted-characteristic.html": [
|
||||
[
|
||||
"/_mozilla/mozilla/bluetooth/getCharacteristic/blocklisted-characteristic.html",
|
||||
|
@ -24372,6 +24390,18 @@
|
|||
"6bba458074ce7d8067b6420d4326cbb133e35304",
|
||||
"testharness"
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-not-present.html": [
|
||||
"e4d5e516bee397ecefee1ef679f48f11b5dabe78",
|
||||
"testharness"
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-off.html": [
|
||||
"0e3d7824d57ba676ae52c775fa21d8e6ec6d7073",
|
||||
"testharness"
|
||||
],
|
||||
"mozilla/bluetooth/getAvailability/adapter-on.html": [
|
||||
"7e37c1b939712f5920b607e27a82f34573ca40fd",
|
||||
"testharness"
|
||||
],
|
||||
"mozilla/bluetooth/getCharacteristic/blocklisted-characteristic.html": [
|
||||
"c75429728dedbc5059aa7c3cc72554bb6a9bbbcb",
|
||||
"testharness"
|
||||
|
|
|
@ -30,9 +30,6 @@
|
|||
[Bluetooth interface: attribute onserviceremoved]
|
||||
expected: FAIL
|
||||
|
||||
[Bluetooth interface: window.navigator.bluetooth must inherit property "getAvailability" with the proper type (0)]
|
||||
expected: FAIL
|
||||
|
||||
[Bluetooth interface: window.navigator.bluetooth must inherit property "referringDevice" with the proper type (2)]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -431,4 +428,3 @@
|
|||
|
||||
[BluetoothRemoteGATTDescriptor interface: calling writeValue(BufferSource) on bluetooth_descriptor with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/_mozilla/mozilla/bluetooth/bluetooth-helpers.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
promise_test(() => {
|
||||
window.testRunner.setBluetoothMockDataSet(adapter_type.not_present);
|
||||
return window.navigator.bluetooth.getAvailability()
|
||||
.then(isAvailable => assert_equals(isAvailable, false));
|
||||
}, 'GetAvailability is false if the adapter is not present.');
|
||||
</script>
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/_mozilla/mozilla/bluetooth/bluetooth-helpers.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
promise_test(() => {
|
||||
window.testRunner.setBluetoothMockDataSet(adapter_type.not_powered);
|
||||
return window.navigator.bluetooth.getAvailability()
|
||||
.then(isAvailable => assert_equals(isAvailable, false));
|
||||
}, 'GetAvailability is false if the adapter is off.');
|
||||
</script>
|
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/_mozilla/mozilla/bluetooth/bluetooth-helpers.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
promise_test(() => {
|
||||
window.testRunner.setBluetoothMockDataSet(adapter_type.empty);
|
||||
return window.navigator.bluetooth.getAvailability()
|
||||
.then(isAvailable => assert_equals(isAvailable, true));
|
||||
}, 'GetAvailability is true if the adapter is present.');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue