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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html

Issue 1697873002: bluetooth: Test Web Bluetooth getCharacteristic calls against blacklist. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-blacklist-integration-
Patch Set: move glucose UUID in code as well Created 4 years, 10 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/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..c950fe583fb458080dc2ae4eb197184cac1368c4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/bluetooth/getCharacteristic-blacklist.html
@@ -0,0 +1,28 @@
+<!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: ['device_information']}]
+ })
+ .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',
+ 'SecurityError'),
+ 'Serial Number String characteristic is blacklisted.');
+ });
+}, 'Serial Number String characteristic is blacklisted.');
+</script>

Powered by Google App Engine
This is Rietveld 408576698