blob: 3b7487112de5a6d951ba171912267d03d1500ef4 [file] [log] [blame]
Matt Spinler09d64002019-09-11 14:29:46 -05001#include "extensions/openpower-pels/data_interface.hpp"
Matt Spinlerf60ac272019-12-11 13:47:50 -06002#include "extensions/openpower-pels/host_interface.hpp"
Matt Spinlerd96fa602022-12-15 11:11:26 -06003#include "extensions/openpower-pels/journal.hpp"
Matt Spinlerf60ac272019-12-11 13:47:50 -06004
5#include <fcntl.h>
6
Matt Spinlerf60ac272019-12-11 13:47:50 -06007#include <sdeventplus/source/io.hpp>
Matt Spinler09d64002019-09-11 14:29:46 -05008
Patrick Williams2544b412022-10-04 08:41:06 -05009#include <filesystem>
10
Matt Spinler09d64002019-09-11 14:29:46 -050011#include <gmock/gmock.h>
12
13namespace openpower
14{
15namespace pels
16{
17
18class MockDataInterface : public DataInterfaceBase
19{
20 public:
Matt Spinler784b02e2023-04-25 11:07:55 -050021 MockDataInterface()
22 {
23 ON_CALL(*this, checkDumpStatus)
24 .WillByDefault(
25 ::testing::Return(std::vector<bool>({false, false, false})));
26 }
27
Matt Spinlerf60ac272019-12-11 13:47:50 -060028 MOCK_METHOD(std::string, getMachineTypeModel, (), (const override));
29 MOCK_METHOD(std::string, getMachineSerialNumber, (), (const override));
30 MOCK_METHOD(std::string, getServerFWVersion, (), (const override));
31 MOCK_METHOD(std::string, getBMCFWVersion, (), (const override));
Matt Spinler677381b2020-01-23 10:04:29 -060032 MOCK_METHOD(std::string, getBMCFWVersionID, (), (const override));
Matt Spinler24a85582020-01-27 16:40:21 -060033 MOCK_METHOD(bool, getHostPELEnablement, (), (const override));
Matt Spinler4aa23a12020-02-03 15:05:09 -060034 MOCK_METHOD(std::string, getBMCState, (), (const override));
35 MOCK_METHOD(std::string, getChassisState, (), (const override));
36 MOCK_METHOD(std::string, getHostState, (), (const override));
Matt Spinler075e5ba2020-02-21 15:46:00 -060037 MOCK_METHOD(std::string, getMotherboardCCIN, (), (const override));
Matt Spinler60c4e792020-03-13 13:45:36 -050038 MOCK_METHOD(void, getHWCalloutFields,
Matt Spinler9b90e2a2020-04-14 10:59:04 -050039 (const std::string&, std::string&, std::string&, std::string&),
Matt Spinler60c4e792020-03-13 13:45:36 -050040 (const override));
Matt Spinler9b90e2a2020-04-14 10:59:04 -050041 MOCK_METHOD(std::string, getLocationCode, (const std::string&),
42 (const override));
Matt Spinler1ab66962020-10-29 13:21:44 -050043 MOCK_METHOD(std::vector<std::string>, getSystemNames, (), (const override));
Matt Spinler5fb24c12020-06-04 11:21:33 -050044 MOCK_METHOD(std::string, expandLocationCode, (const std::string&, uint16_t),
45 (const override));
Matt Spinlerbad056b2023-01-25 14:16:57 -060046 MOCK_METHOD(std::vector<std::string>, getInventoryFromLocCode,
Matt Spinler2f9225a2020-08-05 12:58:49 -050047 (const std::string&, uint16_t, bool), (const override));
Matt Spinler34a904c2020-08-05 14:53:28 -050048 MOCK_METHOD(void, assertLEDGroup, (const std::string&, bool),
49 (const override));
Matt Spinler993168d2021-04-07 16:05:03 -050050 MOCK_METHOD(void, setFunctional, (const std::string&, bool),
51 (const override));
Ben Tynere32b7e72021-05-18 12:38:40 -050052 MOCK_METHOD(std::vector<uint8_t>, getSystemIMKeyword, (), (const override));
Sumit Kumar3b8ed7f2021-05-18 12:38:35 -050053 MOCK_METHOD(bool, getQuiesceOnError, (), (const override));
Sumit Kumar76198a22021-07-15 05:59:57 -050054 MOCK_METHOD(void, setCriticalAssociation, (const std::string&),
55 (const override));
Sumit Kumar9d43a722021-08-24 09:46:19 -050056 MOCK_METHOD(std::vector<bool>, checkDumpStatus,
57 (const std::vector<std::string>&), (const override));
Sumit Kumar2c36fdd2021-09-21 03:12:11 -050058 MOCK_METHOD(std::string, getBootState, (), (const override));
Jayanth Othayothecaa2fc2021-11-05 02:02:52 -050059 MOCK_METHOD(void, createGuardRecord,
60 (const std::vector<uint8_t>&, const std::string&,
61 const std::string&),
62 (const override));
Sumit Kumar3e274432021-09-14 06:37:56 -050063 MOCK_METHOD(void, createProgressSRC,
64 (const uint64_t&, const std::vector<uint8_t>&),
65 (const override));
Sumit Kumar027bf282022-01-24 11:25:19 -060066 MOCK_METHOD(std::vector<uint32_t>, getLogIDWithHwIsolation, (),
67 (const override));
Vijay Lobo875b6c72021-10-20 17:38:56 -050068 MOCK_METHOD(std::vector<uint8_t>, getRawProgressSRC, (), (const override));
Arya K Padmand8ae6182024-07-19 06:25:10 -050069 MOCK_METHOD(std::optional<std::vector<uint8_t>>, getDIProperty,
70 (const std::string&), (const override));
Matt Spinler34a904c2020-08-05 14:53:28 -050071
Matt Spinlerf60ac272019-12-11 13:47:50 -060072 void changeHostState(bool newState)
73 {
Matt Spinler4aa23a12020-02-03 15:05:09 -060074 setHostUp(newState);
Matt Spinlerf60ac272019-12-11 13:47:50 -060075 }
76
77 void setHMCManaged(bool managed)
78 {
79 _hmcManaged = managed;
80 }
Matt Spinler0dd22c82023-05-04 15:28:12 -050081
82 void fruPresent(const std::string& locationCode)
83 {
84 setFruPresent(locationCode);
85 }
Matt Spinlerf60ac272019-12-11 13:47:50 -060086};
87
88/**
89 * @brief The mock HostInterface class
Matt Spinler5342d9a2019-12-12 11:03:39 -060090 *
91 * This replaces the PLDM calls with a FIFO for the asynchronous
92 * responses.
Matt Spinlerf60ac272019-12-11 13:47:50 -060093 */
94class MockHostInterface : public HostInterface
95{
96 public:
Matt Spinler5342d9a2019-12-12 11:03:39 -060097 /**
98 * @brief Constructor
99 *
100 * @param[in] event - The sd_event object
101 * @param[in] dataIface - The DataInterface class
102 */
Matt Spinlerf60ac272019-12-11 13:47:50 -0600103 MockHostInterface(sd_event* event, DataInterfaceBase& dataIface) :
104 HostInterface(event, dataIface)
105 {
Matt Spinler5342d9a2019-12-12 11:03:39 -0600106 char templ[] = "/tmp/cmdfifoXXXXXX";
107 std::filesystem::path dir = mkdtemp(templ);
108 _fifo = dir / "fifo";
Matt Spinlerf60ac272019-12-11 13:47:50 -0600109 }
110
Matt Spinler5342d9a2019-12-12 11:03:39 -0600111 /**
112 * @brief Destructor
113 */
Matt Spinlerf60ac272019-12-11 13:47:50 -0600114 virtual ~MockHostInterface()
115 {
Matt Spinler5342d9a2019-12-12 11:03:39 -0600116 std::filesystem::remove_all(_fifo.parent_path());
Matt Spinlerf60ac272019-12-11 13:47:50 -0600117 }
118
119 MOCK_METHOD(CmdStatus, sendNewLogCmd, (uint32_t, uint32_t), (override));
120
Matt Spinler5342d9a2019-12-12 11:03:39 -0600121 /**
122 * @brief Cancels waiting for a command response
123 */
124 virtual void cancelCmd() override
125 {
126 _inProgress = false;
127 _source = nullptr;
128 }
129
130 /**
131 * @brief Returns the amount of time to wait before retrying after
132 * a failed send command.
133 *
134 * @return milliseconds - The amount of time to wait
135 */
136 virtual std::chrono::milliseconds getSendRetryDelay() const override
137 {
138 return std::chrono::milliseconds(2);
139 }
140
141 /**
142 * @brief Returns the amount of time to wait before retrying after
143 * a command receive.
144 *
145 * @return milliseconds - The amount of time to wait
146 */
147 virtual std::chrono::milliseconds getReceiveRetryDelay() const override
148 {
149 return std::chrono::milliseconds(2);
150 }
151
152 /**
Matt Spinler41293cb2019-12-12 13:11:09 -0600153 * @brief Returns the amount of time to wait before retrying if the
154 * host firmware's PEL storage was full and it can't store
155 * any more logs until it is freed up somehow.
156 *
157 * @return milliseconds - The amount of time to wait
158 */
159 virtual std::chrono::milliseconds getHostFullRetryDelay() const override
160 {
Matt Spinler6aae6a02020-02-07 12:46:07 -0600161 return std::chrono::milliseconds(400);
Matt Spinler41293cb2019-12-12 13:11:09 -0600162 }
163
164 /**
Matt Spinlere5f75082022-01-24 16:09:51 -0600165 * @brief Returns the amount of time to wait after the host is up
166 * before sending commands.
167 *
168 * @return milliseconds - The amount of time to wait
169 */
170 virtual std::chrono::milliseconds getHostUpDelay() const override
171 {
172 return std::chrono::milliseconds(0);
173 }
174
175 /**
Matt Spinler5342d9a2019-12-12 11:03:39 -0600176 * @brief Returns the number of commands processed
177 */
178 size_t numCmdsProcessed() const
179 {
180 return _cmdsProcessed;
181 }
182
183 /**
184 * @brief Writes the data passed in to the FIFO
185 *
186 * @param[in] hostResponse - use a 0 to indicate success
187 *
188 * @return CmdStatus - success or failure
189 */
190 CmdStatus send(uint8_t hostResponse)
191 {
192 // Create a FIFO once.
193 if (!std::filesystem::exists(_fifo))
194 {
195 if (mkfifo(_fifo.c_str(), 0622))
196 {
197 ADD_FAILURE() << "Failed mkfifo " << _fifo << strerror(errno);
198 exit(-1);
199 }
200 }
201
202 // Open it and register the reponse callback to
203 // be used on FD activity.
204 int fd = open(_fifo.c_str(), O_NONBLOCK | O_RDWR);
205 EXPECT_TRUE(fd >= 0) << "Unable to open FIFO";
206
Patrick Williams075c7922024-08-16 15:19:49 -0400207 auto callback =
208 [this](sdeventplus::source::IO& source, int fd, uint32_t events) {
209 this->receive(source, fd, events, nullptr);
210 };
Matt Spinler5342d9a2019-12-12 11:03:39 -0600211
212 try
213 {
214 _source = std::make_unique<sdeventplus::source::IO>(
215 _event, fd, EPOLLIN,
216 std::bind(callback, std::placeholders::_1,
217 std::placeholders::_2, std::placeholders::_3));
218 }
Patrick Williams66491c62021-10-06 12:23:37 -0500219 catch (const std::exception& e)
Matt Spinler5342d9a2019-12-12 11:03:39 -0600220 {
221 ADD_FAILURE() << "Event exception: " << e.what();
222 close(fd);
223 return CmdStatus::failure;
224 }
225
226 // Write the fake host reponse to the FIFO
227 auto bytesWritten = write(fd, &hostResponse, sizeof(hostResponse));
228 EXPECT_EQ(bytesWritten, sizeof(hostResponse));
229
230 _inProgress = true;
231
232 return CmdStatus::success;
233 }
234
Matt Spinlerf60ac272019-12-11 13:47:50 -0600235 protected:
Matt Spinler5342d9a2019-12-12 11:03:39 -0600236 /**
237 * @brief Reads the data written to the fifo and then calls
238 * the subscriber's callback.
239 *
240 * Nonzero data indicates a command failure (for testing bad path).
241 *
242 * @param[in] source - The event source object
243 * @param[in] fd - The file descriptor used
244 * @param[in] events - The event bits
245 */
Patrick Williamsd26fa3e2021-04-21 15:22:23 -0500246 void receive(sdeventplus::source::IO& /*source*/, int /*fd*/,
Lakshmi Yadlapati0387a742024-07-01 17:04:37 -0500247 uint32_t events, pldm_transport* /*transport*/) override
Matt Spinlerf60ac272019-12-11 13:47:50 -0600248 {
Matt Spinler5342d9a2019-12-12 11:03:39 -0600249 if (!(events & EPOLLIN))
250 {
251 return;
252 }
253
254 _inProgress = false;
255
256 int newFD = open(_fifo.c_str(), O_NONBLOCK | O_RDONLY);
257 ASSERT_TRUE(newFD >= 0) << "Failed to open FIFO";
258
259 // Read the host success/failure response from the FIFO.
260 uint8_t data;
261 auto bytesRead = read(newFD, &data, sizeof(data));
262 EXPECT_EQ(bytesRead, sizeof(data));
263
264 close(newFD);
265
266 ResponseStatus status = ResponseStatus::success;
267 if (data != 0)
268 {
269 status = ResponseStatus::failure;
270 }
271
Matt Spinlera44efe42020-03-03 10:30:16 -0600272 callResponseFunc(status);
Matt Spinler5342d9a2019-12-12 11:03:39 -0600273
Matt Spinlerf60ac272019-12-11 13:47:50 -0600274 // Keep account of the number of commands responses for testing.
275 _cmdsProcessed++;
276 }
277
278 private:
Matt Spinler5342d9a2019-12-12 11:03:39 -0600279 /**
280 * @brief The event source for the fifo
281 */
282 std::unique_ptr<sdeventplus::source::IO> _source;
283
284 /**
285 * @brief the path to the fifo
286 */
287 std::filesystem::path _fifo;
288
289 /**
290 * @brief The number of commands processed
291 */
Matt Spinlerf60ac272019-12-11 13:47:50 -0600292 size_t _cmdsProcessed = 0;
Matt Spinler09d64002019-09-11 14:29:46 -0500293};
294
Matt Spinlerd96fa602022-12-15 11:11:26 -0600295class MockJournal : public JournalBase
296{
297 public:
298 MockJournal() {}
299
300 MOCK_METHOD(std::vector<std::string>, getMessages,
301 (const std::string&, size_t), (const override));
Matt Spinler9d921092022-12-15 11:54:49 -0600302
303 MOCK_METHOD(void, sync, (), (const override));
Matt Spinlerd96fa602022-12-15 11:11:26 -0600304};
305
Matt Spinler09d64002019-09-11 14:29:46 -0500306} // namespace pels
307} // namespace openpower