| Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..96a7d46a2ec34542b3754f928b76c74323c49333
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html
|
| @@ -0,0 +1,23 @@
|
| +<!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';
|
| +promise_test(() => {
|
| + return setBluetoothFakeAdapter('TwoHeartRateServicesAdapter')
|
| + .then(() => requestDeviceWithKeyDown({
|
| + acceptAllDevices: true,
|
| + optionalServices: ['heart_rate']
|
| + }))
|
| + .then(device => device.gatt.connect())
|
| + .then(gattServer => gattServer.getPrimaryServices())
|
| + .then(services => {
|
| + assert_equals(services.length, 2);
|
| + services.forEach(service => {
|
| + assert_equals(service.uuid, BluetoothUUID.getService('heart_rate'));
|
| + });
|
| + })
|
| +}, 'requestDevice called with acceptAllDevices: true and with ' +
|
| + 'optionalServices. Should get access to services.');
|
| +</script>
|
|
|