blob: 3e0ac01727288b74cb3b1acf5126af03d29f9dda [file] [log] [blame]
Matt Spinlerd3335df2019-07-10 11:04:21 -05001#include "pel_utils.hpp"
2
3#include "extensions/openpower-pels/private_header.hpp"
Matt Spinler03c1d912019-07-10 14:12:15 -05004#include "extensions/openpower-pels/user_header.hpp"
Matt Spinlerd3335df2019-07-10 11:04:21 -05005
6#include <fstream>
7
8#include <gtest/gtest.h>
9
10namespace fs = std::filesystem;
11using namespace openpower::pels;
12
Matt Spinlercb6b0592019-07-16 15:58:51 -050013std::filesystem::path CleanLogID::pelIDFile{};
Matt Spinler89fa0822019-07-17 13:54:30 -050014std::filesystem::path CleanPELFiles::pelIDFile{};
15std::filesystem::path CleanPELFiles::repoPath{};
Matt Spinler367144c2019-09-19 15:33:52 -050016std::filesystem::path CleanPELFiles::registryPath{};
Matt Spinlercb6b0592019-07-16 15:58:51 -050017
Matt Spinlerd3335df2019-07-10 11:04:21 -050018constexpr uint8_t simplePEL[] = {
19 // private header section header
20 0x50, 0x48, // ID 'PH'
21 0x00, 0x30, // Size
22 0x01, 0x02, // version, subtype
23 0x03, 0x04, // comp ID
24
25 // private header
26 0x20, 0x30, 0x05, 0x09, 0x11, 0x1E, 0x1, 0x63, // create timestamp
27 0x20, 0x31, 0x06, 0x0F, 0x09, 0x22, 0x3A, 0x00, // commit timestamp
28 0xAA, // creatorID
29 0x00, // logtype
30 0x00, // reserved
31 0x02, // section count
32 0x90, 0x91, 0x92, 0x93, // OpenBMC log ID
33 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0, // creator version
34 0x50, 0x51, 0x52, 0x53, // plid
Matt Spinler03c1d912019-07-10 14:12:15 -050035 0x80, 0x81, 0x82, 0x83, // id
Matt Spinlerd3335df2019-07-10 11:04:21 -050036
Matt Spinler03c1d912019-07-10 14:12:15 -050037 // user header section header
38 0x55, 0x48, // ID 'UH'
39 0x00, 0x18, // Size
40 0x01, 0x0A, // version, subtype
41 0x0B, 0x0C, // comp ID
42
43 // user header
44 0x10, 0x04, // subsystem, scope
45 0x20, 0x00, // severity, type
46 0x00, 0x00, 0x00, 0x00, // reserved
47 0x03, 0x04, // problem domain, vector
48 0x80, 0xC0, // action flags
49 0x00, 0x00, 0x00, 0x00 // reserved
50
51 // Add more as the code supports more
Matt Spinlerd3335df2019-07-10 11:04:21 -050052};
53
54std::unique_ptr<std::vector<uint8_t>> pelDataFactory(TestPelType type)
55{
56 std::unique_ptr<std::vector<uint8_t>> data;
57 switch (type)
58 {
59 case TestPelType::pelSimple:
60 data = std::make_unique<std::vector<uint8_t>>(
61 simplePEL, simplePEL + sizeof(simplePEL));
62 break;
63 case TestPelType::privateHeaderSimple:
64 data = std::make_unique<std::vector<uint8_t>>(
65 simplePEL, simplePEL + PrivateHeader::flattenedSize());
66 break;
Matt Spinler03c1d912019-07-10 14:12:15 -050067 case TestPelType::userHeaderSimple:
68 data = std::make_unique<std::vector<uint8_t>>(
69 simplePEL + PrivateHeader::flattenedSize(),
70 simplePEL + PrivateHeader::flattenedSize() +
71 UserHeader::flattenedSize());
72 break;
Matt Spinlerd3335df2019-07-10 11:04:21 -050073 }
74 return data;
75}
76
77std::unique_ptr<std::vector<uint8_t>> readPELFile(const fs::path& path)
78{
79 std::ifstream file{path};
80
81 auto pel = std::make_unique<std::vector<uint8_t>>(
82 std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
83 return pel;
84}