Chromium Code Reviews| Index: LayoutTests/bluetooth/readValue.html |
| diff --git a/LayoutTests/bluetooth/readValue.html b/LayoutTests/bluetooth/readValue.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..24a389f4a87815cb7bc7be79dbae7c970ee27873 |
| --- /dev/null |
| +++ b/LayoutTests/bluetooth/readValue.html |
| @@ -0,0 +1,48 @@ |
| +<!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"; |
| + |
| +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) { |
| + testRunner.setBluetoothMockDataSet('EmptyAdapter'); |
| + return characteristic.readValue().then(function() { |
| + assert_unreached("Device went out of range, should fail."); |
|
Jeffrey Yasskin
2015/06/10 21:12:25
We have ~4 error cases here: Device disappears, de
ortuno
2015/06/11 00:10:52
Added a test for the 4th case. The third is gonna
|
| + }, 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(includedCharacteristicUUID); |
| + }).then(function(characteristic) { |
| + return characteristic.readValue(); |
| + }).then(function(value) { |
| + var decoder = new TextDecoder(); |
|
Jeffrey Yasskin
2015/06/10 21:12:25
You should probably specify "utf-8" even though it
ortuno
2015/06/11 00:10:52
Done.
|
| + var value_str = decoder.decode(value); |
| + assert_equals(value_str, "Empty Mock Device name"); |
| + }); |
| +}, 'Request for characteristic. Should return right characteristic'); |
| +</script> |