blob: 4587791cea25ef3aaf5a41c4d160a954aaf21fe6 [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('DelayedServicesDiscoveryAdapter')
.then(() => requestDeviceWithKeyDown({
filters: [{name: 'Heart Rate Device'}],
optionalServices: ['battery_service']}))
.then(device => device.gatt.connect())
.then(gattServer => assert_promise_rejects_with_message(
gattServer.getPrimaryServices(),
new DOMException('No Services found in device.', 'NotFoundError')));
}, 'Delayed service discovery, request for present service without permission for that service. Reject with NotFoundError.');
</script>