| #include "FruUtils.hpp" |
| |
| #include <array> |
| |
| #include "gtest/gtest.h" |
| |
| extern "C" |
| { |
| // Include for I2C_SMBUS_BLOCK_MAX |
| #include <linux/i2c.h> |
| } |
| |
| TEST(ValidateHeaderTest, InvalidFruVersionReturnsFalse) |
| { |
| // Validates the FruVersion is checked for the only legal value. |
| constexpr std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> fru_header = { |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
| |
| EXPECT_FALSE(validateHeader(fru_header)); |
| } |
| |
| TEST(ValidateHeaderTest, InvalidReservedReturnsFalse) |
| { |
| // Validates the reserved bit(7:4) of first bytes. |
| constexpr std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> fru_header = { |
| 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
| |
| EXPECT_FALSE(validateHeader(fru_header)); |
| } |
| |
| TEST(ValidateHeaderTest, InvalidPaddingReturnsFalse) |
| { |
| // Validates the padding byte (7th byte). |
| constexpr std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> fru_header = { |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00}; |
| |
| EXPECT_FALSE(validateHeader(fru_header)); |
| } |
| |
| TEST(ValidateHeaderTest, InvalidChecksumReturnsFalse) |
| { |
| // Validates the checksum, check for incorrect value. |
| constexpr std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> fru_header = { |
| 0x01, 0x00, 0x01, 0x02, 0x03, 0x04, 0x00, 0x00}; |
| |
| EXPECT_FALSE(validateHeader(fru_header)); |
| } |
| |
| TEST(ValidateHeaderTest, ValidChecksumReturnsTrue) |
| { |
| // Validates the checksum, check for correct value. |
| constexpr std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> fru_header = { |
| 0x01, 0x00, 0x01, 0x02, 0x03, 0x04, 0x00, 0xf5}; |
| |
| EXPECT_TRUE(validateHeader(fru_header)); |
| } |
| |
| TEST(VerifyOffsetTest, EmptyFruDataReturnsFalse) |
| { |
| // Validates the FruData size is checked for non empty. |
| std::vector<uint8_t> fru_data = {}; |
| |
| EXPECT_FALSE(verifyOffset(fru_data, fruAreas::fruAreaChassis, 0)); |
| } |
| |
| TEST(VerifyOffsetTest, AreaOutOfRangeReturnsFalse) |
| { |
| // Validates the FruArea value, check if it is within range. |
| const std::vector<uint8_t> fru_data = {0x01, 0x00, 0x00, 0x00, 0x00, |
| 0x00, 0x00, 0x00, 0x00}; |
| |
| unsigned int areaOutOfRange = 8; |
| EXPECT_FALSE( |
| verifyOffset(fru_data, static_cast<fruAreas>(areaOutOfRange), 0)); |
| } |
| |
| TEST(VerifyOffsetTest, OverlapNextAreaReturnsFalse) |
| { |
| // Validates the Overlap of offsets with overlapped values. |
| const std::vector<uint8_t> fru_data = {0x01, 0x00, 0x01, 0x02, 0x03, |
| 0x04, 0x00, 0x00, 0x00}; |
| |
| EXPECT_FALSE(verifyOffset(fru_data, fruAreas::fruAreaChassis, 2)); |
| } |
| |
| TEST(VerifyOffsetTest, OverlapPrevAreaReturnsFalse) |
| { |
| // Validates the Overlap of offsets with overlapped values. |
| const std::vector<uint8_t> fru_data = {0x01, 0x00, 0x01, 0x03, 0x02, |
| 0x07, 0x00, 0x00, 0x00}; |
| |
| EXPECT_FALSE(verifyOffset(fru_data, fruAreas::fruAreaProduct, 2)); |
| } |
| |
| TEST(VerifyOffsetTest, ValidInputDataNoOverlapReturnsTrue) |
| { |
| // Validates all inputs with expected value and no overlap. |
| const std::vector<uint8_t> fru_data = {0x01, 0x00, 0x01, 0x02, 0x03, |
| 0x04, 0x00, 0x00, 0x00}; |
| |
| EXPECT_TRUE(verifyOffset(fru_data, fruAreas::fruAreaChassis, 1)); |
| } |