blob: 72e981e130e20d6ae2bc95bfb63db80bfe96c1aa [file] [log] [blame]
/**
* Copyright © 2020 IBM Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "error_logging.hpp"
#include "journal.hpp"
#include "mock_error_logging.hpp"
#include "mock_journal.hpp"
#include "mock_presence_service.hpp"
#include "mock_sensors.hpp"
#include "mock_vpd.hpp"
#include "presence_service.hpp"
#include "sensors.hpp"
#include "services.hpp"
#include "vpd.hpp"
#include <sdbusplus/bus.hpp>
namespace phosphor::power::regulators
{
/**
* @class MockServices
*
* Implementation of the Services interface using mock system services.
*/
class MockServices : public Services
{
public:
// Specify which compiler-generated methods we want
MockServices() = default;
MockServices(const MockServices&) = delete;
MockServices(MockServices&&) = delete;
MockServices& operator=(const MockServices&) = delete;
MockServices& operator=(MockServices&&) = delete;
virtual ~MockServices() = default;
/** @copydoc Services::getBus() */
virtual sdbusplus::bus_t& getBus() override
{
return bus;
}
/** @copydoc Services::getErrorLogging() */
virtual ErrorLogging& getErrorLogging() override
{
return errorLogging;
}
/** @copydoc Services::getJournal() */
virtual Journal& getJournal() override
{
return journal;
}
/** @copydoc Services::getPresenceService() */
virtual PresenceService& getPresenceService() override
{
return presenceService;
}
/** @copydoc Services::getSensors() */
virtual Sensors& getSensors() override
{
return sensors;
}
/** @copydoc Services::getVPD() */
virtual VPD& getVPD() override
{
return vpd;
}
/**
* Returns the MockErrorLogging object that implements the ErrorLogging
* interface.
*
* This allows test cases to use the object in EXPECT_CALL() statements.
*
* @return mock error logging object
*/
virtual MockErrorLogging& getMockErrorLogging()
{
return errorLogging;
}
/**
* Returns the MockJournal object that implements the Journal interface.
*
* This allows test cases to use the object in EXPECT_CALL() statements.
*
* @return mock journal object
*/
virtual MockJournal& getMockJournal()
{
return journal;
}
/**
* Returns the MockPresenceService object that implements the
* PresenceService interface.
*
* This allows test cases to use the object in EXPECT_CALL() statements.
*
* @return mock presence service object
*/
virtual MockPresenceService& getMockPresenceService()
{
return presenceService;
}
/**
* Returns the MockSensors object that implements the Sensors interface.
*
* This allows test cases to use the object in EXPECT_CALL() statements.
*
* @return mock sensors interface object
*/
virtual MockSensors& getMockSensors()
{
return sensors;
}
/**
* Returns the MockVPD object that implements the VPD interface.
*
* This allows test cases to use the object in EXPECT_CALL() statements.
*
* @return mock VPD interface object
*/
virtual MockVPD& getMockVPD()
{
return vpd;
}
private:
/**
* D-Bus bus object.
*/
sdbusplus::bus_t bus{sdbusplus::bus::new_default()};
/**
* Mock implementation of the ErrorLogging interface.
*/
MockErrorLogging errorLogging{};
/**
* Mock implementation of the Journal interface.
*/
MockJournal journal{};
/**
* Mock implementation of the PresenceService interface.
*/
MockPresenceService presenceService{};
/**
* Mock implementation of the Sensors interface.
*/
MockSensors sensors{};
/**
* Mock implementation of the VPD interface.
*/
MockVPD vpd{};
};
} // namespace phosphor::power::regulators