1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/dbus/shill/fake_shill_profile_client.h"
#include <memory>
#include <utility>
#include "base/containers/adapters.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/task/single_thread_task_runner.h"
#include "base/values.h"
#include "chromeos/ash/components/dbus/shill/shill_property_changed_observer.h"
#include "chromeos/ash/components/dbus/shill/shill_service_client.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_path.h"
#include "dbus/values_util.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace ash {
struct FakeShillProfileClient::ProfileProperties {
std::string profile_path;
// Dictionary of Service Dictionaries
base::Value::Dict entries;
// Dictionary of Profile properties
base::Value::Dict properties;
};
FakeShillProfileClient::FakeShillProfileClient() = default;
FakeShillProfileClient::~FakeShillProfileClient() = default;
void FakeShillProfileClient::AddPropertyChangedObserver(
const dbus::ObjectPath& profile_path,
ShillPropertyChangedObserver* observer) {}
void FakeShillProfileClient::RemovePropertyChangedObserver(
const dbus::ObjectPath& profile_path,
ShillPropertyChangedObserver* observer) {}
void FakeShillProfileClient::GetProperties(
const dbus::ObjectPath& profile_path,
base::OnceCallback<void(base::Value::Dict result)> callback,
ErrorCallback error_callback) {
ProfileProperties* profile = GetProfile(profile_path);
if (!profile) {
std::move(error_callback).Run("Error.InvalidProfile", "Invalid profile");
return;
}
base::Value::List entry_paths;
for (const auto it : profile->entries) {
entry_paths.Append(it.first);
}
base::Value::Dict properties = profile->properties.Clone();
properties.Set(shill::kEntriesProperty, std::move(entry_paths));
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), std::move(properties)));
}
void FakeShillProfileClient::SetProperty(const dbus::ObjectPath& profile_path,
const std::string& name,
const base::Value& property,
base::OnceClosure callback,
ErrorCallback error_callback) {
ProfileProperties* profile = GetProfile(profile_path);
if (!profile) {
std::move(error_callback).Run("Error.InvalidProfile", "Invalid profile");
return;
}
profile->properties.Set(name, property.Clone());
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(callback));
}
void FakeShillProfileClient::SetObjectPathProperty(
const dbus::ObjectPath& profile_path,
const std::string& name,
const dbus::ObjectPath& property,
base::OnceClosure callback,
ErrorCallback error_callback) {
ProfileProperties* profile = GetProfile(profile_path);
if (!profile) {
std::move(error_callback).Run("Error.InvalidProfile", "Invalid profile");
return;
}
profile->properties.Set(name, property.value());
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(callback));
}
void FakeShillProfileClient::GetEntry(
const dbus::ObjectPath& profile_path,
const std::string& entry_path,
base::OnceCallback<void(base::Value::Dict result)> callback,
ErrorCallback error_callback) {
ProfileProperties* profile = GetProfile(profile_path);
if (!profile) {
std::move(error_callback).Run("Error.InvalidProfile", "Invalid profile");
return;
}
const base::Value::Dict* entry = profile->entries.FindDict(entry_path);
if (!entry) {
std::move(error_callback)
.Run("Error.InvalidProfileEntry", "Invalid profile entry");
return;
}
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), entry->Clone()));
}
void FakeShillProfileClient::DeleteEntry(const dbus::ObjectPath& profile_path,
const std::string& entry_path,
base::OnceClosure callback,
ErrorCallback error_callback) {
switch (simulate_delete_result_) {
case FakeShillSimulatedResult::kSuccess:
break;
case FakeShillSimulatedResult::kFailure:
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(error_callback), "Error",
"Simulated failure"));
return;
case FakeShillSimulatedResult::kTimeout:
// No callbacks get executed and the caller should eventually timeout.
return;
case FakeShillSimulatedResult::kInProgress:
// No callbacks get executed in this case.
return;
}
ProfileProperties* profile = GetProfile(profile_path);
if (!profile) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(std::move(error_callback), "Error.InvalidProfile",
profile_path.value()));
return;
}
if (!profile->entries.Remove(entry_path)) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, base::BindOnce(std::move(error_callback),
"Error.InvalidProfileEntry", entry_path));
return;
}
ShillServiceClient::Get()
->GetTestInterface()
->ClearConfiguredServiceProperties(entry_path);
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(callback));
}
ShillProfileClient::TestInterface* FakeShillProfileClient::GetTestInterface() {
return this;
}
void FakeShillProfileClient::AddProfile(const std::string& profile_path,
const std::string& userhash) {
if (GetProfile(dbus::ObjectPath(profile_path)))
return;
// If adding a shared profile, make sure there are no user profiles currently
// on the stack - this assumes there is at most one shared profile.
CHECK(profile_path != GetSharedProfilePath() || profiles_.empty())
<< "Shared profile must be added before any user profile.";
ProfileProperties profile;
profile.properties.Set(shill::kUserHashProperty, userhash);
profile.profile_path = profile_path;
profiles_.push_back(std::move(profile));
ShillManagerClient::Get()->GetTestInterface()->AddProfile(profile_path);
}
void FakeShillProfileClient::AddEntry(const std::string& profile_path,
const std::string& entry_path,
const base::Value::Dict& properties) {
ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path));
DCHECK(profile);
profile->entries.Set(entry_path, properties.Clone());
ShillManagerClient::Get()->GetTestInterface()->AddManagerService(entry_path,
true);
}
bool FakeShillProfileClient::AddService(const std::string& profile_path,
const std::string& service_path) {
ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path));
if (!profile) {
LOG(ERROR) << "AddService: No matching profile: " << profile_path
<< " for: " << service_path;
return false;
}
if (profile->entries.contains(service_path)) {
return false;
}
return AddOrUpdateServiceImpl(profile_path, service_path, profile);
}
bool FakeShillProfileClient::UpdateService(const std::string& profile_path,
const std::string& service_path) {
ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path));
if (!profile) {
LOG(ERROR) << "UpdateService: No matching profile: " << profile_path
<< " for: " << service_path;
return false;
}
if (!profile->entries.contains(service_path)) {
LOG(ERROR) << "UpdateService: Profile: " << profile_path
<< " does not contain Service: " << service_path;
return false;
}
return AddOrUpdateServiceImpl(profile_path, service_path, profile);
}
bool FakeShillProfileClient::AddOrUpdateServiceImpl(
const std::string& profile_path,
const std::string& service_path,
ProfileProperties* profile) {
ShillServiceClient::TestInterface* service_test =
ShillServiceClient::Get()->GetTestInterface();
const base::Value::Dict* service_properties =
service_test->GetServiceProperties(service_path);
if (!service_properties) {
LOG(ERROR) << "No matching service: " << service_path;
return false;
}
const std::string* service_profile_path =
service_properties->FindString(shill::kProfileProperty);
if (!service_profile_path || service_profile_path->empty()) {
base::Value profile_path_value(profile_path);
service_test->SetServiceProperty(service_path, shill::kProfileProperty,
profile_path_value);
} else if (*service_profile_path != profile_path) {
LOG(ERROR) << "Service has non matching profile path: "
<< *service_profile_path;
return false;
}
profile->entries.Set(service_path, service_properties->Clone());
return true;
}
void FakeShillProfileClient::GetProfilePaths(
std::vector<std::string>* profiles) {
for (const auto& profile : profiles_)
profiles->push_back(profile.profile_path);
}
void FakeShillProfileClient::GetProfilePathsContainingService(
const std::string& service_path,
std::vector<std::string>* profiles) {
for (const auto& profile : profiles_) {
if (profile.entries.FindDict(service_path)) {
profiles->push_back(profile.profile_path);
}
}
}
base::Value::Dict FakeShillProfileClient::GetProfileProperties(
const std::string& profile_path) {
ProfileProperties* profile = GetProfile(dbus::ObjectPath(profile_path));
DCHECK(profile);
return profile->properties.Clone();
}
std::optional<base::Value::Dict> FakeShillProfileClient::GetService(
const std::string& service_path,
std::string* profile_path) {
DCHECK(profile_path);
// Returns the entry added latest.
for (const auto& profile : base::Reversed(profiles_)) {
const base::Value::Dict* entry = profile.entries.FindDict(service_path);
if (!entry) {
continue;
}
*profile_path = profile.profile_path;
return entry->Clone();
}
return std::nullopt;
}
bool FakeShillProfileClient::HasService(const std::string& service_path) {
for (const auto& profile : profiles_) {
if (profile.entries.FindDict(service_path)) {
return true;
}
}
return false;
}
void FakeShillProfileClient::ClearProfiles() {
profiles_.clear();
}
void FakeShillProfileClient::SetSimulateDeleteResult(
FakeShillSimulatedResult delete_result) {
simulate_delete_result_ = delete_result;
}
FakeShillProfileClient::ProfileProperties* FakeShillProfileClient::GetProfile(
const dbus::ObjectPath& profile_path) {
for (auto& profile : profiles_) {
if (profile.profile_path == profile_path.value())
return &profile;
}
return nullptr;
}
} // namespace ash
|