blob: e98d6515f3ad848958a35de666913d78bca0b94c [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),
rpcid_(unique_name()) {
EXPECT_CALL(*this, GetRpcIdentifier()).WillRepeatedly(ReturnRef(rpcid_));
EXPECT_CALL(*this, GetStorageIdentifier())
.WillRepeatedly(Return(rpcid_.value()));
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