Add event target for bluetooth

This commit is contained in:
Attila Dusnoki 2016-11-18 19:08:25 +01:00 committed by Attila Dusnoki
parent b18ec28fa7
commit d9c7ffb5b3
11 changed files with 111 additions and 19 deletions

View file

@ -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",

View file

@ -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>