OLD | NEW |
(Empty) | |
| 1 <!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py --> |
| 2 <!DOCTYPE html> |
| 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <script src="../../resources/bluetooth/bluetooth-helpers.js"></script> |
| 6 <script> |
| 7 'use strict'; |
| 8 promise_test(() => { |
| 9 let promise; |
| 10 return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter') |
| 11 .then(() => requestDeviceWithKeyDown({ |
| 12 filters: [{services: ['health_thermometer']}]})) |
| 13 .then(device => device.gatt.connect()) |
| 14 .then(gattServer => gattServer.getPrimaryService('health_thermometer')) |
| 15 .then(service => service.getCharacteristic('measurement_interval')) |
| 16 |
| 17 .then(characteristic => { |
| 18 promise = assert_promise_rejects_with_message( |
| 19 characteristic.getDescriptor('invalid-name'), |
| 20 new DOMException( |
| 21 'Failed to execute \'getDescriptor\' on ' + |
| 22 '\'BluetoothRemoteGATTCharacteristic\': Invalid Descriptor nam
e: ' + |
| 23 '\'invalid-name\'. ' + |
| 24 'It must be a valid UUID alias (e.g. 0x1234), ' + |
| 25 'UUID (lowercase hex characters e.g. ' + |
| 26 '\'00001234-0000-1000-8000-00805f9b34fb\'), ' + |
| 27 'or recognized standard name from ' + |
| 28 'https://developer.bluetooth.org/gatt/descriptors/' + |
| 29 'Pages/DescriptorsHomePage.aspx' + |
| 30 ' e.g. \'gatt.characteristic_presentation_format\'.', |
| 31 'TypeError')); |
| 32 // Disconnect called to clear attributeInstanceMap and allow the |
| 33 // object to get garbage collected. |
| 34 characteristic.service.device.gatt.disconnect(); |
| 35 }) |
| 36 .then(runGarbageCollection) |
| 37 .then(() => promise); |
| 38 }, 'Garbage Collection ran during a getDescriptor call that succeeds. ' + |
| 39 'Should not crash.'); |
| 40 |
| 41 </script> |
OLD | NEW |