blob: e5c715cd9fdbb616f152c6135fe4da7d6d4739f9 [file] [log] [blame]
<!-- Generated by //third_party/blink/web_tests/bluetooth/generate.py -->
<!DOCTYPE html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../resources/testdriver.js"></script>
<script src="../../../resources/testdriver-vendor.js"></script>
<script src="../../../external/wpt/bluetooth/resources/bluetooth-helpers.js"></script>
<script>
// TODO(672127) Use this test case to test the rest of characteristic functions.
'use strict';
bluetooth_test(() => {
return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
.then(() => requestDeviceWithTrustedClick({
filters: [{services: ['health_thermometer']}]}))
.then(device => device.gatt.connect())
.then(gattServer => gattServer.getPrimaryService('health_thermometer'))
.then(service => service.getCharacteristic('measurement_interval'))
.then(characteristic => {
return setBluetoothFakeAdapter('EmptyAdapter')
.then(() => assert_promise_rejects_with_message(
characteristic.getDescriptors(user_description.name),
new DOMException('Bluetooth Device is no longer in range.',
'NetworkError'),
'Device went out of range.'));
});
}, 'Device goes out of range. Reject with NetworkError.');
</script>