1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include "ipmi.hpp"
#include "manager_mock.hpp"
#include <cstring>
#include <string>
#include <gtest/gtest.h>
namespace blobs
{
using ::testing::Return;
// ipmid.hpp isn't installed where we can grab it and this value is per BMC
// SoC.
#define MAX_IPMI_BUFFER 64
TEST(BlobEnumerateTest, VerifyIfRequestByIdInvalidReturnsFailure)
{
// This tests to verify that if the index is invalid, it'll return failure.
ManagerMock mgr;
size_t dataLen;
uint8_t reply[MAX_IPMI_BUFFER] = {0};
struct BmcBlobEnumerateTx req;
uint8_t* request = reinterpret_cast<uint8_t*>(&req);
req.cmd = BlobOEMCommands::bmcBlobEnumerate;
req.blobIdx = 0;
dataLen = sizeof(struct BmcBlobEnumerateTx);
EXPECT_CALL(mgr, getBlobId(req.blobIdx)).WillOnce(Return(""));
EXPECT_EQ(IPMI_CC_INVALID, enumerateBlob(&mgr, request, reply, &dataLen));
}
TEST(BlobEnumerateTest, BoringRequestByIdAndReceive)
{
// This tests that if an index into the blob_id cache is valid, the command
// will return the blobId.
ManagerMock mgr;
size_t dataLen;
uint8_t reply[MAX_IPMI_BUFFER] = {0};
struct BmcBlobEnumerateTx req;
struct BmcBlobEnumerateRx* rep;
uint8_t* request = reinterpret_cast<uint8_t*>(&req);
std::string blobId = "/asdf";
req.cmd = BlobOEMCommands::bmcBlobEnumerate;
req.blobIdx = 0;
dataLen = sizeof(struct BmcBlobEnumerateTx);
EXPECT_CALL(mgr, getBlobId(req.blobIdx)).WillOnce(Return(blobId));
EXPECT_EQ(IPMI_CC_OK, enumerateBlob(&mgr, request, reply, &dataLen));
// We're expecting this as a response.
// blobId.length + 1 + sizeof(uint16_t);
EXPECT_EQ(blobId.length() + 1 + sizeof(uint16_t), dataLen);
rep = reinterpret_cast<struct BmcBlobEnumerateRx*>(reply);
EXPECT_EQ(0, std::memcmp(rep->blobId, blobId.c_str(), blobId.length() + 1));
}
} // namespace blobs
|