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

Unified Diff: chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc

Issue 619973002: Add unit testing for more org.bluez.Error.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments, add remaining tests Created 6 years, 3 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: chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc
diff --git a/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc b/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc
index 63f6b49ffee1f52251e86e3765a6685e8c0c0164..d0c3a9fcc6c1e24afbdf6f8c91e28cefb7428662 100644
--- a/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc
+++ b/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc
@@ -21,6 +21,15 @@ const int kHeartRateMeasurementNotificationIntervalMs = 2000;
} // namespace
+FakeBluetoothGattCharacteristicClient::DelayedCallback::DelayedCallback(
+ base::Closure callback,
+ size_t delay)
+ : callback_(callback), delay_(delay) {
+}
+
+FakeBluetoothGattCharacteristicClient::DelayedCallback::~DelayedCallback() {
+}
+
// static
const char FakeBluetoothGattCharacteristicClient::
kHeartRateMeasurementPathComponent[] = "char0000";
@@ -68,7 +77,10 @@ void FakeBluetoothGattCharacteristicClient::Properties::Set(
FakeBluetoothGattCharacteristicClient::FakeBluetoothGattCharacteristicClient()
: heart_rate_visible_(false),
+ authorized_(true),
+ authenticated_(true),
calories_burned_(0),
+ extra_requests_(0),
weak_ptr_factory_(this) {
}
@@ -120,26 +132,62 @@ void FakeBluetoothGattCharacteristicClient::ReadValue(
const dbus::ObjectPath& object_path,
const ValueCallback& callback,
const ErrorCallback& error_callback) {
- if (!IsHeartRateVisible()) {
- error_callback.Run(kUnknownCharacteristicError, "");
+ if (!authenticated_) {
+ error_callback.Run("org.bluez.Error.NotPaired", "Please login");
return;
}
- if (object_path.value() == heart_rate_measurement_path_ ||
- object_path.value() == heart_rate_control_point_path_) {
+ if (!authorized_) {
+ error_callback.Run("org.bluez.Error.NotAuthorized", "Authorize first");
+ return;
+ }
+
+ if (object_path.value() == heart_rate_control_point_path_) {
error_callback.Run("org.bluez.Error.ReadNotPermitted",
"Reads of this value are not allowed");
return;
}
+ if (object_path.value() == heart_rate_measurement_path_) {
+ error_callback.Run("org.bluez.Error.NotSupported",
+ "Action not supported on this characteristic");
+ return;
+ }
+
if (object_path.value() != body_sensor_location_path_) {
error_callback.Run(kUnknownCharacteristicError, "");
return;
}
- std::vector<uint8> value;
- value.push_back(0x06); // Location is "foot".
- callback.Run(value);
+ if (action_extra_requests_.find("ReadValue") !=
+ action_extra_requests_.end()) {
+ DelayedCallback* delayed = action_extra_requests_["ReadValue"];
+ delayed->delay_--;
+ error_callback.Run("org.bluez.Error.InProgress",
+ "Another read is currenty in progress");
+ if (delayed->delay_ == 0) {
+ delayed->callback_.Run();
+ action_extra_requests_.erase("ReadValue");
+ delete delayed;
+ }
+ return;
+ }
+ base::Closure completed_callback;
+ if (!IsHeartRateVisible()) {
+ completed_callback =
+ base::Bind(error_callback, kUnknownCharacteristicError, "");
+ } else {
+ std::vector<uint8> value;
+ value.push_back(0x06); // Location is "foot".
+ completed_callback = base::Bind(callback, value);
+ }
+
+ if (extra_requests_ > 0) {
+ action_extra_requests_["ReadValue"] =
+ new DelayedCallback(completed_callback, extra_requests_);
+ return;
+ }
+ completed_callback.Run();
}
void FakeBluetoothGattCharacteristicClient::WriteValue(
@@ -147,11 +195,27 @@ void FakeBluetoothGattCharacteristicClient::WriteValue(
const std::vector<uint8>& value,
const base::Closure& callback,
const ErrorCallback& error_callback) {
+ if (!authenticated_) {
+ error_callback.Run("org.bluez.Error.NotPaired", "Please login");
+ return;
+ }
+
+ if (!authorized_) {
+ error_callback.Run("org.bluez.Error.NotAuthorized", "Authorize first");
+ return;
+ }
+
if (!IsHeartRateVisible()) {
error_callback.Run(kUnknownCharacteristicError, "");
return;
}
+ if (object_path.value() == heart_rate_measurement_path_) {
+ error_callback.Run("org.bluez.Error.NotSupported",
+ "Action not supported on this characteristic");
+ return;
+ }
+
if (object_path.value() != heart_rate_control_point_path_) {
error_callback.Run("org.bluez.Error.WriteNotPermitted",
"Writes of this value are not allowed");
@@ -159,21 +223,40 @@ void FakeBluetoothGattCharacteristicClient::WriteValue(
}
DCHECK(heart_rate_control_point_properties_.get());
- if (value.size() != 1) {
- error_callback.Run("org.bluez.Error.InvalidValueLength",
- "Invalid length for write");
- return;
- }
- if (value[0] > 1) {
- error_callback.Run("org.bluez.Error.Failed",
- "Invalid value given for write");
+ if (action_extra_requests_.find("WriteValue") !=
+ action_extra_requests_.end()) {
+ DelayedCallback* delayed = action_extra_requests_["WriteValue"];
+ delayed->delay_--;
+ error_callback.Run("org.bluez.Error.InProgress",
+ "Another write is in progress");
+ if (delayed->delay_ == 0) {
+ delayed->callback_.Run();
+ action_extra_requests_.erase("WriteValue");
+ delete delayed;
+ }
return;
}
-
- if (value[0] == 1)
+ base::Closure completed_callback;
+ if (value.size() != 1) {
+ completed_callback = base::Bind(error_callback,
+ "org.bluez.Error.InvalidValueLength",
+ "Invalid length for write");
+ } else if (value[0] > 1) {
+ completed_callback = base::Bind(error_callback,
+ "org.bluez.Error.Failed",
+ "Invalid value given for write");
+ } else if (value[0] == 1) {
+ // TODO(jamuraa): make this happen when the callback happens
calories_burned_ = 0;
+ completed_callback = callback;
+ }
- callback.Run();
+ if (extra_requests_ > 0) {
+ action_extra_requests_["WriteValue"] =
+ new DelayedCallback(completed_callback, extra_requests_);
+ return;
+ }
+ completed_callback.Run();
}
void FakeBluetoothGattCharacteristicClient::StartNotify(
@@ -332,6 +415,24 @@ void FakeBluetoothGattCharacteristicClient::HideHeartRateCharacteristics() {
heart_rate_visible_ = false;
}
+void FakeBluetoothGattCharacteristicClient::SetExtraProcessing(
+ size_t requests) {
+ extra_requests_ = requests;
+ if (extra_requests_ == 0) {
+ for (const auto& it : action_extra_requests_) {
+ it.second->callback_.Run();
+ delete it.second;
+ }
+ action_extra_requests_.clear();
+ return;
+ }
+ VLOG(2) << "Requests SLOW now, " << requests << " InProgress errors each.";
+}
+
+size_t FakeBluetoothGattCharacteristicClient::GetExtraProcessing() const {
+ return extra_requests_;
+}
+
dbus::ObjectPath
FakeBluetoothGattCharacteristicClient::GetHeartRateMeasurementPath() const {
return dbus::ObjectPath(heart_rate_measurement_path_);

Powered by Google App Engine
This is Rietveld 408576698