blob: a0ed18c841555834c92b223ea826e8766408dd3e [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(() => {
return setBluetoothFakeAdapter('HeartRateAdapter')
.then(() => requestDeviceWithKeyDown({
filters: [{services: ['heart_rate']}]}))
.then(device => device.gatt.connect())
.then(gattService => gattService.getPrimaryService('heart_rate'))
.then(service => service.getCharacteristic('heart_rate_measurement'))
.then(characteristic => {
return setBluetoothFakeAdapter('MissingServiceHeartRateAdapter')
.then(() => assert_promise_rejects_with_message(
characteristic.startNotifications(),
new DOMException('GATT Service no longer exists.',
'InvalidStateError'),
'Service got removed.'));
});
}, 'Service is removed. Reject with InvalidStateError.');
</script>