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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/no-optional-services.html

Issue 2510323002: bluetooth: Implement acceptAllDevices (Closed)
Patch Set: Clean up Created 4 years, 1 month 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/acceptAllDevices/no-optional-services.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/no-optional-services.html b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/no-optional-services.html
new file mode 100644
index 0000000000000000000000000000000000000000..f1c028f4c853bfbd4904253a502220e387e32ea6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/no-optional-services.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
scheib 2016/11/22 21:22:44 it's OK, but fyi I try to name the files so that v
ortuno 2016/11/23 06:03:08 That's much better, thanks. Done
+<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(() => {
+ return setBluetoothFakeAdapter('TwoHeartRateServicesAdapter')
+ .then(() => requestDeviceWithKeyDown({acceptAllDevices: true}))
+ .then(device => device.gatt.connect())
+ .then(gattServer => assert_promise_rejects_with_message(
+ gattServer.getPrimaryServices(),
+ new DOMException(
+ 'Origin is not allowed to access any service. ' +
+ 'Tip: Add the service UUID to \'optionalServices\' in ' +
+ 'requestDevice() options. https://goo.gl/HxfxSQ',
+ 'SecurityError')));
+}, 'requestDevice called with acceptAllDevices: true and with no ' +
+ 'optionalServices. Should not get access to any services.');
+</script>

Powered by Google App Engine
This is Rietveld 408576698