Matt Spinler | 09d6400 | 2019-09-11 14:29:46 -0500 | [diff] [blame] | 1 | #include "extensions/openpower-pels/data_interface.hpp" |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 2 | #include "extensions/openpower-pels/host_interface.hpp" |
| 3 | |
| 4 | #include <fcntl.h> |
| 5 | |
| 6 | #include <filesystem> |
| 7 | #include <sdeventplus/source/io.hpp> |
Matt Spinler | 09d6400 | 2019-09-11 14:29:46 -0500 | [diff] [blame] | 8 | |
| 9 | #include <gmock/gmock.h> |
| 10 | |
| 11 | namespace openpower |
| 12 | { |
| 13 | namespace pels |
| 14 | { |
| 15 | |
| 16 | class MockDataInterface : public DataInterfaceBase |
| 17 | { |
| 18 | public: |
| 19 | MockDataInterface() |
| 20 | { |
| 21 | } |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 22 | MOCK_METHOD(std::string, getMachineTypeModel, (), (const override)); |
| 23 | MOCK_METHOD(std::string, getMachineSerialNumber, (), (const override)); |
| 24 | MOCK_METHOD(std::string, getServerFWVersion, (), (const override)); |
| 25 | MOCK_METHOD(std::string, getBMCFWVersion, (), (const override)); |
Matt Spinler | 677381b | 2020-01-23 10:04:29 -0600 | [diff] [blame] | 26 | MOCK_METHOD(std::string, getBMCFWVersionID, (), (const override)); |
Matt Spinler | 24a8558 | 2020-01-27 16:40:21 -0600 | [diff] [blame] | 27 | MOCK_METHOD(bool, getHostPELEnablement, (), (const override)); |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 28 | MOCK_METHOD(std::string, getBMCState, (), (const override)); |
| 29 | MOCK_METHOD(std::string, getChassisState, (), (const override)); |
| 30 | MOCK_METHOD(std::string, getHostState, (), (const override)); |
Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 31 | MOCK_METHOD(std::string, getMotherboardCCIN, (), (const override)); |
Matt Spinler | 60c4e79 | 2020-03-13 13:45:36 -0500 | [diff] [blame] | 32 | MOCK_METHOD(void, getHWCalloutFields, |
| 33 | (const std::string&, std::string&, std::string&, std::string&, |
| 34 | std::string&), |
| 35 | (const override)); |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 36 | |
| 37 | void changeHostState(bool newState) |
| 38 | { |
Matt Spinler | 4aa23a1 | 2020-02-03 15:05:09 -0600 | [diff] [blame] | 39 | setHostUp(newState); |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | void setHMCManaged(bool managed) |
| 43 | { |
| 44 | _hmcManaged = managed; |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | /** |
| 49 | * @brief The mock HostInterface class |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 50 | * |
| 51 | * This replaces the PLDM calls with a FIFO for the asynchronous |
| 52 | * responses. |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 53 | */ |
| 54 | class MockHostInterface : public HostInterface |
| 55 | { |
| 56 | public: |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 57 | /** |
| 58 | * @brief Constructor |
| 59 | * |
| 60 | * @param[in] event - The sd_event object |
| 61 | * @param[in] dataIface - The DataInterface class |
| 62 | */ |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 63 | MockHostInterface(sd_event* event, DataInterfaceBase& dataIface) : |
| 64 | HostInterface(event, dataIface) |
| 65 | { |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 66 | char templ[] = "/tmp/cmdfifoXXXXXX"; |
| 67 | std::filesystem::path dir = mkdtemp(templ); |
| 68 | _fifo = dir / "fifo"; |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 69 | } |
| 70 | |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 71 | /** |
| 72 | * @brief Destructor |
| 73 | */ |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 74 | virtual ~MockHostInterface() |
| 75 | { |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 76 | std::filesystem::remove_all(_fifo.parent_path()); |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | MOCK_METHOD(CmdStatus, sendNewLogCmd, (uint32_t, uint32_t), (override)); |
| 80 | |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 81 | /** |
| 82 | * @brief Cancels waiting for a command response |
| 83 | */ |
| 84 | virtual void cancelCmd() override |
| 85 | { |
| 86 | _inProgress = false; |
| 87 | _source = nullptr; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @brief Returns the amount of time to wait before retrying after |
| 92 | * a failed send command. |
| 93 | * |
| 94 | * @return milliseconds - The amount of time to wait |
| 95 | */ |
| 96 | virtual std::chrono::milliseconds getSendRetryDelay() const override |
| 97 | { |
| 98 | return std::chrono::milliseconds(2); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * @brief Returns the amount of time to wait before retrying after |
| 103 | * a command receive. |
| 104 | * |
| 105 | * @return milliseconds - The amount of time to wait |
| 106 | */ |
| 107 | virtual std::chrono::milliseconds getReceiveRetryDelay() const override |
| 108 | { |
| 109 | return std::chrono::milliseconds(2); |
| 110 | } |
| 111 | |
| 112 | /** |
Matt Spinler | 41293cb | 2019-12-12 13:11:09 -0600 | [diff] [blame] | 113 | * @brief Returns the amount of time to wait before retrying if the |
| 114 | * host firmware's PEL storage was full and it can't store |
| 115 | * any more logs until it is freed up somehow. |
| 116 | * |
| 117 | * @return milliseconds - The amount of time to wait |
| 118 | */ |
| 119 | virtual std::chrono::milliseconds getHostFullRetryDelay() const override |
| 120 | { |
Matt Spinler | 6aae6a0 | 2020-02-07 12:46:07 -0600 | [diff] [blame] | 121 | return std::chrono::milliseconds(400); |
Matt Spinler | 41293cb | 2019-12-12 13:11:09 -0600 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | /** |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 125 | * @brief Returns the number of commands processed |
| 126 | */ |
| 127 | size_t numCmdsProcessed() const |
| 128 | { |
| 129 | return _cmdsProcessed; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * @brief Writes the data passed in to the FIFO |
| 134 | * |
| 135 | * @param[in] hostResponse - use a 0 to indicate success |
| 136 | * |
| 137 | * @return CmdStatus - success or failure |
| 138 | */ |
| 139 | CmdStatus send(uint8_t hostResponse) |
| 140 | { |
| 141 | // Create a FIFO once. |
| 142 | if (!std::filesystem::exists(_fifo)) |
| 143 | { |
| 144 | if (mkfifo(_fifo.c_str(), 0622)) |
| 145 | { |
| 146 | ADD_FAILURE() << "Failed mkfifo " << _fifo << strerror(errno); |
| 147 | exit(-1); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // Open it and register the reponse callback to |
| 152 | // be used on FD activity. |
| 153 | int fd = open(_fifo.c_str(), O_NONBLOCK | O_RDWR); |
| 154 | EXPECT_TRUE(fd >= 0) << "Unable to open FIFO"; |
| 155 | |
| 156 | auto callback = [this](sdeventplus::source::IO& source, int fd, |
| 157 | uint32_t events) { |
| 158 | this->receive(source, fd, events); |
| 159 | }; |
| 160 | |
| 161 | try |
| 162 | { |
| 163 | _source = std::make_unique<sdeventplus::source::IO>( |
| 164 | _event, fd, EPOLLIN, |
| 165 | std::bind(callback, std::placeholders::_1, |
| 166 | std::placeholders::_2, std::placeholders::_3)); |
| 167 | } |
| 168 | catch (std::exception& e) |
| 169 | { |
| 170 | ADD_FAILURE() << "Event exception: " << e.what(); |
| 171 | close(fd); |
| 172 | return CmdStatus::failure; |
| 173 | } |
| 174 | |
| 175 | // Write the fake host reponse to the FIFO |
| 176 | auto bytesWritten = write(fd, &hostResponse, sizeof(hostResponse)); |
| 177 | EXPECT_EQ(bytesWritten, sizeof(hostResponse)); |
| 178 | |
| 179 | _inProgress = true; |
| 180 | |
| 181 | return CmdStatus::success; |
| 182 | } |
| 183 | |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 184 | protected: |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 185 | /** |
| 186 | * @brief Reads the data written to the fifo and then calls |
| 187 | * the subscriber's callback. |
| 188 | * |
| 189 | * Nonzero data indicates a command failure (for testing bad path). |
| 190 | * |
| 191 | * @param[in] source - The event source object |
| 192 | * @param[in] fd - The file descriptor used |
| 193 | * @param[in] events - The event bits |
| 194 | */ |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 195 | void receive(sdeventplus::source::IO& source, int fd, |
| 196 | uint32_t events) override |
| 197 | { |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 198 | if (!(events & EPOLLIN)) |
| 199 | { |
| 200 | return; |
| 201 | } |
| 202 | |
| 203 | _inProgress = false; |
| 204 | |
| 205 | int newFD = open(_fifo.c_str(), O_NONBLOCK | O_RDONLY); |
| 206 | ASSERT_TRUE(newFD >= 0) << "Failed to open FIFO"; |
| 207 | |
| 208 | // Read the host success/failure response from the FIFO. |
| 209 | uint8_t data; |
| 210 | auto bytesRead = read(newFD, &data, sizeof(data)); |
| 211 | EXPECT_EQ(bytesRead, sizeof(data)); |
| 212 | |
| 213 | close(newFD); |
| 214 | |
| 215 | ResponseStatus status = ResponseStatus::success; |
| 216 | if (data != 0) |
| 217 | { |
| 218 | status = ResponseStatus::failure; |
| 219 | } |
| 220 | |
Matt Spinler | a44efe4 | 2020-03-03 10:30:16 -0600 | [diff] [blame] | 221 | callResponseFunc(status); |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 222 | |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 223 | // Keep account of the number of commands responses for testing. |
| 224 | _cmdsProcessed++; |
| 225 | } |
| 226 | |
| 227 | private: |
Matt Spinler | 5342d9a | 2019-12-12 11:03:39 -0600 | [diff] [blame] | 228 | /** |
| 229 | * @brief The event source for the fifo |
| 230 | */ |
| 231 | std::unique_ptr<sdeventplus::source::IO> _source; |
| 232 | |
| 233 | /** |
| 234 | * @brief the path to the fifo |
| 235 | */ |
| 236 | std::filesystem::path _fifo; |
| 237 | |
| 238 | /** |
| 239 | * @brief The number of commands processed |
| 240 | */ |
Matt Spinler | f60ac27 | 2019-12-11 13:47:50 -0600 | [diff] [blame] | 241 | size_t _cmdsProcessed = 0; |
Matt Spinler | 09d6400 | 2019-09-11 14:29:46 -0500 | [diff] [blame] | 242 | }; |
| 243 | |
| 244 | } // namespace pels |
| 245 | } // namespace openpower |