diff options
author | Aatir Manzur <aatrapps@gmail.com> | 2019-09-06 13:30:48 -0500 |
---|---|---|
committer | Matt Spinler <spinler@us.ibm.com> | 2019-10-09 08:13:30 -0500 |
commit | 51c9263f080fe794d62724a35e44dc1cfff75415 (patch) | |
tree | a238eb121bb90102f2ef2e7756d70280e152a51a /test/openpower-pels/user_data_test.cpp | |
parent | 07eefc543b36f9fdb7d7b7ff2a64018d0770bc31 (diff) | |
download | phosphor-logging-51c9263f080fe794d62724a35e44dc1cfff75415.tar.gz phosphor-logging-51c9263f080fe794d62724a35e44dc1cfff75415.zip |
PEL: User Data class
This class is used for accessing the UserData section of a PEL.
This section contains free format data that can be identified by the
component ID, subtype, and version fields in the section header.
Signed-off-by: Aatir Manzur <aatrapps@gmail.com>
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I1223f84353e81202d1ff63c00f3d926cda4994e5
Diffstat (limited to 'test/openpower-pels/user_data_test.cpp')
-rw-r--r-- | test/openpower-pels/user_data_test.cpp | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/test/openpower-pels/user_data_test.cpp b/test/openpower-pels/user_data_test.cpp new file mode 100644 index 0000000..be3f5cb --- /dev/null +++ b/test/openpower-pels/user_data_test.cpp @@ -0,0 +1,91 @@ +#include "extensions/openpower-pels/user_data.hpp" +#include "pel_utils.hpp" + +#include <gtest/gtest.h> + +using namespace openpower::pels; + +std::vector<uint8_t> udSectionData{0x55, 0x44, // ID 'UD' + 0x00, 0x10, // Size + 0x01, 0x02, // version, subtype + 0x03, 0x04, // comp ID + + // Data + 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, + 0x18}; + +TEST(UserDataTest, UnflattenFlattenTest) +{ + Stream stream(udSectionData); + UserData ud(stream); + + EXPECT_TRUE(ud.valid()); + EXPECT_EQ(ud.header().id, 0x5544); + EXPECT_EQ(ud.header().size, udSectionData.size()); + EXPECT_EQ(ud.header().version, 0x01); + EXPECT_EQ(ud.header().subType, 0x02); + EXPECT_EQ(ud.header().componentID, 0x0304); + + const auto& data = ud.data(); + + // The data itself starts after the header + EXPECT_EQ(data.size(), udSectionData.size() - 8); + + for (size_t i = 0; i < data.size(); i++) + { + EXPECT_EQ(data[i], udSectionData[i + 8]); + } + + // Now flatten + std::vector<uint8_t> newData; + Stream newStream(newData); + ud.flatten(newStream); + + EXPECT_EQ(udSectionData, newData); +} + +TEST(UserDataTest, BadDataTest) +{ + auto data = udSectionData; + data.resize(4); + + Stream stream(data); + UserData ud(stream); + EXPECT_FALSE(ud.valid()); +} + +TEST(UserDataTest, BadSizeFieldTest) +{ + auto data = udSectionData; + + { + data[3] = 0xFF; // Set the size field too large + Stream stream(data); + UserData ud(stream); + EXPECT_FALSE(ud.valid()); + } + { + data[3] = 0x7; // Set the size field too small + Stream stream(data); + UserData ud(stream); + EXPECT_FALSE(ud.valid()); + } +} + +TEST(UserDataTest, ConstructorTest) +{ + std::vector<uint8_t> data{0x11, 0x22, 0x33, 0x44, 0x55, 0x66}; + + UserData ud(0x1112, 0x42, 0x01, data); + EXPECT_TRUE(ud.valid()); + + EXPECT_EQ(ud.header().id, 0x5544); + EXPECT_EQ(ud.header().size, 14); + EXPECT_EQ(ud.header().version, 0x01); + EXPECT_EQ(ud.header().subType, 0x42); + EXPECT_EQ(ud.header().componentID, 0x1112); + + const auto& d = ud.data(); + + EXPECT_EQ(d, data); +} |