blob: 3edbbb24d2848b0e911179553771ce113c2cf4f2 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
<script>
'use strict';
bluetooth_test(() => {
let length = 1;
let descriptor;
return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
.then(() => requestDeviceWithKeyDown({
filters: [{services: ['health_thermometer']}]}))
.then(device => device.gatt.connect())
.then(gattServer => gattServer.getPrimaryService('health_thermometer'))
.then(service => service.getCharacteristic('measurement_interval'))
.then(characteristic => characteristic.getDescriptor(user_description.name))
.then(d => descriptor = d)
.then(() => descriptor.writeValue(new Uint8Array(length)))
.then(() => descriptor.writeValue(new ArrayBuffer(length)))
.then(() => descriptor.writeValue(new DataView(new ArrayBuffer(length))));
}, 'A regular write request to a writable descriptor should succeed.');
</script>