Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 1 | #include "common/utils.hpp" |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 2 | |
| 3 | #include <gmock/gmock.h> |
| 4 | #include <gtest/gtest.h> |
| 5 | |
| 6 | namespace pldm |
| 7 | { |
| 8 | namespace utils |
| 9 | { |
| 10 | |
| 11 | /** @brief helper function for parameter matching |
| 12 | * @param[in] lhs - left-hand side value |
| 13 | * @param[in] rhs - right-hand side value |
| 14 | * @return true if it matches |
| 15 | */ |
| 16 | inline bool operator==(const DBusMapping& lhs, const DBusMapping& rhs) |
| 17 | { |
| 18 | return lhs.objectPath == rhs.objectPath && lhs.interface == rhs.interface && |
| 19 | lhs.propertyName == rhs.propertyName && |
| 20 | lhs.propertyType == rhs.propertyType; |
| 21 | } |
| 22 | |
| 23 | } // namespace utils |
| 24 | } // namespace pldm |
| 25 | |
| 26 | using namespace pldm::utils; |
| 27 | |
| 28 | class MockdBusHandler : public DBusHandler |
| 29 | { |
| 30 | public: |
George Liu | 36e8135 | 2020-07-01 14:40:30 +0800 | [diff] [blame] | 31 | MOCK_METHOD(std::string, getService, (const char*, const char*), |
| 32 | (const override)); |
| 33 | |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 34 | MOCK_METHOD(void, setDbusProperty, |
| 35 | (const DBusMapping&, const PropertyValue&), (const override)); |
John Wang | 29683b5 | 2020-02-27 16:41:44 +0800 | [diff] [blame] | 36 | |
| 37 | MOCK_METHOD(PropertyValue, getDbusPropertyVariant, |
| 38 | (const char*, const char*, const char*), (const override)); |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 39 | }; |