blob: 378a4aec348a4e75f88c9b1480a4767ee9b993ee [file] [log] [blame]
Patrick Venture1fa9aab2018-06-11 10:46:49 -07001// THIS EXISTS AS A COPY OF SDBUSPLUS/TEST/HELPERS.HPP until that is merged.
2#pragma once
3
Patrick Venture1fa9aab2018-06-11 10:46:49 -07004#include <sdbusplus/test/sdbus_mock.hpp>
Patrick Venturea83a3ec2020-08-04 09:52:05 -07005
Patrick Venture1fa9aab2018-06-11 10:46:49 -07006#include <string>
7#include <vector>
8
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07009#include <gmock/gmock.h>
10#include <gtest/gtest.h>
11
Patrick Venturea0764872020-08-08 07:48:43 -070012namespace pid_control
13{
14
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070015using ::testing::_;
Patrick Venture1fa9aab2018-06-11 10:46:49 -070016using ::testing::Invoke;
17using ::testing::IsNull;
18using ::testing::NotNull;
19using ::testing::Return;
20using ::testing::StrEq;
Patrick Venture1fa9aab2018-06-11 10:46:49 -070021
22/** @brief Setup the expectations for sdbus-based object creation.
23 *
24 * Objects created that inherit a composition from sdbusplus will all
25 * require at least these expectations.
26 *
27 * If you have future sd_bus_emit_properties_changed_strv calls expected,
28 * you'll need to add those calls into your test. This only captures the
29 * property updates you tell it to expect initially.
30 *
31 * TODO: Make it support more cases, as I'm sure there are more.
32 *
33 * @param[in] sdbus_mock - Pointer to your sdbus mock interface used with
Patrick Williamsb228bc32022-07-22 19:26:56 -050034 * the sdbusplus::bus_t you created.
Patrick Venture1fa9aab2018-06-11 10:46:49 -070035 * @param[in] defer - Whether object announcement is deferred.
36 * @param[in] path - the dbus path passed to the object
37 * @param[in] intf - the dbus interface
38 * @param[in] properties - an ordered list of expected property updates.
James Feist0709e2f2020-07-08 10:59:45 -070039 * @param[in] index - a pointer to a valid double in a surviving scope.
Patrick Venture1fa9aab2018-06-11 10:46:49 -070040 */
Patrick Venturee2ec0f62018-09-04 12:30:27 -070041void SetupDbusObject(sdbusplus::SdBusMock* sdbus_mock, bool defer,
42 const std::string& path, const std::string& intf,
James Feist0709e2f2020-07-08 10:59:45 -070043 const std::vector<std::string>& properties, double* index)
Patrick Venture1fa9aab2018-06-11 10:46:49 -070044{
45 EXPECT_CALL(*sdbus_mock,
46 sd_bus_add_object_vtable(IsNull(), NotNull(), StrEq(path),
47 StrEq(intf), NotNull(), NotNull()))
ykchiu7c6d35d2023-05-10 17:01:46 +080048 .Times(::testing::AnyNumber())
Patrick Venture1fa9aab2018-06-11 10:46:49 -070049 .WillOnce(Return(0));
50
51 if (!defer)
52 {
53 EXPECT_CALL(*sdbus_mock,
54 sd_bus_emit_object_added(IsNull(), StrEq(path)))
55 .WillOnce(Return(0));
56 }
57
Patrick Venturea58197c2018-06-11 15:29:45 -070058 if (!properties.empty())
Patrick Venture1fa9aab2018-06-11 10:46:49 -070059 {
60 (*index) = 0;
61 EXPECT_CALL(*sdbus_mock,
62 sd_bus_emit_properties_changed_strv(IsNull(), StrEq(path),
63 StrEq(intf), NotNull()))
64 .Times(properties.size())
Harvey.Wua1ae4fa2022-10-28 17:38:35 +080065 .WillRepeatedly(Invoke([=]([[maybe_unused]] sd_bus* bus,
66 [[maybe_unused]] const char* path,
67 [[maybe_unused]] const char* interface,
68 const char** names) {
Patrick Williamse1dbb592023-10-20 11:19:22 -050069 EXPECT_STREQ(properties[(*index)++].c_str(), names[0]);
70 return 0;
71 }));
Patrick Venture1fa9aab2018-06-11 10:46:49 -070072 }
73
74 return;
75}
Patrick Venturea0764872020-08-08 07:48:43 -070076
77} // namespace pid_control