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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-machting-devices.html

Issue 1910933002: bluetooth: Separate requestDevice tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-mojo-gatt-connect
Patch Set: Replace uses of assert_promise_rejects because it was removed. Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-machting-devices.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-machting-devices.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-machting-devices.html
new file mode 100644
index 0000000000000000000000000000000000000000..435feb2044e4a1ba2a3d8bbe409c3aa77473daf0
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/multiple-machting-devices.html
@@ -0,0 +1,32 @@
+<!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(() => {
+ testRunner.setBluetoothManualChooser(true);
+ let requestDevicePromise =
+ setBluetoothFakeAdapter('GlucoseHeartRateAdapter')
+ .then(() => requestDeviceWithKeyDown({
+ filters: [{services: ['glucose']},
+ {services: ['heart_rate']}]
+ }));
+ return getBluetoothManualChooserEvents(5)
+ .then(events => {
+ assert_equals(events.length, 5, events);
+ assert_equals(events[0], 'chooser-opened(file://)', 'events[0]');
+ let idsByName = new AddDeviceEventSet();
+ for (let addedDevice of [events[1], events[2]]) {
+ idsByName.assert_add_device_event(addedDevice);
+ }
+ assert_true(idsByName.has('Heart Rate Device'));
+ assert_true(idsByName.has('Glucose Device'));
+ assert_equals(events[3], 'discovering');
+ assert_equals(events[4], 'discovery-idle');
+ testRunner.sendBluetoothManualChooserEvent('selected',
+ idsByName.get('Glucose Device'));
+ return requestDevicePromise;
+ }).then(device => assert_equals(device.name, 'Glucose Device'));
+}, 'The chooser includes all devices.');
+</script>

Powered by Google App Engine
This is Rietveld 408576698