blob: 8f4203ab70e3d0c947fabce283534af7f09a2a3b [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="/bluetooth/resources/bluetooth-test.js"></script>
<script src="/bluetooth/resources/bluetooth-fake-devices.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.getPrimaryServices('battery_service'),
new DOMException('GATT Server is disconnected. ' +
'Cannot retrieve services. ' +
'(Re)connect first with `device.gatt.connect`.',
'NetworkError'));
});
});
}, 'Device disconnects during a getPrimaryServices call that fails. Reject ' +
'with NetworkError.');
</script>