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 | { |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 10 | /** @brief helper function for parameter matching |
| 11 | * @param[in] lhs - left-hand side value |
| 12 | * @param[in] rhs - right-hand side value |
| 13 | * @return true if it matches |
| 14 | */ |
| 15 | inline bool operator==(const DBusMapping& lhs, const DBusMapping& rhs) |
| 16 | { |
| 17 | return lhs.objectPath == rhs.objectPath && lhs.interface == rhs.interface && |
| 18 | lhs.propertyName == rhs.propertyName && |
| 19 | lhs.propertyType == rhs.propertyType; |
| 20 | } |
| 21 | |
| 22 | } // namespace utils |
| 23 | } // namespace pldm |
| 24 | |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 25 | class MockdBusHandler : public pldm::utils::DBusHandler |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 26 | { |
| 27 | public: |
George Liu | 36e8135 | 2020-07-01 14:40:30 +0800 | [diff] [blame] | 28 | MOCK_METHOD(std::string, getService, (const char*, const char*), |
| 29 | (const override)); |
| 30 | |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 31 | MOCK_METHOD(void, setDbusProperty, |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 32 | (const pldm::utils::DBusMapping&, |
| 33 | const pldm::utils::PropertyValue&), |
| 34 | (const override)); |
John Wang | 29683b5 | 2020-02-27 16:41:44 +0800 | [diff] [blame] | 35 | |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 36 | MOCK_METHOD(pldm::utils::PropertyValue, getDbusPropertyVariant, |
John Wang | 29683b5 | 2020-02-27 16:41:44 +0800 | [diff] [blame] | 37 | (const char*, const char*, const char*), (const override)); |
Sagar Srinivas | 11ce8d2 | 2022-07-28 11:32:34 -0500 | [diff] [blame] | 38 | |
| 39 | MOCK_METHOD(pldm::utils::GetSubTreeResponse, getSubtree, |
| 40 | (const std::string&, int, const std::vector<std::string>&), |
| 41 | (const override)); |
George Liu | 1e44c73 | 2020-02-28 20:20:06 +0800 | [diff] [blame] | 42 | }; |