#include "create_action_map.hpp" #include "data_mock.hpp" #include "firmware_handler.hpp" #include "flags.hpp" #include "image_mock.hpp" #include "util.hpp" #include #include #include namespace ipmi_flash { namespace { using ::testing::Return; using ::testing::StrEq; class FirmwareHandlerCommitTest : public ::testing::Test { protected: ImageHandlerMock *imageMock1, *imageMock2; std::vector blobs; std::vector data; void SetUp() override { std::unique_ptr image = std::make_unique(); imageMock1 = reinterpret_cast(image.get()); blobs.emplace_back(hashBlobId, std::move(image)); image = std::make_unique(); imageMock2 = reinterpret_cast(image.get()); blobs.emplace_back("asdf", std::move(image)); data.emplace_back(FirmwareFlags::UpdateFlags::ipmi, nullptr); } }; TEST_F(FirmwareHandlerCommitTest, VerifyCannotCommitOnFlashImage) { /* Verify the flash image returns failure on this command. It's a fairly * artificial test. */ auto handler = FirmwareBlobHandler::CreateFirmwareBlobHandler( std::move(blobs), std::move(data), CreateActionMap("asdf")); EXPECT_CALL(*imageMock2, open("asdf", std::ios::out)) .WillOnce(Return(true)); EXPECT_TRUE(handler->open( 0, blobs::OpenFlags::write | FirmwareFlags::UpdateFlags::ipmi, "asdf")); EXPECT_FALSE(handler->commit(0, {})); } TEST_F(FirmwareHandlerCommitTest, VerifyCannotCommitOnHashFile) { /* Verify the hash file returns failure on this command. It's a fairly * artificial test. */ auto handler = FirmwareBlobHandler::CreateFirmwareBlobHandler( std::move(blobs), std::move(data), CreateActionMap("asdf")); EXPECT_CALL(*imageMock1, open(StrEq(hashBlobId), std::ios::out)) .WillOnce(Return(true)); EXPECT_TRUE(handler->open( 0, blobs::OpenFlags::write | FirmwareFlags::UpdateFlags::ipmi, hashBlobId)); EXPECT_FALSE(handler->commit(0, {})); } } // namespace } // namespace ipmi_flash