blob: b309f3382b5c598eafc5b3a4a5b091db3238ddff [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/mock_service.h"
#include <string>
#include <base/memory/ref_counted.h>
#include <gmock/gmock.h>
#include "shill/refptr_types.h"
#include "shill/store_interface.h"
#include "shill/technology.h"
using testing::_;
using testing::Return;
using testing::ReturnRef;
namespace shill {
MockService::MockService(Manager* manager)
: Service(manager, Technology::kUnknown) {
const RpcIdentifier id(unique_name());
EXPECT_CALL(*this, GetRpcIdentifier()).WillRepeatedly(Return(id));
EXPECT_CALL(*this, GetStorageIdentifier()).WillRepeatedly(Return(id));
ON_CALL(*this, IsVisible()).WillByDefault(Return(true));
ON_CALL(*this, state()).WillByDefault(Return(kStateUnknown));
ON_CALL(*this, failure()).WillByDefault(Return(kFailureUnknown));
ON_CALL(*this, technology()).WillByDefault(Return(Technology::kUnknown));
ON_CALL(*this, connection()).WillByDefault(ReturnRef(mock_connection_));
}
MockService::~MockService() = default;
bool MockService::FauxSave(StoreInterface* store) {
return store->SetString(GetStorageIdentifier(), "dummy", "dummy");
}
} // namespace shill