blob: 0ab9a8cfbc713c095ff5f49f5c37fb6ba64be702 [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>
'use strict';
bluetooth_test(t => {
return setBluetoothFakeAdapter('DisconnectingHeartRateAdapter')
.then(() => requestDeviceWithTrustedClick({
filters: [{services: ['heart_rate']}],
optionalServices: [request_disconnection_service_uuid,
'battery_service']
}))
.then(device => {
return device.gatt.connect()
.then(gatt => get_request_disconnection(gatt))
.then(requestDisconnection => {
requestDisconnection();
return assert_promise_rejects_with_message(
// getPrimaryServices() can't fail because we request access to the
// disconnection service, which we need for this test.
// TODO(crbug.com/719816): Add a call to getPrimaryServices() when
// the disconnection service is no longer needed.
device.gatt.getPrimaryService('battery_service'),
new DOMException('GATT Server is disconnected. ' +
'Cannot retrieve services. ' +
'(Re)connect first with `device.gatt.connect`.',
'NetworkError'));
});
});
}, 'Device disconnects during a getPrimaryService call that fails. Reject ' +
'with NetworkError.');
</script>