OLD | NEW |
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 val = new Uint8Array([1]); | 9 let val = new Uint8Array([1]); |
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 optionalServices: [request_disconnection_service_uuid] | 13 optionalServices: [request_disconnection_service_uuid] |
14 })) | 14 })) |
15 .then(device => device.gatt.connect()) | 15 .then(device => device.gatt.connect()) |
16 .then(gattServer => { | 16 .then(gattServer => { |
17 let measurement_interval; | 17 let measurement_interval; |
18 return gattServer.getPrimaryService('health_thermometer') | 18 return gattServer.getPrimaryService('health_thermometer') |
19 .then(ht=> ht.getCharacteristic('measurement_interval')) | 19 .then(ht=> ht.getCharacteristic('measurement_interval')) |
20 .then(mi => measurement_interval = mi) | 20 .then(mi => measurement_interval = mi) |
21 .then(() => gattServer.getPrimaryService( | 21 .then(() => get_request_disconnection(gattServer)) |
22 request_disconnection_service_uuid)) | 22 .then(requestDisconnection => requestDisconnection()) |
23 .then(service => service.getCharacteristic( | |
24 request_disconnection_characteristic_uuid)) | |
25 .then(requestDisconnection => requestDisconnection.writeValue( | |
26 new Uint8Array([0]))) | |
27 .then(() => assert_promise_rejects_with_message( | 23 .then(() => assert_promise_rejects_with_message( |
28 measurement_interval.readValue(), | 24 measurement_interval.readValue(), |
29 new DOMException( | 25 new DOMException( |
30 'GATT Server is disconnected. Cannot perform GATT operations.', | 26 'GATT Server is disconnected. Cannot perform GATT operations.', |
31 'NetworkError'))); | 27 'NetworkError'))); |
32 }); | 28 }); |
33 }, 'Device disconnects before readValue. Reject with NetworkError.'); | 29 }, 'Device disconnects before readValue. Reject with NetworkError.'); |
34 | 30 |
35 </script> | 31 </script> |
OLD | NEW |