blob: f29f10428c2cfc7d8b834c2f1f64f8d138b22748 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/service_under_test.h"
#include <string>
#include "shill/mock_adaptors.h"
#include "shill/property_accessor.h"
using std::string;
namespace shill {
// static
const char ServiceUnderTest::kKeyValueStoreProperty[] = "key_value_store";
const RpcIdentifier ServiceUnderTest::kRpcId =
RpcIdentifier("/mock_device_rpc");
const char ServiceUnderTest::kStringsProperty[] = "strings";
const char ServiceUnderTest::kStorageId[] = "service";
ServiceUnderTest::ServiceUnderTest(Manager* manager)
: Service(manager, Technology::kUnknown), disconnectable_(true) {
mutable_store()->RegisterStrings(kStringsProperty, &strings_);
mutable_store()->RegisterDerivedKeyValueStore(
kKeyValueStoreProperty,
KeyValueStoreAccessor(new CustomAccessor<ServiceUnderTest, KeyValueStore>(
this, &ServiceUnderTest::GetKeyValueStore,
&ServiceUnderTest::SetKeyValueStore)));
SetConnectable(true);
}
ServiceUnderTest::~ServiceUnderTest() = default;
const RpcIdentifier& ServiceUnderTest::GetRpcIdentifier() const {
return ServiceMockAdaptor::kRpcId;
}
RpcIdentifier ServiceUnderTest::GetDeviceRpcId(Error* /*error*/) const {
return kRpcId;
}
string ServiceUnderTest::GetStorageIdentifier() const {
return kStorageId;
}
bool ServiceUnderTest::SetKeyValueStore(const KeyValueStore& value,
Error* error) {
key_value_store_.Clear();
key_value_store_.CopyFrom(value);
return true;
}
KeyValueStore ServiceUnderTest::GetKeyValueStore(Error* error) {
return key_value_store_;
}
} // namespace shill