diff options
author | Brandon Kim <brandonkim@google.com> | 2019-10-18 10:08:37 -0700 |
---|---|---|
committer | Brandon Kim <brandonkim@google.com> | 2019-10-18 10:33:14 -0700 |
commit | cc4ef0c5a492968e6e7e7df7e41acbd599f0e23f (patch) | |
tree | 62f2d41ffe4ad94a5ef933429c3e304d8e00be86 /test/tools_blob_unittest.cpp | |
parent | 0106f57eab1264e86fc9e75afa453ebbed99345d (diff) | |
download | ipmi-blob-tool-cc4ef0c5a492968e6e7e7df7e41acbd599f0e23f.tar.gz ipmi-blob-tool-cc4ef0c5a492968e6e7e7df7e41acbd599f0e23f.zip |
blob: implement deleteBlob command
Implement the deleteBlob command for the blob handler. Adding a unit
test to go along with it.
Change-Id: I2bbc93a6e78d5311bd2033d6a8b179374777f794
Signed-off-by: Brandon Kim <brandonkim@google.com>
Diffstat (limited to 'test/tools_blob_unittest.cpp')
-rw-r--r-- | test/tools_blob_unittest.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/tools_blob_unittest.cpp b/test/tools_blob_unittest.cpp index 3fe7974..fff3a56 100644 --- a/test/tools_blob_unittest.cpp +++ b/test/tools_blob_unittest.cpp @@ -449,4 +449,32 @@ TEST_F(BlobHandlerTest, readBytesSucceeds) EXPECT_EQ(blob.readBytes(0x0001, 0, 4), expectedBytes); } +TEST_F(BlobHandlerTest, deleteBlobSucceeds) +{ + /* The delete succeeds. */ + auto ipmi = CreateIpmiMock(); + IpmiInterfaceMock* ipmiMock = + reinterpret_cast<IpmiInterfaceMock*>(ipmi.get()); + BlobHandler blob(std::move(ipmi)); + + std::vector<std::uint8_t> request = { + 0xcf, 0xc2, + 0x00, static_cast<std::uint8_t>(BlobOEMCommands::bmcBlobDelete), + 0x00, 0x00, + 'a', 'b', + 'c', 'd', + 0x00}; + + std::vector<std::uint8_t> resp = {0xcf, 0xc2, 0x00}; + std::vector<std::uint8_t> reqCrc = {'a', 'b', 'c', 'd', 0x00}; + EXPECT_CALL(crcMock, generateCrc(ContainerEq(reqCrc))) + .WillOnce(Return(0x00)); + + EXPECT_CALL(*ipmiMock, + sendPacket(ipmiOEMNetFn, ipmiOEMBlobCmd, ContainerEq(request))) + .WillOnce(Return(resp)); + + blob.deleteBlob("abcd"); +} + } // namespace ipmiblob |