Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html |
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cb44729826e162157021b425d90a715e661a58fe |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html |
| @@ -0,0 +1,29 @@ |
| +<!DOCTYPE html> |
| +<script src="../resources/testharness.js"></script> |
| +<script src="../resources/testharnessreport.js"></script> |
| +<script src="resources/bluetooth-helpers.js"></script> |
| +<script> |
| +'use strict'; |
| + |
| +test(t => { assert_true(window.testRunner instanceof Object); t.done(); }, |
| + 'window.testRunner is required for the following tests.'); |
| + |
| +promise_test(() => { |
| + testRunner.setBluetoothMockDataSet('HeartRateAndHIDAdapter'); |
| + return requestDeviceWithKeyDown( |
| + { |
| + filters: [{services: ['heart_rate']}], |
| + optionalServices: ['device_information', 'human_interface_device'] |
|
ortuno
2016/02/24 23:08:17
I think you can get away with requesting only devi
scheib
2016/02/24 23:38:52
Done.
|
| + }) |
| + .then(device => device.gatt.connect()) |
| + .then(gattServer => gattServer.getPrimaryService('device_information')) |
| + .then(service => { |
| + return assert_promise_rejects_with_message( |
| + service.getCharacteristic('serial_number_string'), |
| + new DOMException('getCharacteristic(s) called with blacklisted UUID. ' + |
| + 'https://goo.gl/4NeimX', |
|
ortuno
2016/02/24 23:08:17
nit: I think the "'"s in these two lines should li
scheib
2016/02/24 23:38:52
Done.
|
| + 'SecurityError'), |
| + 'Serial Number String characteristic is blacklisted.'); |
| + }); |
| +}, 'Serial Number String characteristic is blacklisted.'); |
| +</script> |