Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: third_party/WebKit/LayoutTests/bluetooth/characteristic/getDescriptor/gen-descriptor-invalid-name.html

Issue 2775283003: bluetooth: Update services, characteristics, and descriptors (Closed)
Patch Set: fix layout_test errors #2 Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/bluetooth/characteristic/getDescriptors/gen-descriptor-invalid-name.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py --> 1 <!-- Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py -->
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 <script src="../../../resources/testharness.js"></script> 3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script> 4 <script src="../../../resources/testharnessreport.js"></script>
5 <script src="../../../resources/bluetooth/bluetooth-helpers.js"></script> 5 <script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
6 <script> 6 <script>
7 'use strict'; 7 'use strict';
8 promise_test(() => { 8 promise_test(() => {
9 let promise; 9 let promise;
10 return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter') 10 return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter')
11 .then(() => requestDeviceWithKeyDown({ 11 .then(() => requestDeviceWithKeyDown({
12 filters: [{services: ['health_thermometer']}]})) 12 filters: [{services: ['health_thermometer']}]}))
13 .then(device => device.gatt.connect()) 13 .then(device => device.gatt.connect())
14 .then(gattServer => gattServer.getPrimaryService('health_thermometer')) 14 .then(gattServer => gattServer.getPrimaryService('health_thermometer'))
15 .then(service => service.getCharacteristic('measurement_interval')) 15 .then(service => service.getCharacteristic('measurement_interval'))
16 .then(characteristic => { 16 .then(characteristic => {
17 return assert_promise_rejects_with_message( 17 return assert_promise_rejects_with_message(
18 characteristic.getDescriptor('invalid-name'), 18 characteristic.getDescriptor('invalid-name'),
19 new DOMException( 19 new DOMException(
20 'Failed to execute \'getDescriptor\' on ' + 20 'Failed to execute \'getDescriptor\' on ' +
21 '\'BluetoothRemoteGATTCharacteristic\': Invalid Descriptor nam e: ' + 21 '\'BluetoothRemoteGATTCharacteristic\': Invalid Descriptor nam e: ' +
22 '\'invalid-name\'. ' + 22 '\'invalid-name\'. ' +
23 'It must be a valid UUID alias (e.g. 0x1234), ' + 23 'It must be a valid UUID alias (e.g. 0x1234), ' +
24 'UUID (lowercase hex characters e.g. ' + 24 'UUID (lowercase hex characters e.g. ' +
25 '\'00001234-0000-1000-8000-00805f9b34fb\'), ' + 25 '\'00001234-0000-1000-8000-00805f9b34fb\'), ' +
26 'or recognized standard name from ' + 26 'or recognized standard name from ' +
27 'https://developer.bluetooth.org/gatt/descriptors/' + 27 'https://www.bluetooth.com/specifications/gatt/descriptors' +
28 'Pages/DescriptorsHomePage.aspx' +
29 ' e.g. \'gatt.characteristic_presentation_format\'.', 28 ' e.g. \'gatt.characteristic_presentation_format\'.',
30 'TypeError')); 29 'TypeError'));
31 30
32 }) 31 })
33 }, 'Test to ensure getDescriptor throws when called with an invalid name.'); 32 }, 'Test to ensure getDescriptor throws when called with an invalid name.');
34 33
35 </script> 34 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/bluetooth/characteristic/getDescriptors/gen-descriptor-invalid-name.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698