mirror of
https://github.com/servo/servo.git
synced 2025-08-12 00:45:33 +01:00
Add event target for bluetooth
This commit is contained in:
parent
b18ec28fa7
commit
d9c7ffb5b3
11 changed files with 111 additions and 19 deletions
|
@ -7268,6 +7268,12 @@
|
|||
"url": "/_mozilla/mozilla/bluetooth/readValue/characteristic/disconnect-called-before.html"
|
||||
}
|
||||
],
|
||||
"mozilla/bluetooth/readValue/characteristic/event-is-fired.html": [
|
||||
{
|
||||
"path": "mozilla/bluetooth/readValue/characteristic/event-is-fired.html",
|
||||
"url": "/_mozilla/mozilla/bluetooth/readValue/characteristic/event-is-fired.html"
|
||||
}
|
||||
],
|
||||
"mozilla/bluetooth/readValue/characteristic/read-succeeds.html": [
|
||||
{
|
||||
"path": "mozilla/bluetooth/readValue/characteristic/read-succeeds.html",
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
<!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.heart_rate);
|
||||
return window.navigator.bluetooth.requestDevice({
|
||||
filters: [{services: [heart_rate.name]}],
|
||||
optionalServices: [generic_access.name]
|
||||
})
|
||||
.then(device => device.gatt.connect())
|
||||
.then(gattServer => gattServer.getPrimaryService(generic_access.name))
|
||||
.then(service => service.getCharacteristic(device_name.name))
|
||||
.then(characteristic => {
|
||||
let event = 'characteristicvaluechanged';
|
||||
let event_promise = new Promise((resolve, reject) => {
|
||||
let event_listener = (e) => {
|
||||
characteristic.removeEventListener(event, event_listener);
|
||||
resolve(e.target.value);
|
||||
};
|
||||
characteristic.addEventListener(event, event_listener);
|
||||
});
|
||||
return characteristic.readValue()
|
||||
.then(result => {
|
||||
return Promise.all([result, event_promise]);
|
||||
});
|
||||
}).then(results => {
|
||||
let read_value = results[0];
|
||||
let event_value = results[1];
|
||||
assert_array_equals(event_value, read_value);
|
||||
});
|
||||
}, 'Reading a characteristic should fire an event.');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue