blob: fd795ee39b94db019baa3c2ed85245826143d69f [file] [log] [blame]
Patrick Ventureaa32a362018-12-13 10:52:33 -08001#include "data_interface_mock.hpp"
Patrick Venture84778b82019-06-26 20:11:09 -07002#include "flags.hpp"
Patrick Venture1f09d412019-06-19 16:01:06 -07003#include "status.hpp"
Patrick Venture5f2fcc42019-06-20 07:21:05 -07004#include "tool_errors.hpp"
Patrick Ventureaa32a362018-12-13 10:52:33 -08005#include "updater.hpp"
Patrick Venture55646de2019-05-16 10:06:26 -07006#include "updater_mock.hpp"
Patrick Venture7dad86f2019-05-17 08:52:20 -07007#include "util.hpp"
Patrick Ventureaa32a362018-12-13 10:52:33 -08008
Jie Yang328f5202021-03-16 00:52:07 -07009#include <blobs-ipmid/blobs.hpp>
Patrick Venture8cdf9642020-09-30 09:41:51 -070010#include <ipmiblob/blob_errors.hpp>
Patrick Venture664c5bc2019-03-07 08:09:45 -080011#include <ipmiblob/test/blob_interface_mock.hpp>
Patrick Venture9b37b092020-05-28 20:58:57 -070012
Patrick Ventureaa32a362018-12-13 10:52:33 -080013#include <string>
Patrick Venture8cdf9642020-09-30 09:41:51 -070014#include <vector>
Patrick Ventureaa32a362018-12-13 10:52:33 -080015
Patrick Venture8cdf9642020-09-30 09:41:51 -070016#include <gmock/gmock.h>
Patrick Ventureaa32a362018-12-13 10:52:33 -080017#include <gtest/gtest.h>
18
Patrick Venture9b534f02018-12-13 16:10:02 -080019namespace host_tool
20{
21
Patrick Venture7dcca5d2019-05-15 12:32:33 -070022using ::testing::_;
Patrick Ventureaa32a362018-12-13 10:52:33 -080023using ::testing::Return;
Patrick Venture8cdf9642020-09-30 09:41:51 -070024using ::testing::Throw;
Patrick Ventureb58f5612019-05-07 09:22:07 -070025using ::testing::TypedEq;
Patrick Ventureaa32a362018-12-13 10:52:33 -080026
Patrick Venture1f09d412019-06-19 16:01:06 -070027class UpdateHandlerTest : public ::testing::Test
Patrick Venture55646de2019-05-16 10:06:26 -070028{
Patrick Venture1f09d412019-06-19 16:01:06 -070029 protected:
30 const std::uint16_t session = 0xbeef;
31
Patrick Venture55646de2019-05-16 10:06:26 -070032 DataInterfaceMock handlerMock;
33 ipmiblob::BlobInterfaceMock blobMock;
Patrick Venture1f09d412019-06-19 16:01:06 -070034 UpdateHandler updater{&blobMock, &handlerMock};
35};
Patrick Venture55646de2019-05-16 10:06:26 -070036
Patrick Venture1f09d412019-06-19 16:01:06 -070037TEST_F(UpdateHandlerTest, CheckAvailableSuccess)
38{
Patrick Venture55646de2019-05-16 10:06:26 -070039 EXPECT_CALL(blobMock, getBlobList())
Patrick Venture7dad86f2019-05-17 08:52:20 -070040 .WillOnce(
Patrick Venture1d5a31c2019-05-20 11:38:22 -070041 Return(std::vector<std::string>({ipmi_flash::staticLayoutBlobId})));
Patrick Venture55646de2019-05-16 10:06:26 -070042
Patrick Venture1d5a31c2019-05-20 11:38:22 -070043 EXPECT_TRUE(updater.checkAvailable(ipmi_flash::staticLayoutBlobId));
Patrick Venture55646de2019-05-16 10:06:26 -070044}
45
Patrick Venture8cdf9642020-09-30 09:41:51 -070046TEST_F(UpdateHandlerTest, CheckAvailableFailure)
47{
48 EXPECT_CALL(blobMock, getBlobList())
49 .WillOnce(Return(std::vector<std::string>()));
50
51 EXPECT_FALSE(updater.checkAvailable(ipmi_flash::staticLayoutBlobId));
52}
53
Patrick Venture1f09d412019-06-19 16:01:06 -070054TEST_F(UpdateHandlerTest, SendFileSuccess)
Patrick Venture55646de2019-05-16 10:06:26 -070055{
56 /* Call sendFile to verify it does what we expect. */
Patrick Venture55646de2019-05-16 10:06:26 -070057 std::string firmwareImage = "image.bin";
58
59 std::uint16_t supported =
60 static_cast<std::uint16_t>(
Patrick Venture84778b82019-06-26 20:11:09 -070061 ipmi_flash::FirmwareFlags::UpdateFlags::lpc) |
62 static_cast<std::uint16_t>(
63 ipmi_flash::FirmwareFlags::UpdateFlags::openWrite);
Patrick Venture55646de2019-05-16 10:06:26 -070064
65 EXPECT_CALL(handlerMock, supportedType())
Patrick Venture84778b82019-06-26 20:11:09 -070066 .WillOnce(Return(ipmi_flash::FirmwareFlags::UpdateFlags::lpc));
Patrick Venture55646de2019-05-16 10:06:26 -070067
Patrick Venture1f09d412019-06-19 16:01:06 -070068 EXPECT_CALL(blobMock, openBlob(ipmi_flash::staticLayoutBlobId, supported))
Patrick Venture55646de2019-05-16 10:06:26 -070069 .WillOnce(Return(session));
70
Patrick Venture1f09d412019-06-19 16:01:06 -070071 EXPECT_CALL(handlerMock, sendContents(firmwareImage, session))
Patrick Venture55646de2019-05-16 10:06:26 -070072 .WillOnce(Return(true));
73
74 EXPECT_CALL(blobMock, closeBlob(session)).Times(1);
75
Patrick Venture1d5a31c2019-05-20 11:38:22 -070076 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage);
Patrick Venture55646de2019-05-16 10:06:26 -070077}
78
Patrick Venture8cdf9642020-09-30 09:41:51 -070079TEST_F(UpdateHandlerTest, SendFileExceptsOnBlobOpening)
80{
81 std::string firmwareImage = "image.bin";
82
83 std::uint16_t supported =
84 static_cast<std::uint16_t>(
85 ipmi_flash::FirmwareFlags::UpdateFlags::lpc) |
86 static_cast<std::uint16_t>(
87 ipmi_flash::FirmwareFlags::UpdateFlags::openWrite);
88
89 EXPECT_CALL(handlerMock, supportedType())
90 .WillOnce(Return(ipmi_flash::FirmwareFlags::UpdateFlags::lpc));
91
92 EXPECT_CALL(blobMock, openBlob(ipmi_flash::staticLayoutBlobId, supported))
93 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
94
95 EXPECT_THROW(
96 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage),
97 ToolException);
98}
99
100TEST_F(UpdateHandlerTest, SendFileHandlerFailureCausesException)
101{
102 std::string firmwareImage = "image.bin";
103
104 std::uint16_t supported =
105 static_cast<std::uint16_t>(
106 ipmi_flash::FirmwareFlags::UpdateFlags::lpc) |
107 static_cast<std::uint16_t>(
108 ipmi_flash::FirmwareFlags::UpdateFlags::openWrite);
109
110 EXPECT_CALL(handlerMock, supportedType())
Willy Tu1b23b772023-03-15 01:33:03 -0700111 .WillRepeatedly(Return(ipmi_flash::FirmwareFlags::UpdateFlags::lpc));
Patrick Venture8cdf9642020-09-30 09:41:51 -0700112
113 EXPECT_CALL(blobMock, openBlob(ipmi_flash::staticLayoutBlobId, supported))
Willy Tu1b23b772023-03-15 01:33:03 -0700114 .WillRepeatedly(Return(session));
Patrick Venture8cdf9642020-09-30 09:41:51 -0700115
116 EXPECT_CALL(handlerMock, sendContents(firmwareImage, session))
Willy Tu1b23b772023-03-15 01:33:03 -0700117 .WillRepeatedly(Return(false));
Patrick Venture8cdf9642020-09-30 09:41:51 -0700118
Willy Tu1b23b772023-03-15 01:33:03 -0700119 EXPECT_CALL(blobMock, closeBlob(session)).Times(3);
Patrick Venture8cdf9642020-09-30 09:41:51 -0700120
121 EXPECT_THROW(
122 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage),
123 ToolException);
124}
125
Willy Tu1b23b772023-03-15 01:33:03 -0700126TEST_F(UpdateHandlerTest, SendFileHandlerPassWithRetries)
127{
128 std::string firmwareImage = "image.bin";
129
130 std::uint16_t supported =
131 static_cast<std::uint16_t>(
132 ipmi_flash::FirmwareFlags::UpdateFlags::lpc) |
133 static_cast<std::uint16_t>(
134 ipmi_flash::FirmwareFlags::UpdateFlags::openWrite);
135
136 EXPECT_CALL(handlerMock, supportedType())
137 .WillRepeatedly(Return(ipmi_flash::FirmwareFlags::UpdateFlags::lpc));
138
139 EXPECT_CALL(blobMock, openBlob(ipmi_flash::staticLayoutBlobId, supported))
140 .WillRepeatedly(Return(session));
141
142 EXPECT_CALL(handlerMock, sendContents(firmwareImage, session))
143 .WillOnce(Return(false))
144 .WillOnce(Return(false))
145 .WillOnce(Return(true));
146
147 EXPECT_CALL(blobMock, closeBlob(session)).Times(3);
148
149 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage);
150}
151
Patrick Venture1f09d412019-06-19 16:01:06 -0700152TEST_F(UpdateHandlerTest, VerifyFileHandleReturnsTrueOnSuccess)
Patrick Ventureaa32a362018-12-13 10:52:33 -0800153{
Patrick Venture1f09d412019-06-19 16:01:06 -0700154 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
Patrick Ventureaa32a362018-12-13 10:52:33 -0800155 .WillOnce(Return(session));
Patrick Venture55646de2019-05-16 10:06:26 -0700156 EXPECT_CALL(blobMock, commit(session, _)).WillOnce(Return());
Patrick Venture1f09d412019-06-19 16:01:06 -0700157 ipmiblob::StatResponse verificationResponse = {};
158 /* the other details of the response are ignored, and should be. */
159 verificationResponse.metadata.push_back(
160 static_cast<std::uint8_t>(ipmi_flash::ActionStatus::success));
Patrick Venture7dcca5d2019-05-15 12:32:33 -0700161
Patrick Venture1f09d412019-06-19 16:01:06 -0700162 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
163 .WillOnce(Return(verificationResponse));
164 EXPECT_CALL(blobMock, closeBlob(session)).WillOnce(Return());
165
Brandon Kim6749ba12019-09-19 13:31:37 -0700166 EXPECT_TRUE(updater.verifyFile(ipmi_flash::verifyBlobId, false));
Patrick Venture1f09d412019-06-19 16:01:06 -0700167}
168
Patrick Venture8cdf9642020-09-30 09:41:51 -0700169TEST_F(UpdateHandlerTest, VerifyFileHandleSkipsPollingIfIgnoreStatus)
170{
171 /* if ignoreStatus, it'll skip polling for a verification result. */
172 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
173 .WillOnce(Return(session));
174 EXPECT_CALL(blobMock, commit(session, _)).WillOnce(Return());
175
176 EXPECT_CALL(blobMock, closeBlob(session)).WillOnce(Return());
177
178 EXPECT_TRUE(updater.verifyFile(ipmi_flash::verifyBlobId, true));
179}
180
181TEST_F(UpdateHandlerTest, VerifyFileConvertsOpenBlobExceptionToToolException)
182{
183 /* On open, it can except and this is converted to a ToolException. */
184 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
185 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
186 EXPECT_THROW(updater.verifyFile(ipmi_flash::verifyBlobId, false),
187 ToolException);
188}
189
Willy Tu3f596282024-04-12 16:27:17 +0000190TEST_F(UpdateHandlerTest, VerifyFileToolException)
191{
192 /* On open, it can except and this is converted to a ToolException. */
193 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
194 .Times(3)
195 .WillRepeatedly(Throw(ToolException("asdf")));
196 EXPECT_THROW(updater.verifyFile(ipmi_flash::verifyBlobId, false),
197 ToolException);
198}
199
200TEST_F(UpdateHandlerTest, VerifyFileHandleReturnsTrueOnSuccessWithRetries)
201{
202 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
203 .Times(3)
204 .WillRepeatedly(Return(session));
205 EXPECT_CALL(blobMock, commit(session, _))
206 .WillOnce(Throw(ToolException("asdf")))
207 .WillOnce(Throw(ToolException("asdf")))
208 .WillOnce(Return());
209 ipmiblob::StatResponse verificationResponse = {};
210 /* the other details of the response are ignored, and should be. */
211 verificationResponse.metadata.push_back(
212 static_cast<std::uint8_t>(ipmi_flash::ActionStatus::success));
213
214 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
215 .WillOnce(Return(verificationResponse));
216 EXPECT_CALL(blobMock, closeBlob(session)).Times(3).WillRepeatedly(Return());
217
218 EXPECT_TRUE(updater.verifyFile(ipmi_flash::verifyBlobId, false));
219}
220
Patrick Venture8cdf9642020-09-30 09:41:51 -0700221TEST_F(UpdateHandlerTest, VerifyFileCommitExceptionForwards)
222{
223 /* On commit, it can except. */
224 EXPECT_CALL(blobMock, openBlob(ipmi_flash::verifyBlobId, _))
225 .WillOnce(Return(session));
226 EXPECT_CALL(blobMock, commit(session, _))
227 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
228 EXPECT_THROW(updater.verifyFile(ipmi_flash::verifyBlobId, false),
229 ToolException);
230}
231
Jie Yang328f5202021-03-16 00:52:07 -0700232TEST_F(UpdateHandlerTest, ReadVerisonReturnExpected)
233{
234 /* It can return as expected, when polling and readBytes succeeds. */
235 EXPECT_CALL(blobMock, openBlob(ipmi_flash::biosVersionBlobId, _))
236 .WillOnce(Return(session));
237 ipmiblob::StatResponse readVersionResponse = {};
Patrick Williams42a44c22024-08-16 15:21:32 -0400238 readVersionResponse.blob_state =
239 blobs::StateFlags::open_read | blobs::StateFlags::committed;
Jie Yang328f5202021-03-16 00:52:07 -0700240 readVersionResponse.size = 10;
241 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
242 .WillOnce(Return(readVersionResponse));
243 std::vector<uint8_t> resp = {0x2d, 0xfe};
244 EXPECT_CALL(blobMock, readBytes(session, 0, _)).WillOnce(Return(resp));
245
246 EXPECT_CALL(blobMock, closeBlob(session)).WillOnce(Return());
247 EXPECT_EQ(resp, updater.readVersion(ipmi_flash::biosVersionBlobId));
248}
249
250TEST_F(UpdateHandlerTest, ReadVersionExceptionWhenPollingSucceedsReadBytesFails)
251{
252 /* On readBytes, it can except. */
253 EXPECT_CALL(blobMock, openBlob(ipmi_flash::biosVersionBlobId, _))
254 .WillOnce(Return(session));
255 ipmiblob::StatResponse readVersionResponse = {};
Patrick Williams42a44c22024-08-16 15:21:32 -0400256 readVersionResponse.blob_state =
257 blobs::StateFlags::open_read | blobs::StateFlags::committed;
Jie Yang328f5202021-03-16 00:52:07 -0700258 readVersionResponse.size = 10;
259 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
260 .WillOnce(Return(readVersionResponse));
261 EXPECT_CALL(blobMock, readBytes(session, 0, _))
262 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
263 EXPECT_CALL(blobMock, closeBlob(session)).WillOnce(Return());
264 EXPECT_THROW(updater.readVersion(ipmi_flash::biosVersionBlobId),
265 ToolException);
266}
267
William A. Kennington IIIf88bcf32021-10-14 02:15:10 -0700268TEST_F(UpdateHandlerTest, ReadVersionReturnsErrorIfPollingFails)
Jie Yang328f5202021-03-16 00:52:07 -0700269{
William A. Kennington IIIf88bcf32021-10-14 02:15:10 -0700270 /* It can throw an error, when polling fails. */
Jie Yang328f5202021-03-16 00:52:07 -0700271 EXPECT_CALL(blobMock, openBlob(ipmi_flash::biosVersionBlobId, _))
Willy Tu3f596282024-04-12 16:27:17 +0000272 .Times(3)
273 .WillRepeatedly(Return(session));
Jie Yang328f5202021-03-16 00:52:07 -0700274 ipmiblob::StatResponse readVersionResponse = {};
275 readVersionResponse.blob_state = blobs::StateFlags::commit_error;
276 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
Willy Tu3f596282024-04-12 16:27:17 +0000277 .Times(3)
278 .WillRepeatedly(Return(readVersionResponse));
279 EXPECT_CALL(blobMock, closeBlob(session)).Times(3).WillRepeatedly(Return());
William A. Kennington IIIf88bcf32021-10-14 02:15:10 -0700280 EXPECT_THROW(updater.readVersion(ipmi_flash::biosVersionBlobId),
281 ToolException);
Jie Yang328f5202021-03-16 00:52:07 -0700282}
283
Willy Tu3f596282024-04-12 16:27:17 +0000284TEST_F(UpdateHandlerTest, ReadVersionReturnExpectedWithRetries)
285{
286 /* It can return as expected, when polling and readBytes succeeds. */
287 EXPECT_CALL(blobMock, openBlob(ipmi_flash::biosVersionBlobId, _))
288 .Times(3)
289 .WillRepeatedly(Return(session));
290 ipmiblob::StatResponse readVersionResponse = {};
Patrick Williams42a44c22024-08-16 15:21:32 -0400291 readVersionResponse.blob_state =
292 blobs::StateFlags::open_read | blobs::StateFlags::committed;
Willy Tu3f596282024-04-12 16:27:17 +0000293 readVersionResponse.size = 10;
294 EXPECT_CALL(blobMock, getStat(TypedEq<std::uint16_t>(session)))
295 .Times(3)
296 .WillRepeatedly(Return(readVersionResponse));
297 std::vector<uint8_t> resp = {0x2d, 0xfe};
298 EXPECT_CALL(blobMock, readBytes(session, 0, _))
299 .WillOnce(Throw(ToolException("asdf")))
300 .WillOnce(Throw(ToolException("asdf")))
301 .WillOnce(Return(resp));
302
303 EXPECT_CALL(blobMock, closeBlob(session)).Times(3).WillRepeatedly(Return());
304 EXPECT_EQ(resp, updater.readVersion(ipmi_flash::biosVersionBlobId));
305}
306
Jie Yang328f5202021-03-16 00:52:07 -0700307TEST_F(UpdateHandlerTest, ReadVersionCovertsOpenBlobExceptionToToolException)
308{
309 /* On open, it can except and this is converted to a ToolException. */
310 EXPECT_CALL(blobMock, openBlob(ipmi_flash::biosVersionBlobId, _))
311 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
312 EXPECT_THROW(updater.readVersion(ipmi_flash::biosVersionBlobId),
313 ToolException);
314}
315
Patrick Venture8cdf9642020-09-30 09:41:51 -0700316TEST_F(UpdateHandlerTest, CleanArtifactsSkipsCleanupIfUnableToOpen)
317{
318 /* It only tries to commit if it's able to open the blob. However, if
319 * committing fails, this error is ignored.
320 */
321 EXPECT_CALL(blobMock, openBlob(ipmi_flash::cleanupBlobId, _))
322 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
323 EXPECT_CALL(blobMock, commit(_, _)).Times(0);
324 EXPECT_CALL(blobMock, closeBlob(_)).Times(0);
325
326 updater.cleanArtifacts();
327}
328
329TEST_F(UpdateHandlerTest, CleanArtifactsIfOpenDoesClose)
330{
331 /* The closeBlob call is called even if commit excepts. */
332 std::uint16_t session = 0xa5eb;
333 EXPECT_CALL(blobMock, openBlob(ipmi_flash::cleanupBlobId, _))
334 .WillOnce(Return(session));
335 EXPECT_CALL(blobMock, commit(session, _))
336 .WillOnce(Throw(ipmiblob::BlobException("asdf")));
337 EXPECT_CALL(blobMock, closeBlob(session));
338
339 updater.cleanArtifacts();
340}
341
342TEST_F(UpdateHandlerTest, CleanArtifactsSuccessPath)
343{
344 std::uint16_t session = 0xa5eb;
345 EXPECT_CALL(blobMock, openBlob(ipmi_flash::cleanupBlobId, _))
346 .WillOnce(Return(session));
347 EXPECT_CALL(blobMock, commit(session, _));
348 EXPECT_CALL(blobMock, closeBlob(session));
349
350 updater.cleanArtifacts();
351}
352
Patrick Venture1f09d412019-06-19 16:01:06 -0700353class UpdaterTest : public ::testing::Test
354{
355 protected:
Patrick Venture8cdf9642020-09-30 09:41:51 -0700356 static constexpr char image[] = "image.bin";
357 static constexpr char signature[] = "signature.bin";
358 static constexpr char layout[] = "static";
359 static constexpr char path[] = "/flash/static";
360
Patrick Venture1f09d412019-06-19 16:01:06 -0700361 ipmiblob::BlobInterfaceMock blobMock;
362 std::uint16_t session = 0xbeef;
Brandon Kim6749ba12019-09-19 13:31:37 -0700363 bool defaultIgnore = false;
Patrick Venture1f09d412019-06-19 16:01:06 -0700364};
365
Patrick Venture1f09d412019-06-19 16:01:06 -0700366TEST_F(UpdaterTest, UpdateMainReturnsSuccessIfAllSuccess)
367{
Patrick Venture1f09d412019-06-19 16:01:06 -0700368 UpdateHandlerMock handler;
369
Patrick Venture8cdf9642020-09-30 09:41:51 -0700370 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(true));
371 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return());
372 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature))
373 .WillOnce(Return());
Brandon Kim6749ba12019-09-19 13:31:37 -0700374 EXPECT_CALL(handler, verifyFile(ipmi_flash::verifyBlobId, defaultIgnore))
Patrick Venture1f09d412019-06-19 16:01:06 -0700375 .WillOnce(Return(true));
Brandon Kim6749ba12019-09-19 13:31:37 -0700376 EXPECT_CALL(handler, verifyFile(ipmi_flash::updateBlobId, defaultIgnore))
Patrick Venture1f09d412019-06-19 16:01:06 -0700377 .WillOnce(Return(true));
Willy Tu203ad802021-09-09 20:06:36 -0700378 EXPECT_CALL(blobMock, getBlobList())
379 .WillOnce(Return(std::vector<std::string>({})));
Patrick Venture1f09d412019-06-19 16:01:06 -0700380
Willy Tu203ad802021-09-09 20:06:36 -0700381 updaterMain(&handler, &blobMock, image, signature, layout, defaultIgnore);
382}
383
384TEST_F(UpdaterTest, UpdateMainReturnsSuccessIfAllSuccessWithDeleteActiveBlob)
385{
386 UpdateHandlerMock handler;
387
388 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(true));
389 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return());
390 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature))
391 .WillOnce(Return());
392 EXPECT_CALL(handler, verifyFile(ipmi_flash::verifyBlobId, defaultIgnore))
393 .WillOnce(Return(true));
394 EXPECT_CALL(handler, verifyFile(ipmi_flash::updateBlobId, defaultIgnore))
395 .WillOnce(Return(true));
396 EXPECT_CALL(handler, cleanArtifacts()).WillOnce(Return());
397 EXPECT_CALL(blobMock, deleteBlob(ipmi_flash::activeImageBlobId))
Patrick Venture28624212021-11-09 09:04:03 -0800398 .WillOnce(Return(true));
Willy Tu203ad802021-09-09 20:06:36 -0700399 EXPECT_CALL(blobMock, getBlobList())
400 .WillOnce(Return(std::vector<std::string>(
401 {ipmi_flash::staticLayoutBlobId, ipmi_flash::activeImageBlobId})));
402
403 updaterMain(&handler, &blobMock, image, signature, layout, defaultIgnore);
Brandon Kim6749ba12019-09-19 13:31:37 -0700404}
405
406TEST_F(UpdaterTest, UpdateMainReturnsSuccessWithIgnoreUpdate)
407{
Brandon Kim6749ba12019-09-19 13:31:37 -0700408 UpdateHandlerMock handler;
409 bool updateIgnore = true;
410
Patrick Venture8cdf9642020-09-30 09:41:51 -0700411 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(true));
412 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return());
413 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature))
414 .WillOnce(Return());
Brandon Kim6749ba12019-09-19 13:31:37 -0700415 EXPECT_CALL(handler, verifyFile(ipmi_flash::verifyBlobId, defaultIgnore))
416 .WillOnce(Return(true));
417 EXPECT_CALL(handler, verifyFile(ipmi_flash::updateBlobId, updateIgnore))
418 .WillOnce(Return(true));
Willy Tu203ad802021-09-09 20:06:36 -0700419 EXPECT_CALL(blobMock, getBlobList())
420 .WillOnce(Return(std::vector<std::string>({})));
Brandon Kim6749ba12019-09-19 13:31:37 -0700421
Willy Tu203ad802021-09-09 20:06:36 -0700422 updaterMain(&handler, &blobMock, image, signature, layout, updateIgnore);
Patrick Venture1f09d412019-06-19 16:01:06 -0700423}
Patrick Venture9b534f02018-12-13 16:10:02 -0800424
Patrick Venture5f2fcc42019-06-20 07:21:05 -0700425TEST_F(UpdaterTest, UpdateMainCleansUpOnFailure)
426{
Patrick Venture5f2fcc42019-06-20 07:21:05 -0700427 UpdateHandlerMock handler;
428
Patrick Venture8cdf9642020-09-30 09:41:51 -0700429 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(true));
430 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return());
431 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature))
432 .WillOnce(Return());
Brandon Kim6749ba12019-09-19 13:31:37 -0700433 EXPECT_CALL(handler, verifyFile(ipmi_flash::verifyBlobId, defaultIgnore))
Patrick Venture5f2fcc42019-06-20 07:21:05 -0700434 .WillOnce(Return(false));
435 EXPECT_CALL(handler, cleanArtifacts()).WillOnce(Return());
Willy Tu203ad802021-09-09 20:06:36 -0700436 EXPECT_CALL(blobMock, getBlobList())
437 .WillOnce(Return(std::vector<std::string>({})));
Patrick Venture5f2fcc42019-06-20 07:21:05 -0700438
Willy Tu203ad802021-09-09 20:06:36 -0700439 EXPECT_THROW(updaterMain(&handler, &blobMock, image, signature, layout,
440 defaultIgnore),
Patrick Venture8cdf9642020-09-30 09:41:51 -0700441 ToolException);
442}
443
444TEST_F(UpdaterTest, UpdateMainExceptsOnUpdateBlobFailure)
445{
446 UpdateHandlerMock handler;
447
448 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(true));
449 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return());
450 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature))
451 .WillOnce(Return());
452 EXPECT_CALL(handler, verifyFile(ipmi_flash::verifyBlobId, defaultIgnore))
453 .WillOnce(Return(true));
454 EXPECT_CALL(handler, verifyFile(ipmi_flash::updateBlobId, defaultIgnore))
455 .WillOnce(Return(false));
456 EXPECT_CALL(handler, cleanArtifacts()).WillOnce(Return());
Willy Tu203ad802021-09-09 20:06:36 -0700457 EXPECT_CALL(blobMock, getBlobList())
458 .WillOnce(Return(std::vector<std::string>({})));
Patrick Venture8cdf9642020-09-30 09:41:51 -0700459
Willy Tu203ad802021-09-09 20:06:36 -0700460 EXPECT_THROW(updaterMain(&handler, &blobMock, image, signature, layout,
461 defaultIgnore),
Patrick Venture8cdf9642020-09-30 09:41:51 -0700462 ToolException);
463}
464
465TEST_F(UpdaterTest, UpdateMainExceptsIfAvailableNotFound)
466{
467 UpdateHandlerMock handler;
468
469 EXPECT_CALL(handler, checkAvailable(path)).WillOnce(Return(false));
470
Willy Tu203ad802021-09-09 20:06:36 -0700471 EXPECT_THROW(updaterMain(&handler, &blobMock, image, signature, layout,
472 defaultIgnore),
Patrick Venture8cdf9642020-09-30 09:41:51 -0700473 ToolException);
Patrick Venture5f2fcc42019-06-20 07:21:05 -0700474}
475
Patrick Venture9b534f02018-12-13 16:10:02 -0800476} // namespace host_tool