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

Unified Diff: LayoutTests/bluetooth/getCharacteristic.html

Issue 1146163005: bluetooth: Blink-side implementation of getCharacteristic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@bluetooth-characteristic-interface
Patch Set: Merged with TOT Created 5 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/webexposed/global-interface-listing-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/bluetooth/getCharacteristic.html
diff --git a/LayoutTests/bluetooth/getCharacteristic.html b/LayoutTests/bluetooth/getCharacteristic.html
new file mode 100644
index 0000000000000000000000000000000000000000..403e7af4045284edcc3ad86b3b0a0813cf991b61
--- /dev/null
+++ b/LayoutTests/bluetooth/getCharacteristic.html
@@ -0,0 +1,78 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="bluetooth-helpers.js"></script>
+<script>
+test(function(t) { assert_exists(window, "testRunner"); t.done(); },
+ "window.testRunner is required for the following tests.");
+
+// Generic Access Service.
+var serviceUUID = "00001800-0000-1000-8000-00805f9b34fb";
+// Device Name Characteristic. Belongs to Generic Access.
+var includedCharacteristicUUID = "00002a00-0000-1000-8000-00805f9b34fb";
+// Battery Level. Belongs to Battery Service.
+var nonIncludedCharacteristicUUID = "00002a19-0000-1000-8000-00805f9b34fb";
+
+sequential_promise_test(function() {
+ testRunner.setBluetoothMockDataSet('ConnectableDeviceAdapter');
+ return navigator.bluetooth.requestDevice().then(function(device) {
+ return device.connectGATT();
+ }).then(function(gattServer) {
+ return gattServer.getPrimaryService(serviceUUID);
+ }).then(function(service) {
+ testRunner.setBluetoothMockDataSet('EmptyAdapter');
+ return service.getCharacteristic(includedCharacteristicUUID).then(function() {
+ assert_unreached("Device went out of range, should fail.");
+ }, function(e) {
+ assert_equals(e.name, "NetworkError");
+ });
+ });
+}, 'Device goes out of range. Reject with NetworkError.');
+
+sequential_promise_test(function() {
+ testRunner.setBluetoothMockDataSet('ConnectableDeviceAdapter');
+ return navigator.bluetooth.requestDevice().then(function(device) {
+ return device.connectGATT();
+ }).then(function(gattServer) {
+ return gattServer.getPrimaryService(serviceUUID);
+ }).then(function(service) {
+ return service.getCharacteristic(nonIncludedCharacteristicUUID);
+ }).then(function(characteristic) {
+ assert_equals(characteristic, null,
+ "Non existent characteristic should return null.");
+ });
+}, 'Request for wrong characteristic. Should return null.');
+
+sequential_promise_test(function() {
+ testRunner.setBluetoothMockDataSet('ConnectableDeviceAdapter');
+ return navigator.bluetooth.requestDevice().then(function(device) {
+ return device.connectGATT();
+ }).then(function(gattServer) {
+ return gattServer.getPrimaryService(serviceUUID);
+ }).then(function(service) {
+ return service.getCharacteristic(includedCharacteristicUUID);
+ }).then(function(characteristic) {
+ assert_equals(characteristic.uuid, includedCharacteristicUUID,
+ "Characteristic UUID should be the same as requested UUID.");
+ });
+}, 'Request for characteristic. Should return right characteristic');
+
+sequential_promise_test(function() {
+ testRunner.setBluetoothMockDataSet('ConnectableDeviceAdapter');
+ return navigator.bluetooth.requestDevice().then(function(device) {
+ return device.connectGATT();
+ }).then(function(gattServer) {
+ return gattServer.getPrimaryService(serviceUUID);
+ }).then(function(services) {
+ return Promise.all([services.getCharacteristic(includedCharacteristicUUID),
+ services.getCharacteristic(includedCharacteristicUUID)]);
+ }).then(function(characteristics) {
+ // TODO(ortuno): getCharacteristic should return the same object
+ // if it was created earlier.
+ // https://crbug.com/495270
+ assert_not_equals(characteristics[0], characteristics[1],
+ "Should return the same service as the first call.");
+ });
+}, 'Calls to get the same characteristic should return the same object.');
+
+</script>
« no previous file with comments | « no previous file | LayoutTests/webexposed/global-interface-listing-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698