Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html |
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1c4c61fd1839086e4e937b41e5c0b334e01bced4 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/consecutive-calls.html |
| @@ -0,0 +1,47 @@ |
| +<!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(() => { |
| + let assert_expected_events = events => { |
|
Jeffrey Yasskin
2016/06/10 00:49:22
Write this as
function assert_expected_events(ev
ortuno
2016/06/10 18:10:07
Done.
|
| + assert_equals(events.length, 4); |
| + assert_equals(events[0], 'chooser-opened(file://)'); |
| + let idsByName = new AddDeviceEventSet(); |
| + idsByName.assert_add_device_event(events[1]); |
| + assert_true(idsByName.has('Heart Rate Device')); |
| + assert_equals(events[2], 'discovering'); |
| + assert_equals(events[3], 'discovery-idle'); |
| + return idsByName; |
| + }; |
| + |
| + testRunner.setBluetoothManualChooser(true); |
| + // Open a chooser. |
| + let firstRequestDevicePromise = setBluetoothFakeAdapter('HeartRateAdapter') |
| + .then(() => assert_promise_rejects_with_message( |
| + requestDeviceWithKeyDown({filters: [{services: ['heart_rate']}]}), |
| + new DOMException('User cancelled the requestDevice() chooser.', |
| + 'NotFoundError'))); |
| + |
| + return getBluetoothManualChooserEvents(4) |
| + .then(assert_expected_events) |
| + .then(() => { |
| + // Open another chooser. |
| + let secondRequestDevicePromise = |
| + requestDeviceWithKeyDown({filters: [{services: ['heart_rate']}]}) |
| + .then(device => assert_equals(device.constructor.name, |
| + 'BluetoothDevice')); |
| + return getBluetoothManualChooserEvents(4) |
| + .then(assert_expected_events) |
| + .then(idsByName => { |
| + testRunner.sendBluetoothManualChooserEvent( |
| + 'selected', idsByName.get('Heart Rate Device')); |
| + return Promise.all([ |
| + firstRequestDevicePromise, |
| + secondRequestDevicePromise]); |
| + }); |
| + }); |
| +}, 'A second call to requestDevice with the chooser opened will close the ' + |
| + 'previous chooser.'); |
| +</script> |