blob: 46ec8ed1a7e2c9de7cb3800653a9e1676ffc9b45 [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 Spinlercb6b0592019-07-16 15:58:51 -050016
Matt Spinlerd3335df2019-07-10 11:04:21 -050017constexpr uint8_t simplePEL[] = {
18 // private header section header
19 0x50, 0x48, // ID 'PH'
20 0x00, 0x30, // Size
21 0x01, 0x02, // version, subtype
22 0x03, 0x04, // comp ID
23
24 // private header
25 0x20, 0x30, 0x05, 0x09, 0x11, 0x1E, 0x1, 0x63, // create timestamp
26 0x20, 0x31, 0x06, 0x0F, 0x09, 0x22, 0x3A, 0x00, // commit timestamp
27 0xAA, // creatorID
28 0x00, // logtype
29 0x00, // reserved
30 0x02, // section count
31 0x90, 0x91, 0x92, 0x93, // OpenBMC log ID
32 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0, // creator version
33 0x50, 0x51, 0x52, 0x53, // plid
Matt Spinler03c1d912019-07-10 14:12:15 -050034 0x80, 0x81, 0x82, 0x83, // id
Matt Spinlerd3335df2019-07-10 11:04:21 -050035
Matt Spinler03c1d912019-07-10 14:12:15 -050036 // user header section header
37 0x55, 0x48, // ID 'UH'
38 0x00, 0x18, // Size
39 0x01, 0x0A, // version, subtype
40 0x0B, 0x0C, // comp ID
41
42 // user header
43 0x10, 0x04, // subsystem, scope
44 0x20, 0x00, // severity, type
45 0x00, 0x00, 0x00, 0x00, // reserved
46 0x03, 0x04, // problem domain, vector
47 0x80, 0xC0, // action flags
48 0x00, 0x00, 0x00, 0x00 // reserved
49
50 // Add more as the code supports more
Matt Spinlerd3335df2019-07-10 11:04:21 -050051};
52
53std::unique_ptr<std::vector<uint8_t>> pelDataFactory(TestPelType type)
54{
55 std::unique_ptr<std::vector<uint8_t>> data;
56 switch (type)
57 {
58 case TestPelType::pelSimple:
59 data = std::make_unique<std::vector<uint8_t>>(
60 simplePEL, simplePEL + sizeof(simplePEL));
61 break;
62 case TestPelType::privateHeaderSimple:
63 data = std::make_unique<std::vector<uint8_t>>(
64 simplePEL, simplePEL + PrivateHeader::flattenedSize());
65 break;
Matt Spinler03c1d912019-07-10 14:12:15 -050066 case TestPelType::userHeaderSimple:
67 data = std::make_unique<std::vector<uint8_t>>(
68 simplePEL + PrivateHeader::flattenedSize(),
69 simplePEL + PrivateHeader::flattenedSize() +
70 UserHeader::flattenedSize());
71 break;
Matt Spinlerd3335df2019-07-10 11:04:21 -050072 }
73 return data;
74}
75
76std::unique_ptr<std::vector<uint8_t>> readPELFile(const fs::path& path)
77{
78 std::ifstream file{path};
79
80 auto pel = std::make_unique<std::vector<uint8_t>>(
81 std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
82 return pel;
83}