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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/restart-scan-includes-previous-device.html

Issue 2217573002: bluetooth: Only add new devices, connected devices and devices that changed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-add-or-update
Patch Set: Fix typo Created 4 years, 4 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/restart-scan-includes-previous-device.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/restart-scan-includes-previous-device.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/restart-scan-includes-previous-device.html
deleted file mode 100644
index 46881ff335174cb3400939e81188fccf8cbd29c7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/restart-scan-includes-previous-device.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!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);
-
- // Open the chooser, looking for a Heart Rate device.
- let requestDevicePromise =
- setBluetoothFakeAdapter('HeartRateAdapter')
- .then(() => requestDeviceWithKeyDown({
- filters: [{services: ['heart_rate']}]
- }));
-
- // The existing Heart Rate Device is added to the chooser.
- return getBluetoothManualChooserEvents(4).then(events => {
- assert_equals(events.length, 4, events);
- 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');
-
- // After restarting a scan the existing device should be added to the
- // chooser.
- testRunner.sendBluetoothManualChooserEvent('rescan', '');
- return getBluetoothManualChooserEvents(3);
- }).then(events => {
- let idsByName = new AddDeviceEventSet();
- assert_equals(events.length, 3, events);
- idsByName.assert_add_device_event(events[0]);
- assert_true(idsByName.has('Heart Rate Device'));
- assert_equals(events[1], 'discovering', events[0]);
- assert_equals(events[2], 'discovery-idle');
-
- // Select it and let the test complete.
- testRunner.sendBluetoothManualChooserEvent('selected',
- idsByName.get('Heart Rate Device'));
- return requestDevicePromise;
- }).then(device => assert_equals(device.name, 'Heart Rate Device'));
-}, 'The chooser shows previously discovered devices.');
-</script>

Powered by Google App Engine
This is Rietveld 408576698