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

Unified Diff: third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-disconnects-during.html

Issue 2183903002: bluetooth: Reject getPrimaryService(s) if frame is not connected (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Clean up Created 4 years, 5 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/getPrimaryService/device-disconnects-during.html
diff --git a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected.html b/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-disconnects-during.html
similarity index 55%
copy from third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected.html
copy to third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-disconnects-during.html
index 7cb69a3e8caa37ccf75ae69067434666df852429..1c2e76de1d8d2013f8846a6eb35fd99625e427ac 100644
--- a/third_party/WebKit/LayoutTests/bluetooth/gattserverdisconnected-event/disconnected.html
+++ b/third_party/WebKit/LayoutTests/bluetooth/getPrimaryService/device-disconnects-during.html
@@ -3,9 +3,9 @@
<script src="../../resources/testharnessreport.js"></script>
<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
<script>
- 'use strict';
- promise_test(t => {
- return setBluetoothFakeAdapter('DisconnectingHeartRateAdapter')
+'use strict';
+promise_test(t => {
+ return setBluetoothFakeAdapter('DisconnectingHeartRateAdapter')
.then(() => requestDeviceWithKeyDown({
filters: [{services: ['heart_rate']}],
optionalServices: [request_disconnection_service_uuid]
@@ -15,11 +15,12 @@
.then(gattServer => gattServer.getPrimaryService(request_disconnection_service_uuid))
.then(service => service.getCharacteristic(request_disconnection_characteristic_uuid))
.then(requestDisconnection => {
- // This promise hangs unless gattserverdisconnected is fired.
- let disconnected = eventPromise(device, 'gattserverdisconnected');
- return Promise.all([requestDisconnection.writeValue(new Uint8Array([0])),
- disconnected]);
- }).then(([, disconnected]) => assert_true(disconnected.bubbles));
+ requestDisconnection.writeValue(new Uint8Array([0]));
Jeffrey Yasskin 2016/07/28 22:45:14 Maybe call .connect() again as soon as the 'gattse
ortuno 2016/07/29 16:11:51 Added specific tests for the reconnection case. WD
+ return assert_promise_rejects_with_message(
+ device.gatt.getPrimaryService('heart_rate'),
+ new DOMException('GATT Server disconnected while retrieving services.',
+ 'NetworkError'));
+ });
});
- }, 'A device disconnecting while connected should fire the gattserverdisconnected event.');
+}, 'Device disconnects during getPrimaryService. Reject with NetworkError.');
</script>

Powered by Google App Engine
This is Rietveld 408576698