blob: be528548a199853582d4f77276ee06e091afea2a [file] [log] [blame]
<!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py -->
<!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(() => {
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(descriptor => {
return setBluetoothFakeAdapter('EmptyAdapter')
.then(
() => assert_promise_rejects_with_message(
descriptor.readValue(),
new DOMException(
'Bluetooth Device is no longer in range.',
'NetworkError'),
'Device went out of range.'));
});
}, 'Device goes out of range. Reject with NetworkError.');
</script>