| Matt Spinler | 97f7abc | 2019-11-06 09:40:23 -0600 | [diff] [blame] | 1 | /** | 
|  | 2 | * Copyright © 2019 IBM Corporation | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *     http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 16 | #include "extensions/openpower-pels/src.hpp" | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 17 | #include "mocks.hpp" | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 18 | #include "pel_utils.hpp" | 
|  | 19 |  | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 20 | #include <fstream> | 
|  | 21 |  | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 22 | #include <gtest/gtest.h> | 
|  | 23 |  | 
|  | 24 | using namespace openpower::pels; | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 25 | using ::testing::_; | 
|  | 26 | using ::testing::InvokeWithoutArgs; | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 27 | using ::testing::NiceMock; | 
|  | 28 | using ::testing::Return; | 
| Matt Spinler | 6ea4d5f | 2020-05-20 13:31:07 -0500 | [diff] [blame] | 29 | using ::testing::ReturnRef; | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 30 | using ::testing::SetArgReferee; | 
| Matt Spinler | 3bdd011 | 2020-08-27 10:24:34 -0500 | [diff] [blame] | 31 | using ::testing::Throw; | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 32 | namespace fs = std::filesystem; | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 33 |  | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 34 | const auto testRegistry = R"( | 
|  | 35 | { | 
|  | 36 | "PELs": | 
|  | 37 | [ | 
|  | 38 | { | 
|  | 39 | "Name": "xyz.openbmc_project.Error.Test", | 
|  | 40 | "Subsystem": "bmc_firmware", | 
|  | 41 | "SRC": | 
|  | 42 | { | 
|  | 43 | "ReasonCode": "0xABCD", | 
|  | 44 | "Words6To9": | 
|  | 45 | { | 
|  | 46 | "6": | 
|  | 47 | { | 
|  | 48 | "Description": "Component ID", | 
|  | 49 | "AdditionalDataPropSource": "COMPID" | 
|  | 50 | }, | 
|  | 51 | "7": | 
|  | 52 | { | 
|  | 53 | "Description": "Failure count", | 
|  | 54 | "AdditionalDataPropSource": "FREQUENCY" | 
|  | 55 | }, | 
|  | 56 | "8": | 
|  | 57 | { | 
|  | 58 | "Description": "Time period", | 
|  | 59 | "AdditionalDataPropSource": "DURATION" | 
|  | 60 | }, | 
|  | 61 | "9": | 
|  | 62 | { | 
|  | 63 | "Description": "Error code", | 
|  | 64 | "AdditionalDataPropSource": "ERRORCODE" | 
|  | 65 | } | 
|  | 66 | } | 
|  | 67 | }, | 
|  | 68 | "Documentation": | 
|  | 69 | { | 
|  | 70 | "Description": "A Component Fault", | 
|  | 71 | "Message": "Comp %1 failed %2 times over %3 secs with ErrorCode %4", | 
|  | 72 | "MessageArgSources": | 
|  | 73 | [ | 
|  | 74 | "SRCWord6", "SRCWord7", "SRCWord8", "SRCWord9" | 
|  | 75 | ] | 
|  | 76 | } | 
|  | 77 | } | 
|  | 78 | ] | 
|  | 79 | } | 
|  | 80 | )"; | 
|  | 81 |  | 
|  | 82 | class SRCTest : public ::testing::Test | 
|  | 83 | { | 
|  | 84 | protected: | 
|  | 85 | static void SetUpTestCase() | 
|  | 86 | { | 
|  | 87 | char path[] = "/tmp/srctestXXXXXX"; | 
|  | 88 | regDir = mkdtemp(path); | 
|  | 89 | } | 
|  | 90 |  | 
|  | 91 | static void TearDownTestCase() | 
|  | 92 | { | 
|  | 93 | fs::remove_all(regDir); | 
|  | 94 | } | 
|  | 95 |  | 
|  | 96 | static std::string writeData(const char* data) | 
|  | 97 | { | 
|  | 98 | fs::path path = regDir / "registry.json"; | 
|  | 99 | std::ofstream stream{path}; | 
|  | 100 | stream << data; | 
|  | 101 | return path; | 
|  | 102 | } | 
|  | 103 |  | 
|  | 104 | static fs::path regDir; | 
|  | 105 | }; | 
|  | 106 |  | 
|  | 107 | fs::path SRCTest::regDir{}; | 
|  | 108 |  | 
|  | 109 | TEST_F(SRCTest, UnflattenFlattenTestNoCallouts) | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 110 | { | 
| Matt Spinler | 42828bd | 2019-10-11 10:39:30 -0500 | [diff] [blame] | 111 | auto data = pelDataFactory(TestPELType::primarySRCSection); | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 112 |  | 
|  | 113 | Stream stream{data}; | 
|  | 114 | SRC src{stream}; | 
|  | 115 |  | 
|  | 116 | EXPECT_TRUE(src.valid()); | 
|  | 117 |  | 
|  | 118 | EXPECT_EQ(src.header().id, 0x5053); | 
| Matt Spinler | f1b46ff | 2020-01-22 14:10:04 -0600 | [diff] [blame] | 119 | EXPECT_EQ(src.header().size, 0x50); | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 120 | EXPECT_EQ(src.header().version, 0x01); | 
|  | 121 | EXPECT_EQ(src.header().subType, 0x01); | 
|  | 122 | EXPECT_EQ(src.header().componentID, 0x0202); | 
|  | 123 |  | 
|  | 124 | EXPECT_EQ(src.version(), 0x02); | 
|  | 125 | EXPECT_EQ(src.flags(), 0x00); | 
|  | 126 | EXPECT_EQ(src.hexWordCount(), 9); | 
|  | 127 | EXPECT_EQ(src.size(), 0x48); | 
|  | 128 |  | 
|  | 129 | const auto& hexwords = src.hexwordData(); | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 130 | EXPECT_EQ(0x02020255, hexwords[0]); | 
|  | 131 | EXPECT_EQ(0x03030310, hexwords[1]); | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 132 | EXPECT_EQ(0x04040404, hexwords[2]); | 
|  | 133 | EXPECT_EQ(0x05050505, hexwords[3]); | 
|  | 134 | EXPECT_EQ(0x06060606, hexwords[4]); | 
|  | 135 | EXPECT_EQ(0x07070707, hexwords[5]); | 
|  | 136 | EXPECT_EQ(0x08080808, hexwords[6]); | 
|  | 137 | EXPECT_EQ(0x09090909, hexwords[7]); | 
|  | 138 |  | 
|  | 139 | EXPECT_EQ(src.asciiString(), "BD8D5678                        "); | 
|  | 140 | EXPECT_FALSE(src.callouts()); | 
|  | 141 |  | 
|  | 142 | // Flatten | 
|  | 143 | std::vector<uint8_t> newData; | 
|  | 144 | Stream newStream{newData}; | 
|  | 145 |  | 
|  | 146 | src.flatten(newStream); | 
|  | 147 | EXPECT_EQ(data, newData); | 
|  | 148 | } | 
|  | 149 |  | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 150 | TEST_F(SRCTest, UnflattenFlattenTest2Callouts) | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 151 | { | 
| Matt Spinler | 42828bd | 2019-10-11 10:39:30 -0500 | [diff] [blame] | 152 | auto data = pelDataFactory(TestPELType::primarySRCSection2Callouts); | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 153 |  | 
|  | 154 | Stream stream{data}; | 
|  | 155 | SRC src{stream}; | 
|  | 156 |  | 
|  | 157 | EXPECT_TRUE(src.valid()); | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 158 | EXPECT_EQ(src.flags(), 0x01); // Additional sections within the SRC. | 
| Matt Spinler | f9bae18 | 2019-10-09 13:37:38 -0500 | [diff] [blame] | 159 |  | 
|  | 160 | // Spot check the SRC fields, but they're the same as above | 
|  | 161 | EXPECT_EQ(src.asciiString(), "BD8D5678                        "); | 
|  | 162 |  | 
|  | 163 | // There should be 2 callouts | 
|  | 164 | const auto& calloutsSection = src.callouts(); | 
|  | 165 | ASSERT_TRUE(calloutsSection); | 
|  | 166 | const auto& callouts = calloutsSection->callouts(); | 
|  | 167 | EXPECT_EQ(callouts.size(), 2); | 
|  | 168 |  | 
|  | 169 | // spot check that each callout has the right substructures | 
|  | 170 | EXPECT_TRUE(callouts.front()->fruIdentity()); | 
|  | 171 | EXPECT_FALSE(callouts.front()->pceIdentity()); | 
|  | 172 | EXPECT_FALSE(callouts.front()->mru()); | 
|  | 173 |  | 
|  | 174 | EXPECT_TRUE(callouts.back()->fruIdentity()); | 
|  | 175 | EXPECT_TRUE(callouts.back()->pceIdentity()); | 
|  | 176 | EXPECT_TRUE(callouts.back()->mru()); | 
|  | 177 |  | 
|  | 178 | // Flatten | 
|  | 179 | std::vector<uint8_t> newData; | 
|  | 180 | Stream newStream{newData}; | 
|  | 181 |  | 
|  | 182 | src.flatten(newStream); | 
|  | 183 | EXPECT_EQ(data, newData); | 
|  | 184 | } | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 185 |  | 
|  | 186 | // Create an SRC from the message registry | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 187 | TEST_F(SRCTest, CreateTestNoCallouts) | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 188 | { | 
|  | 189 | message::Entry entry; | 
|  | 190 | entry.src.type = 0xBD; | 
|  | 191 | entry.src.reasonCode = 0xABCD; | 
|  | 192 | entry.subsystem = 0x42; | 
|  | 193 | entry.src.powerFault = true; | 
|  | 194 | entry.src.hexwordADFields = {{5, "TEST1"}, // Not a user defined word | 
|  | 195 | {6, "TEST1"}, | 
|  | 196 | {7, "TEST2"}, | 
|  | 197 | {8, "TEST3"}, | 
|  | 198 | {9, "TEST4"}}; | 
|  | 199 |  | 
|  | 200 | // Values for the SRC words pointed to above | 
|  | 201 | std::vector<std::string> adData{"TEST1=0x12345678", "TEST2=12345678", | 
|  | 202 | "TEST3=0XDEF", "TEST4=Z"}; | 
|  | 203 | AdditionalData ad{adData}; | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 204 | NiceMock<MockDataInterface> dataIface; | 
|  | 205 |  | 
|  | 206 | EXPECT_CALL(dataIface, getMotherboardCCIN).WillOnce(Return("ABCD")); | 
|  | 207 |  | 
|  | 208 | SRC src{entry, ad, dataIface}; | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 209 |  | 
|  | 210 | EXPECT_TRUE(src.valid()); | 
|  | 211 | EXPECT_TRUE(src.isPowerFaultEvent()); | 
|  | 212 | EXPECT_EQ(src.size(), baseSRCSize); | 
|  | 213 |  | 
|  | 214 | const auto& hexwords = src.hexwordData(); | 
|  | 215 |  | 
|  | 216 | // The spec always refers to SRC words 2 - 9, and as the hexwordData() | 
|  | 217 | // array index starts at 0 use the math in the [] below to make it easier | 
|  | 218 | // to tell what is being accessed. | 
|  | 219 | EXPECT_EQ(hexwords[2 - 2] & 0xF0000000, 0);    // Partition dump status | 
|  | 220 | EXPECT_EQ(hexwords[2 - 2] & 0x00F00000, 0);    // Partition boot type | 
|  | 221 | EXPECT_EQ(hexwords[2 - 2] & 0x000000FF, 0x55); // SRC format | 
|  | 222 | EXPECT_EQ(hexwords[3 - 2] & 0x000000FF, 0x10); // BMC position | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 223 | EXPECT_EQ(hexwords[3 - 2] & 0xFFFF0000, 0xABCD0000); // Motherboard CCIN | 
| Matt Spinler | bd716f0 | 2019-10-15 10:54:11 -0500 | [diff] [blame] | 224 |  | 
|  | 225 | // Validate more fields here as the code starts filling them in. | 
|  | 226 |  | 
|  | 227 | // Ensure hex word 5 wasn't allowed to be set to TEST1's contents | 
|  | 228 | EXPECT_EQ(hexwords[5 - 2], 0); | 
|  | 229 |  | 
|  | 230 | // The user defined hex word fields specifed in the additional data. | 
|  | 231 | EXPECT_EQ(hexwords[6 - 2], 0x12345678); // TEST1 | 
|  | 232 | EXPECT_EQ(hexwords[7 - 2], 12345678);   // TEST2 | 
|  | 233 | EXPECT_EQ(hexwords[8 - 2], 0xdef);      // TEST3 | 
|  | 234 | EXPECT_EQ(hexwords[9 - 2], 0);          // TEST4, but can't convert a 'Z' | 
|  | 235 |  | 
|  | 236 | EXPECT_EQ(src.asciiString(), "BD42ABCD                        "); | 
|  | 237 |  | 
|  | 238 | // No callouts | 
|  | 239 | EXPECT_FALSE(src.callouts()); | 
|  | 240 |  | 
|  | 241 | // May as well spot check the flatten/unflatten | 
|  | 242 | std::vector<uint8_t> data; | 
|  | 243 | Stream stream{data}; | 
|  | 244 | src.flatten(stream); | 
|  | 245 |  | 
|  | 246 | stream.offset(0); | 
|  | 247 | SRC newSRC{stream}; | 
|  | 248 |  | 
|  | 249 | EXPECT_TRUE(newSRC.valid()); | 
|  | 250 | EXPECT_EQ(newSRC.isPowerFaultEvent(), src.isPowerFaultEvent()); | 
|  | 251 | EXPECT_EQ(newSRC.asciiString(), src.asciiString()); | 
|  | 252 | EXPECT_FALSE(newSRC.callouts()); | 
|  | 253 | } | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 254 |  | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 255 | // Test when the CCIN string isn't a 4 character number | 
|  | 256 | TEST_F(SRCTest, BadCCINTest) | 
|  | 257 | { | 
|  | 258 | message::Entry entry; | 
|  | 259 | entry.src.type = 0xBD; | 
|  | 260 | entry.src.reasonCode = 0xABCD; | 
|  | 261 | entry.subsystem = 0x42; | 
|  | 262 | entry.src.powerFault = false; | 
|  | 263 |  | 
|  | 264 | std::vector<std::string> adData{}; | 
|  | 265 | AdditionalData ad{adData}; | 
|  | 266 | NiceMock<MockDataInterface> dataIface; | 
|  | 267 |  | 
|  | 268 | // First it isn't a number, then it is too long, | 
|  | 269 | // then it is empty. | 
|  | 270 | EXPECT_CALL(dataIface, getMotherboardCCIN) | 
|  | 271 | .WillOnce(Return("X")) | 
|  | 272 | .WillOnce(Return("12345")) | 
|  | 273 | .WillOnce(Return("")); | 
|  | 274 |  | 
|  | 275 | // The CCIN in the first half should still be 0 each time. | 
|  | 276 | { | 
|  | 277 | SRC src{entry, ad, dataIface}; | 
|  | 278 | EXPECT_TRUE(src.valid()); | 
|  | 279 | const auto& hexwords = src.hexwordData(); | 
|  | 280 | EXPECT_EQ(hexwords[3 - 2] & 0xFFFF0000, 0x00000000); | 
|  | 281 | } | 
|  | 282 |  | 
|  | 283 | { | 
|  | 284 | SRC src{entry, ad, dataIface}; | 
|  | 285 | EXPECT_TRUE(src.valid()); | 
|  | 286 | const auto& hexwords = src.hexwordData(); | 
|  | 287 | EXPECT_EQ(hexwords[3 - 2] & 0xFFFF0000, 0x00000000); | 
|  | 288 | } | 
|  | 289 |  | 
|  | 290 | { | 
|  | 291 | SRC src{entry, ad, dataIface}; | 
|  | 292 | EXPECT_TRUE(src.valid()); | 
|  | 293 | const auto& hexwords = src.hexwordData(); | 
|  | 294 | EXPECT_EQ(hexwords[3 - 2] & 0xFFFF0000, 0x00000000); | 
|  | 295 | } | 
|  | 296 | } | 
|  | 297 |  | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 298 | // Test the getErrorDetails function | 
|  | 299 | TEST_F(SRCTest, MessageSubstitutionTest) | 
|  | 300 | { | 
|  | 301 | auto path = SRCTest::writeData(testRegistry); | 
|  | 302 | message::Registry registry{path}; | 
|  | 303 | auto entry = registry.lookup("0xABCD", message::LookupType::reasonCode); | 
|  | 304 |  | 
|  | 305 | std::vector<std::string> adData{"COMPID=0x1", "FREQUENCY=0x4", | 
|  | 306 | "DURATION=30", "ERRORCODE=0x01ABCDEF"}; | 
|  | 307 | AdditionalData ad{adData}; | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 308 | NiceMock<MockDataInterface> dataIface; | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 309 |  | 
| Matt Spinler | 075e5ba | 2020-02-21 15:46:00 -0600 | [diff] [blame] | 310 | SRC src{*entry, ad, dataIface}; | 
| Harisuddin Mohamed Isa | 6fd0c1e | 2020-02-06 14:25:57 +0800 | [diff] [blame] | 311 | EXPECT_TRUE(src.valid()); | 
|  | 312 |  | 
|  | 313 | auto errorDetails = src.getErrorDetails(registry, DetailLevel::message); | 
|  | 314 | ASSERT_TRUE(errorDetails); | 
|  | 315 | EXPECT_EQ( | 
|  | 316 | errorDetails.value(), | 
|  | 317 | "Comp 0x1 failed 0x4 times over 0x1E secs with ErrorCode 0x1ABCDEF"); | 
|  | 318 | } | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 319 |  | 
|  | 320 | // Test that an inventory path callout string is | 
|  | 321 | // converted into the appropriate FRU callout. | 
|  | 322 | TEST_F(SRCTest, InventoryCalloutTest) | 
|  | 323 | { | 
|  | 324 | message::Entry entry; | 
|  | 325 | entry.src.type = 0xBD; | 
|  | 326 | entry.src.reasonCode = 0xABCD; | 
|  | 327 | entry.subsystem = 0x42; | 
|  | 328 | entry.src.powerFault = false; | 
|  | 329 |  | 
|  | 330 | std::vector<std::string> adData{"CALLOUT_INVENTORY_PATH=motherboard"}; | 
|  | 331 | AdditionalData ad{adData}; | 
|  | 332 | NiceMock<MockDataInterface> dataIface; | 
|  | 333 |  | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 334 | EXPECT_CALL(dataIface, getLocationCode("motherboard")) | 
|  | 335 | .WillOnce(Return("UTMS-P1")); | 
|  | 336 |  | 
|  | 337 | EXPECT_CALL(dataIface, getHWCalloutFields("motherboard", _, _, _)) | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 338 | .Times(1) | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 339 | .WillOnce(DoAll(SetArgReferee<1>("1234567"), SetArgReferee<2>("CCCC"), | 
|  | 340 | SetArgReferee<3>("123456789ABC"))); | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 341 |  | 
|  | 342 | SRC src{entry, ad, dataIface}; | 
|  | 343 | EXPECT_TRUE(src.valid()); | 
|  | 344 |  | 
|  | 345 | ASSERT_TRUE(src.callouts()); | 
|  | 346 |  | 
|  | 347 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 348 |  | 
|  | 349 | auto& callout = src.callouts()->callouts().front(); | 
|  | 350 |  | 
|  | 351 | EXPECT_EQ(callout->locationCode(), "UTMS-P1"); | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 352 | EXPECT_EQ(callout->priority(), 'H'); | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 353 |  | 
|  | 354 | auto& fru = callout->fruIdentity(); | 
|  | 355 |  | 
|  | 356 | EXPECT_EQ(fru->getPN().value(), "1234567"); | 
|  | 357 | EXPECT_EQ(fru->getCCIN().value(), "CCCC"); | 
|  | 358 | EXPECT_EQ(fru->getSN().value(), "123456789ABC"); | 
|  | 359 |  | 
|  | 360 | // flatten and unflatten | 
|  | 361 | std::vector<uint8_t> data; | 
|  | 362 | Stream stream{data}; | 
|  | 363 | src.flatten(stream); | 
|  | 364 |  | 
|  | 365 | stream.offset(0); | 
|  | 366 | SRC newSRC{stream}; | 
|  | 367 | EXPECT_TRUE(newSRC.valid()); | 
|  | 368 | ASSERT_TRUE(src.callouts()); | 
|  | 369 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 370 | } | 
|  | 371 |  | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 372 | // Test that when the location code can't be obtained that | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 373 | // a procedure callout is used. | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 374 | TEST_F(SRCTest, InventoryCalloutNoLocCodeTest) | 
|  | 375 | { | 
|  | 376 | message::Entry entry; | 
|  | 377 | entry.src.type = 0xBD; | 
|  | 378 | entry.src.reasonCode = 0xABCD; | 
|  | 379 | entry.subsystem = 0x42; | 
|  | 380 | entry.src.powerFault = false; | 
|  | 381 |  | 
|  | 382 | std::vector<std::string> adData{"CALLOUT_INVENTORY_PATH=motherboard"}; | 
|  | 383 | AdditionalData ad{adData}; | 
|  | 384 | NiceMock<MockDataInterface> dataIface; | 
|  | 385 |  | 
|  | 386 | auto func = []() { | 
|  | 387 | throw sdbusplus::exception::SdBusError(5, "Error"); | 
|  | 388 | return std::string{}; | 
|  | 389 | }; | 
|  | 390 |  | 
|  | 391 | EXPECT_CALL(dataIface, getLocationCode("motherboard")) | 
|  | 392 | .Times(1) | 
|  | 393 | .WillOnce(InvokeWithoutArgs(func)); | 
|  | 394 |  | 
|  | 395 | EXPECT_CALL(dataIface, getHWCalloutFields(_, _, _, _)).Times(0); | 
|  | 396 |  | 
|  | 397 | SRC src{entry, ad, dataIface}; | 
|  | 398 | EXPECT_TRUE(src.valid()); | 
|  | 399 |  | 
|  | 400 | ASSERT_TRUE(src.callouts()); | 
|  | 401 |  | 
|  | 402 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 403 |  | 
|  | 404 | auto& callout = src.callouts()->callouts().front(); | 
|  | 405 | EXPECT_EQ(callout->locationCodeSize(), 0); | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 406 | EXPECT_EQ(callout->priority(), 'H'); | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 407 |  | 
|  | 408 | auto& fru = callout->fruIdentity(); | 
|  | 409 |  | 
|  | 410 | EXPECT_EQ(fru->getMaintProc().value(), "BMCSP01"); | 
|  | 411 | EXPECT_FALSE(fru->getPN()); | 
|  | 412 | EXPECT_FALSE(fru->getSN()); | 
|  | 413 | EXPECT_FALSE(fru->getCCIN()); | 
|  | 414 |  | 
|  | 415 | // flatten and unflatten | 
|  | 416 | std::vector<uint8_t> data; | 
|  | 417 | Stream stream{data}; | 
|  | 418 | src.flatten(stream); | 
|  | 419 |  | 
|  | 420 | stream.offset(0); | 
|  | 421 | SRC newSRC{stream}; | 
|  | 422 | EXPECT_TRUE(newSRC.valid()); | 
|  | 423 | ASSERT_TRUE(src.callouts()); | 
|  | 424 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 425 | } | 
|  | 426 |  | 
|  | 427 | // Test that when the VPD can't be obtained that | 
|  | 428 | // a callout is still created. | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 429 | TEST_F(SRCTest, InventoryCalloutNoVPDTest) | 
|  | 430 | { | 
|  | 431 | message::Entry entry; | 
|  | 432 | entry.src.type = 0xBD; | 
|  | 433 | entry.src.reasonCode = 0xABCD; | 
|  | 434 | entry.subsystem = 0x42; | 
|  | 435 | entry.src.powerFault = false; | 
|  | 436 |  | 
|  | 437 | std::vector<std::string> adData{"CALLOUT_INVENTORY_PATH=motherboard"}; | 
|  | 438 | AdditionalData ad{adData}; | 
|  | 439 | NiceMock<MockDataInterface> dataIface; | 
|  | 440 |  | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 441 | EXPECT_CALL(dataIface, getLocationCode("motherboard")) | 
|  | 442 | .Times(1) | 
|  | 443 | .WillOnce(Return("UTMS-P10")); | 
|  | 444 |  | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 445 | auto func = []() { throw sdbusplus::exception::SdBusError(5, "Error"); }; | 
|  | 446 |  | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 447 | EXPECT_CALL(dataIface, getHWCalloutFields("motherboard", _, _, _)) | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 448 | .Times(1) | 
|  | 449 | .WillOnce(InvokeWithoutArgs(func)); | 
|  | 450 |  | 
|  | 451 | SRC src{entry, ad, dataIface}; | 
|  | 452 | EXPECT_TRUE(src.valid()); | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 453 | ASSERT_TRUE(src.callouts()); | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 454 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 455 |  | 
|  | 456 | auto& callout = src.callouts()->callouts().front(); | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 457 | EXPECT_EQ(callout->locationCode(), "UTMS-P10"); | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 458 | EXPECT_EQ(callout->priority(), 'H'); | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 459 |  | 
|  | 460 | auto& fru = callout->fruIdentity(); | 
|  | 461 |  | 
| Matt Spinler | 9b90e2a | 2020-04-14 10:59:04 -0500 | [diff] [blame] | 462 | EXPECT_EQ(fru->getPN(), ""); | 
|  | 463 | EXPECT_EQ(fru->getCCIN(), ""); | 
|  | 464 | EXPECT_EQ(fru->getSN(), ""); | 
|  | 465 | EXPECT_FALSE(fru->getMaintProc()); | 
|  | 466 |  | 
| Matt Spinler | ed04685 | 2020-03-13 13:58:15 -0500 | [diff] [blame] | 467 | // flatten and unflatten | 
|  | 468 | std::vector<uint8_t> data; | 
|  | 469 | Stream stream{data}; | 
|  | 470 | src.flatten(stream); | 
|  | 471 |  | 
|  | 472 | stream.offset(0); | 
|  | 473 | SRC newSRC{stream}; | 
|  | 474 | EXPECT_TRUE(newSRC.valid()); | 
|  | 475 | ASSERT_TRUE(src.callouts()); | 
|  | 476 | EXPECT_EQ(src.callouts()->callouts().size(), 1); | 
|  | 477 | } | 
| Matt Spinler | 0398458 | 2020-04-09 13:17:58 -0500 | [diff] [blame] | 478 |  | 
|  | 479 | TEST_F(SRCTest, RegistryCalloutTest) | 
|  | 480 | { | 
|  | 481 | message::Entry entry; | 
|  | 482 | entry.src.type = 0xBD; | 
|  | 483 | entry.src.reasonCode = 0xABCD; | 
|  | 484 | entry.subsystem = 0x42; | 
|  | 485 | entry.src.powerFault = false; | 
|  | 486 |  | 
|  | 487 | entry.callouts = R"( | 
|  | 488 | [ | 
|  | 489 | { | 
|  | 490 | "System": "systemA", | 
|  | 491 | "CalloutList": | 
|  | 492 | [ | 
|  | 493 | { | 
|  | 494 | "Priority": "high", | 
|  | 495 | "SymbolicFRU": "service_docs" | 
|  | 496 | }, | 
|  | 497 | { | 
|  | 498 | "Priority": "medium", | 
|  | 499 | "Procedure": "no_vpd_for_fru" | 
|  | 500 | } | 
|  | 501 | ] | 
|  | 502 | }, | 
|  | 503 | { | 
|  | 504 | "System": "systemB", | 
|  | 505 | "CalloutList": | 
|  | 506 | [ | 
|  | 507 | { | 
|  | 508 | "Priority": "high", | 
|  | 509 | "LocCode": "P0-C8", | 
|  | 510 | "SymbolicFRUTrusted": "service_docs" | 
|  | 511 | }, | 
|  | 512 | { | 
|  | 513 | "Priority": "medium", | 
|  | 514 | "SymbolicFRUTrusted": "service_docs" | 
|  | 515 | } | 
|  | 516 | ] | 
| Matt Spinler | af191c7 | 2020-06-04 11:35:13 -0500 | [diff] [blame] | 517 | }, | 
|  | 518 | { | 
|  | 519 | "System": "systemC", | 
|  | 520 | "CalloutList": | 
|  | 521 | [ | 
|  | 522 | { | 
|  | 523 | "Priority": "high", | 
|  | 524 | "LocCode": "P0-C8" | 
|  | 525 | }, | 
|  | 526 | { | 
|  | 527 | "Priority": "medium", | 
|  | 528 | "LocCode": "P0-C9" | 
|  | 529 | } | 
|  | 530 | ] | 
| Matt Spinler | 0398458 | 2020-04-09 13:17:58 -0500 | [diff] [blame] | 531 | } | 
|  | 532 | ])"_json; | 
|  | 533 |  | 
|  | 534 | { | 
|  | 535 | // Call out a symbolic FRU and a procedure | 
|  | 536 | AdditionalData ad; | 
|  | 537 | NiceMock<MockDataInterface> dataIface; | 
| Matt Spinler | 6ea4d5f | 2020-05-20 13:31:07 -0500 | [diff] [blame] | 538 | std::vector<std::string> names{"systemA"}; | 
|  | 539 |  | 
|  | 540 | EXPECT_CALL(dataIface, getSystemNames).WillOnce(ReturnRef(names)); | 
| Matt Spinler | 0398458 | 2020-04-09 13:17:58 -0500 | [diff] [blame] | 541 |  | 
|  | 542 | SRC src{entry, ad, dataIface}; | 
|  | 543 |  | 
|  | 544 | auto& callouts = src.callouts()->callouts(); | 
|  | 545 | ASSERT_EQ(callouts.size(), 2); | 
|  | 546 |  | 
|  | 547 | EXPECT_EQ(callouts[0]->locationCodeSize(), 0); | 
|  | 548 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 549 |  | 
|  | 550 | EXPECT_EQ(callouts[1]->locationCodeSize(), 0); | 
|  | 551 | EXPECT_EQ(callouts[1]->priority(), 'M'); | 
|  | 552 |  | 
|  | 553 | auto& fru1 = callouts[0]->fruIdentity(); | 
|  | 554 | EXPECT_EQ(fru1->getPN().value(), "SVCDOCS"); | 
|  | 555 | EXPECT_EQ(fru1->failingComponentType(), src::FRUIdentity::symbolicFRU); | 
|  | 556 | EXPECT_FALSE(fru1->getMaintProc()); | 
|  | 557 | EXPECT_FALSE(fru1->getSN()); | 
|  | 558 | EXPECT_FALSE(fru1->getCCIN()); | 
|  | 559 |  | 
|  | 560 | auto& fru2 = callouts[1]->fruIdentity(); | 
|  | 561 | EXPECT_EQ(fru2->getMaintProc().value(), "BMCSP01"); | 
|  | 562 | EXPECT_EQ(fru2->failingComponentType(), | 
|  | 563 | src::FRUIdentity::maintenanceProc); | 
|  | 564 | EXPECT_FALSE(fru2->getPN()); | 
|  | 565 | EXPECT_FALSE(fru2->getSN()); | 
|  | 566 | EXPECT_FALSE(fru2->getCCIN()); | 
|  | 567 | } | 
|  | 568 |  | 
|  | 569 | { | 
|  | 570 | // Call out a trusted symbolic FRU with a location code, and | 
|  | 571 | // another one without. | 
|  | 572 | AdditionalData ad; | 
|  | 573 | NiceMock<MockDataInterface> dataIface; | 
| Matt Spinler | 6ea4d5f | 2020-05-20 13:31:07 -0500 | [diff] [blame] | 574 | std::vector<std::string> names{"systemB"}; | 
|  | 575 |  | 
| Matt Spinler | af191c7 | 2020-06-04 11:35:13 -0500 | [diff] [blame] | 576 | EXPECT_CALL(dataIface, expandLocationCode).WillOnce(Return("P0-C8")); | 
| Matt Spinler | 6ea4d5f | 2020-05-20 13:31:07 -0500 | [diff] [blame] | 577 | EXPECT_CALL(dataIface, getSystemNames).WillOnce(ReturnRef(names)); | 
| Matt Spinler | 0398458 | 2020-04-09 13:17:58 -0500 | [diff] [blame] | 578 |  | 
|  | 579 | SRC src{entry, ad, dataIface}; | 
|  | 580 |  | 
|  | 581 | auto& callouts = src.callouts()->callouts(); | 
|  | 582 | EXPECT_EQ(callouts.size(), 2); | 
|  | 583 |  | 
|  | 584 | EXPECT_EQ(callouts[0]->locationCode(), "P0-C8"); | 
|  | 585 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 586 |  | 
|  | 587 | EXPECT_EQ(callouts[1]->locationCodeSize(), 0); | 
|  | 588 | EXPECT_EQ(callouts[1]->priority(), 'M'); | 
|  | 589 |  | 
|  | 590 | auto& fru1 = callouts[0]->fruIdentity(); | 
|  | 591 | EXPECT_EQ(fru1->getPN().value(), "SVCDOCS"); | 
|  | 592 | EXPECT_EQ(fru1->failingComponentType(), | 
|  | 593 | src::FRUIdentity::symbolicFRUTrustedLocCode); | 
|  | 594 | EXPECT_FALSE(fru1->getMaintProc()); | 
|  | 595 | EXPECT_FALSE(fru1->getSN()); | 
|  | 596 | EXPECT_FALSE(fru1->getCCIN()); | 
|  | 597 |  | 
|  | 598 | // It asked for a trusted symbolic FRU, but no location code | 
|  | 599 | // was provided so it is switched back to a normal one | 
|  | 600 | auto& fru2 = callouts[1]->fruIdentity(); | 
|  | 601 | EXPECT_EQ(fru2->getPN().value(), "SVCDOCS"); | 
|  | 602 | EXPECT_EQ(fru2->failingComponentType(), src::FRUIdentity::symbolicFRU); | 
|  | 603 | EXPECT_FALSE(fru2->getMaintProc()); | 
|  | 604 | EXPECT_FALSE(fru2->getSN()); | 
|  | 605 | EXPECT_FALSE(fru2->getCCIN()); | 
|  | 606 | } | 
| Matt Spinler | af191c7 | 2020-06-04 11:35:13 -0500 | [diff] [blame] | 607 |  | 
|  | 608 | { | 
|  | 609 | // Two hardware callouts | 
|  | 610 | AdditionalData ad; | 
|  | 611 | NiceMock<MockDataInterface> dataIface; | 
|  | 612 | std::vector<std::string> names{"systemC"}; | 
|  | 613 |  | 
|  | 614 | EXPECT_CALL(dataIface, getSystemNames).WillOnce(ReturnRef(names)); | 
|  | 615 |  | 
|  | 616 | EXPECT_CALL(dataIface, expandLocationCode("P0-C8", 0)) | 
|  | 617 | .WillOnce(Return("UXXX-P0-C8")); | 
|  | 618 |  | 
|  | 619 | EXPECT_CALL(dataIface, expandLocationCode("P0-C9", 0)) | 
|  | 620 | .WillOnce(Return("UXXX-P0-C9")); | 
|  | 621 |  | 
| Matt Spinler | 2f9225a | 2020-08-05 12:58:49 -0500 | [diff] [blame] | 622 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P0-C8", 0, false)) | 
| Matt Spinler | af191c7 | 2020-06-04 11:35:13 -0500 | [diff] [blame] | 623 | .WillOnce(Return( | 
|  | 624 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu0")); | 
|  | 625 |  | 
| Matt Spinler | 2f9225a | 2020-08-05 12:58:49 -0500 | [diff] [blame] | 626 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P0-C9", 0, false)) | 
| Matt Spinler | af191c7 | 2020-06-04 11:35:13 -0500 | [diff] [blame] | 627 | .WillOnce(Return( | 
|  | 628 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu1")); | 
|  | 629 |  | 
|  | 630 | EXPECT_CALL( | 
|  | 631 | dataIface, | 
|  | 632 | getHWCalloutFields( | 
|  | 633 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu0", _, _, | 
|  | 634 | _)) | 
|  | 635 | .Times(1) | 
|  | 636 | .WillOnce(DoAll(SetArgReferee<1>("1234567"), | 
|  | 637 | SetArgReferee<2>("CCCC"), | 
|  | 638 | SetArgReferee<3>("123456789ABC"))); | 
|  | 639 |  | 
|  | 640 | EXPECT_CALL( | 
|  | 641 | dataIface, | 
|  | 642 | getHWCalloutFields( | 
|  | 643 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu1", _, _, | 
|  | 644 | _)) | 
|  | 645 | .Times(1) | 
|  | 646 | .WillOnce(DoAll(SetArgReferee<1>("2345678"), | 
|  | 647 | SetArgReferee<2>("DDDD"), | 
|  | 648 | SetArgReferee<3>("23456789ABCD"))); | 
|  | 649 |  | 
|  | 650 | SRC src{entry, ad, dataIface}; | 
|  | 651 |  | 
|  | 652 | auto& callouts = src.callouts()->callouts(); | 
|  | 653 | EXPECT_EQ(callouts.size(), 2); | 
|  | 654 |  | 
|  | 655 | EXPECT_EQ(callouts[0]->locationCode(), "UXXX-P0-C8"); | 
|  | 656 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 657 |  | 
|  | 658 | auto& fru1 = callouts[0]->fruIdentity(); | 
|  | 659 | EXPECT_EQ(fru1->getPN().value(), "1234567"); | 
|  | 660 | EXPECT_EQ(fru1->getCCIN().value(), "CCCC"); | 
|  | 661 | EXPECT_EQ(fru1->getSN().value(), "123456789ABC"); | 
|  | 662 |  | 
|  | 663 | EXPECT_EQ(callouts[1]->locationCode(), "UXXX-P0-C9"); | 
|  | 664 | EXPECT_EQ(callouts[1]->priority(), 'M'); | 
|  | 665 |  | 
|  | 666 | auto& fru2 = callouts[1]->fruIdentity(); | 
|  | 667 | EXPECT_EQ(fru2->getPN().value(), "2345678"); | 
|  | 668 | EXPECT_EQ(fru2->getCCIN().value(), "DDDD"); | 
|  | 669 | EXPECT_EQ(fru2->getSN().value(), "23456789ABCD"); | 
|  | 670 | } | 
| Matt Spinler | 0398458 | 2020-04-09 13:17:58 -0500 | [diff] [blame] | 671 | } | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 672 |  | 
|  | 673 | // Test looking up device path fails in the callout jSON. | 
|  | 674 | TEST_F(SRCTest, DevicePathCalloutTest) | 
|  | 675 | { | 
|  | 676 | message::Entry entry; | 
|  | 677 | entry.src.type = 0xBD; | 
|  | 678 | entry.src.reasonCode = 0xABCD; | 
|  | 679 | entry.subsystem = 0x42; | 
|  | 680 | entry.src.powerFault = false; | 
|  | 681 |  | 
|  | 682 | const auto calloutJSON = R"( | 
|  | 683 | { | 
|  | 684 | "I2C": | 
|  | 685 | { | 
|  | 686 | "14": | 
|  | 687 | { | 
|  | 688 | "114": | 
|  | 689 | { | 
|  | 690 | "Callouts":[ | 
|  | 691 | { | 
|  | 692 | "Name": "/chassis/motherboard/cpu0", | 
|  | 693 | "LocationCode": "P1-C40", | 
|  | 694 | "Priority": "H" | 
|  | 695 | }, | 
|  | 696 | { | 
|  | 697 | "Name": "/chassis/motherboard", | 
|  | 698 | "LocationCode": "P1", | 
|  | 699 | "Priority": "M" | 
|  | 700 | }, | 
|  | 701 | { | 
|  | 702 | "Name": "/chassis/motherboard/bmc", | 
|  | 703 | "LocationCode": "P1-C15", | 
|  | 704 | "Priority": "L" | 
|  | 705 | } | 
|  | 706 | ], | 
|  | 707 | "Dest": "proc 0 target" | 
|  | 708 | } | 
|  | 709 | } | 
|  | 710 | } | 
|  | 711 | })"; | 
|  | 712 |  | 
|  | 713 | auto dataPath = getPELReadOnlyDataPath(); | 
|  | 714 | std::ofstream file{dataPath / "systemA_dev_callouts.json"}; | 
|  | 715 | file << calloutJSON; | 
|  | 716 | file.close(); | 
|  | 717 |  | 
|  | 718 | NiceMock<MockDataInterface> dataIface; | 
|  | 719 | std::vector<std::string> names{"systemA"}; | 
|  | 720 |  | 
|  | 721 | EXPECT_CALL(dataIface, getSystemNames) | 
|  | 722 | .Times(5) | 
|  | 723 | .WillRepeatedly(ReturnRef(names)); | 
|  | 724 |  | 
| Matt Spinler | 2f9225a | 2020-08-05 12:58:49 -0500 | [diff] [blame] | 725 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P1-C40", 0, false)) | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 726 | .Times(3) | 
|  | 727 | .WillRepeatedly( | 
|  | 728 | Return("/xyz/openbmc_project/inventory/chassis/motherboard/cpu0")); | 
|  | 729 |  | 
| Matt Spinler | 2f9225a | 2020-08-05 12:58:49 -0500 | [diff] [blame] | 730 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P1", 0, false)) | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 731 | .Times(3) | 
|  | 732 | .WillRepeatedly( | 
|  | 733 | Return("/xyz/openbmc_project/inventory/chassis/motherboard")); | 
|  | 734 |  | 
| Matt Spinler | 2f9225a | 2020-08-05 12:58:49 -0500 | [diff] [blame] | 735 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P1-C15", 0, false)) | 
| Matt Spinler | 717de42 | 2020-06-04 13:10:14 -0500 | [diff] [blame] | 736 | .Times(3) | 
|  | 737 | .WillRepeatedly( | 
|  | 738 | Return("/xyz/openbmc_project/inventory/chassis/motherboard/bmc")); | 
|  | 739 |  | 
|  | 740 | EXPECT_CALL(dataIface, | 
|  | 741 | getLocationCode( | 
|  | 742 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu0")) | 
|  | 743 | .Times(3) | 
|  | 744 | .WillRepeatedly(Return("Ufcs-P1-C40")); | 
|  | 745 | EXPECT_CALL( | 
|  | 746 | dataIface, | 
|  | 747 | getLocationCode("/xyz/openbmc_project/inventory/chassis/motherboard")) | 
|  | 748 | .Times(3) | 
|  | 749 | .WillRepeatedly(Return("Ufcs-P1")); | 
|  | 750 | EXPECT_CALL(dataIface, | 
|  | 751 | getLocationCode( | 
|  | 752 | "/xyz/openbmc_project/inventory/chassis/motherboard/bmc")) | 
|  | 753 | .Times(3) | 
|  | 754 | .WillRepeatedly(Return("Ufcs-P1-C15")); | 
|  | 755 |  | 
|  | 756 | EXPECT_CALL( | 
|  | 757 | dataIface, | 
|  | 758 | getHWCalloutFields( | 
|  | 759 | "/xyz/openbmc_project/inventory/chassis/motherboard/cpu0", _, _, _)) | 
|  | 760 | .Times(3) | 
|  | 761 | .WillRepeatedly(DoAll(SetArgReferee<1>("1234567"), | 
|  | 762 | SetArgReferee<2>("CCCC"), | 
|  | 763 | SetArgReferee<3>("123456789ABC"))); | 
|  | 764 | EXPECT_CALL( | 
|  | 765 | dataIface, | 
|  | 766 | getHWCalloutFields("/xyz/openbmc_project/inventory/chassis/motherboard", | 
|  | 767 | _, _, _)) | 
|  | 768 | .Times(3) | 
|  | 769 | .WillRepeatedly(DoAll(SetArgReferee<1>("7654321"), | 
|  | 770 | SetArgReferee<2>("MMMM"), | 
|  | 771 | SetArgReferee<3>("CBA987654321"))); | 
|  | 772 | EXPECT_CALL( | 
|  | 773 | dataIface, | 
|  | 774 | getHWCalloutFields( | 
|  | 775 | "/xyz/openbmc_project/inventory/chassis/motherboard/bmc", _, _, _)) | 
|  | 776 | .Times(3) | 
|  | 777 | .WillRepeatedly(DoAll(SetArgReferee<1>("7123456"), | 
|  | 778 | SetArgReferee<2>("BBBB"), | 
|  | 779 | SetArgReferee<3>("C123456789AB"))); | 
|  | 780 |  | 
|  | 781 | // Call this below with different AdditionalData values that | 
|  | 782 | // result in the same callouts. | 
|  | 783 | auto checkCallouts = [&entry, &dataIface](const auto& items) { | 
|  | 784 | AdditionalData ad{items}; | 
|  | 785 | SRC src{entry, ad, dataIface}; | 
|  | 786 |  | 
|  | 787 | ASSERT_TRUE(src.callouts()); | 
|  | 788 | auto& callouts = src.callouts()->callouts(); | 
|  | 789 |  | 
|  | 790 | ASSERT_EQ(callouts.size(), 3); | 
|  | 791 |  | 
|  | 792 | { | 
|  | 793 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 794 | EXPECT_EQ(callouts[0]->locationCode(), "Ufcs-P1-C40"); | 
|  | 795 |  | 
|  | 796 | auto& fru = callouts[0]->fruIdentity(); | 
|  | 797 | EXPECT_EQ(fru->getPN().value(), "1234567"); | 
|  | 798 | EXPECT_EQ(fru->getCCIN().value(), "CCCC"); | 
|  | 799 | EXPECT_EQ(fru->getSN().value(), "123456789ABC"); | 
|  | 800 | } | 
|  | 801 | { | 
|  | 802 | EXPECT_EQ(callouts[1]->priority(), 'M'); | 
|  | 803 | EXPECT_EQ(callouts[1]->locationCode(), "Ufcs-P1"); | 
|  | 804 |  | 
|  | 805 | auto& fru = callouts[1]->fruIdentity(); | 
|  | 806 | EXPECT_EQ(fru->getPN().value(), "7654321"); | 
|  | 807 | EXPECT_EQ(fru->getCCIN().value(), "MMMM"); | 
|  | 808 | EXPECT_EQ(fru->getSN().value(), "CBA987654321"); | 
|  | 809 | } | 
|  | 810 | { | 
|  | 811 | EXPECT_EQ(callouts[2]->priority(), 'L'); | 
|  | 812 | EXPECT_EQ(callouts[2]->locationCode(), "Ufcs-P1-C15"); | 
|  | 813 |  | 
|  | 814 | auto& fru = callouts[2]->fruIdentity(); | 
|  | 815 | EXPECT_EQ(fru->getPN().value(), "7123456"); | 
|  | 816 | EXPECT_EQ(fru->getCCIN().value(), "BBBB"); | 
|  | 817 | EXPECT_EQ(fru->getSN().value(), "C123456789AB"); | 
|  | 818 | } | 
|  | 819 | }; | 
|  | 820 |  | 
|  | 821 | { | 
|  | 822 | // Callouts based on the device path | 
|  | 823 | std::vector<std::string> items{ | 
|  | 824 | "CALLOUT_ERRNO=5", | 
|  | 825 | "CALLOUT_DEVICE_PATH=/sys/devices/platform/ahb/ahb:apb/" | 
|  | 826 | "ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-14/14-0072"}; | 
|  | 827 |  | 
|  | 828 | checkCallouts(items); | 
|  | 829 | } | 
|  | 830 |  | 
|  | 831 | { | 
|  | 832 | // Callouts based on the I2C bus and address | 
|  | 833 | std::vector<std::string> items{"CALLOUT_ERRNO=5", "CALLOUT_IIC_BUS=14", | 
|  | 834 | "CALLOUT_IIC_ADDR=0x72"}; | 
|  | 835 | checkCallouts(items); | 
|  | 836 | } | 
|  | 837 |  | 
|  | 838 | { | 
|  | 839 | // Also based on I2C bus and address, but with bus = /dev/i2c-14 | 
|  | 840 | std::vector<std::string> items{"CALLOUT_ERRNO=5", "CALLOUT_IIC_BUS=14", | 
|  | 841 | "CALLOUT_IIC_ADDR=0x72"}; | 
|  | 842 | checkCallouts(items); | 
|  | 843 | } | 
|  | 844 |  | 
|  | 845 | { | 
|  | 846 | // Callout not found | 
|  | 847 | std::vector<std::string> items{ | 
|  | 848 | "CALLOUT_ERRNO=5", | 
|  | 849 | "CALLOUT_DEVICE_PATH=/sys/devices/platform/ahb/ahb:apb/" | 
|  | 850 | "ahb:apb:bus@1e78a000/1e78a340.i2c-bus/i2c-24/24-0012"}; | 
|  | 851 |  | 
|  | 852 | AdditionalData ad{items}; | 
|  | 853 | SRC src{entry, ad, dataIface}; | 
|  | 854 |  | 
|  | 855 | EXPECT_FALSE(src.callouts()); | 
|  | 856 | ASSERT_EQ(src.getDebugData().size(), 1); | 
|  | 857 | EXPECT_EQ(src.getDebugData()[0], | 
|  | 858 | "Problem looking up I2C callouts on 24 18: " | 
|  | 859 | "[json.exception.out_of_range.403] key '24' not found"); | 
|  | 860 | } | 
|  | 861 |  | 
|  | 862 | { | 
|  | 863 | // Callout not found | 
|  | 864 | std::vector<std::string> items{"CALLOUT_ERRNO=5", "CALLOUT_IIC_BUS=22", | 
|  | 865 | "CALLOUT_IIC_ADDR=0x99"}; | 
|  | 866 | AdditionalData ad{items}; | 
|  | 867 | SRC src{entry, ad, dataIface}; | 
|  | 868 |  | 
|  | 869 | EXPECT_FALSE(src.callouts()); | 
|  | 870 | ASSERT_EQ(src.getDebugData().size(), 1); | 
|  | 871 | EXPECT_EQ(src.getDebugData()[0], | 
|  | 872 | "Problem looking up I2C callouts on 22 153: " | 
|  | 873 | "[json.exception.out_of_range.403] key '22' not found"); | 
|  | 874 | } | 
|  | 875 |  | 
|  | 876 | fs::remove_all(dataPath); | 
|  | 877 | } | 
| Matt Spinler | 3bdd011 | 2020-08-27 10:24:34 -0500 | [diff] [blame] | 878 |  | 
|  | 879 | // Test when callouts are passed in via JSON | 
|  | 880 | TEST_F(SRCTest, JsonCalloutsTest) | 
|  | 881 | { | 
|  | 882 | const auto jsonCallouts = R"( | 
|  | 883 | [ | 
|  | 884 | { | 
|  | 885 | "LocationCode": "P0-C1", | 
|  | 886 | "Priority": "H", | 
|  | 887 | "MRUs": [ | 
|  | 888 | { | 
|  | 889 | "ID": 42, | 
|  | 890 | "Priority": "H" | 
|  | 891 | }, | 
|  | 892 | { | 
|  | 893 | "ID": 43, | 
|  | 894 | "Priority": "M" | 
|  | 895 | } | 
|  | 896 | ] | 
|  | 897 | }, | 
|  | 898 | { | 
|  | 899 | "InventoryPath": "/inv/system/chassis/motherboard/cpu0", | 
|  | 900 | "Priority": "M", | 
|  | 901 | "Guarded": true, | 
|  | 902 | "Deconfigured": true | 
|  | 903 | }, | 
|  | 904 | { | 
|  | 905 | "Procedure": "PROCEDU", | 
|  | 906 | "Priority": "A" | 
|  | 907 | }, | 
|  | 908 | { | 
|  | 909 | "SymbolicFRU": "TRUSTED", | 
|  | 910 | "Priority": "B", | 
|  | 911 | "TrustedLocationCode": true, | 
|  | 912 | "LocationCode": "P1-C23" | 
|  | 913 | }, | 
|  | 914 | { | 
|  | 915 | "SymbolicFRU": "FRUTST1", | 
|  | 916 | "Priority": "C", | 
|  | 917 | "LocationCode": "P1-C24" | 
|  | 918 | }, | 
|  | 919 | { | 
|  | 920 | "SymbolicFRU": "FRUTST2LONG", | 
|  | 921 | "Priority": "L" | 
|  | 922 | } | 
|  | 923 | ] | 
|  | 924 | )"_json; | 
|  | 925 |  | 
|  | 926 | message::Entry entry; | 
|  | 927 | entry.src.type = 0xBD; | 
|  | 928 | entry.src.reasonCode = 0xABCD; | 
|  | 929 | entry.subsystem = 0x42; | 
|  | 930 | entry.src.powerFault = false; | 
|  | 931 |  | 
|  | 932 | AdditionalData ad; | 
|  | 933 | NiceMock<MockDataInterface> dataIface; | 
|  | 934 |  | 
|  | 935 | // Callout 0 mock calls | 
|  | 936 | { | 
|  | 937 | EXPECT_CALL(dataIface, expandLocationCode("P0-C1", 0)) | 
|  | 938 | .Times(1) | 
|  | 939 | .WillOnce(Return("UXXX-P0-C1")); | 
|  | 940 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P0-C1", 0, false)) | 
|  | 941 | .Times(1) | 
|  | 942 | .WillOnce(Return("/inv/system/chassis/motherboard/bmc")); | 
|  | 943 | EXPECT_CALL( | 
|  | 944 | dataIface, | 
|  | 945 | getHWCalloutFields("/inv/system/chassis/motherboard/bmc", _, _, _)) | 
|  | 946 | .Times(1) | 
|  | 947 | .WillOnce(DoAll(SetArgReferee<1>("1234567"), | 
|  | 948 | SetArgReferee<2>("CCCC"), | 
|  | 949 | SetArgReferee<3>("123456789ABC"))); | 
|  | 950 | } | 
|  | 951 | // Callout 1 mock calls | 
|  | 952 | { | 
|  | 953 | EXPECT_CALL(dataIface, | 
|  | 954 | getLocationCode("/inv/system/chassis/motherboard/cpu0")) | 
|  | 955 | .WillOnce(Return("UYYY-P5")); | 
|  | 956 | EXPECT_CALL( | 
|  | 957 | dataIface, | 
|  | 958 | getHWCalloutFields("/inv/system/chassis/motherboard/cpu0", _, _, _)) | 
|  | 959 | .Times(1) | 
|  | 960 | .WillOnce(DoAll(SetArgReferee<1>("2345678"), | 
|  | 961 | SetArgReferee<2>("DDDD"), | 
|  | 962 | SetArgReferee<3>("23456789ABCD"))); | 
|  | 963 | } | 
|  | 964 | // Callout 3 mock calls | 
|  | 965 | { | 
|  | 966 | EXPECT_CALL(dataIface, expandLocationCode("P1-C23", 0)) | 
|  | 967 | .Times(1) | 
|  | 968 | .WillOnce(Return("UXXX-P1-C23")); | 
|  | 969 | } | 
|  | 970 | // Callout 4 mock calls | 
|  | 971 | { | 
|  | 972 | EXPECT_CALL(dataIface, expandLocationCode("P1-C24", 0)) | 
|  | 973 | .Times(1) | 
|  | 974 | .WillOnce(Return("UXXX-P1-C24")); | 
|  | 975 | } | 
|  | 976 |  | 
|  | 977 | SRC src{entry, ad, jsonCallouts, dataIface}; | 
|  | 978 | ASSERT_TRUE(src.callouts()); | 
|  | 979 |  | 
| Matt Spinler | afa2c79 | 2020-08-27 11:01:39 -0500 | [diff] [blame] | 980 | // Check the guarded and deconfigured flags | 
|  | 981 | EXPECT_TRUE(src.hexwordData()[3] & 0x03000000); | 
|  | 982 |  | 
| Matt Spinler | 3bdd011 | 2020-08-27 10:24:34 -0500 | [diff] [blame] | 983 | const auto& callouts = src.callouts()->callouts(); | 
|  | 984 | ASSERT_EQ(callouts.size(), 6); | 
|  | 985 |  | 
|  | 986 | // Check callout 0 | 
|  | 987 | { | 
|  | 988 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 989 | EXPECT_EQ(callouts[0]->locationCode(), "UXXX-P0-C1"); | 
|  | 990 |  | 
|  | 991 | auto& fru = callouts[0]->fruIdentity(); | 
|  | 992 | EXPECT_EQ(fru->getPN().value(), "1234567"); | 
|  | 993 | EXPECT_EQ(fru->getCCIN().value(), "CCCC"); | 
|  | 994 | EXPECT_EQ(fru->getSN().value(), "123456789ABC"); | 
|  | 995 | EXPECT_EQ(fru->failingComponentType(), src::FRUIdentity::hardwareFRU); | 
| Matt Spinler | b8cb60f | 2020-08-27 10:55:55 -0500 | [diff] [blame] | 996 |  | 
|  | 997 | auto& mruCallouts = callouts[0]->mru(); | 
|  | 998 | ASSERT_TRUE(mruCallouts); | 
|  | 999 | auto& mrus = mruCallouts->mrus(); | 
|  | 1000 | ASSERT_EQ(mrus.size(), 2); | 
|  | 1001 | EXPECT_EQ(mrus[0].id, 42); | 
|  | 1002 | EXPECT_EQ(mrus[0].priority, 'H'); | 
|  | 1003 | EXPECT_EQ(mrus[1].id, 43); | 
|  | 1004 | EXPECT_EQ(mrus[1].priority, 'M'); | 
| Matt Spinler | 3bdd011 | 2020-08-27 10:24:34 -0500 | [diff] [blame] | 1005 | } | 
|  | 1006 |  | 
|  | 1007 | // Check callout 1 | 
|  | 1008 | { | 
|  | 1009 | EXPECT_EQ(callouts[1]->priority(), 'M'); | 
|  | 1010 | EXPECT_EQ(callouts[1]->locationCode(), "UYYY-P5"); | 
|  | 1011 |  | 
|  | 1012 | auto& fru = callouts[1]->fruIdentity(); | 
|  | 1013 | EXPECT_EQ(fru->getPN().value(), "2345678"); | 
|  | 1014 | EXPECT_EQ(fru->getCCIN().value(), "DDDD"); | 
|  | 1015 | EXPECT_EQ(fru->getSN().value(), "23456789ABCD"); | 
|  | 1016 | EXPECT_EQ(fru->failingComponentType(), src::FRUIdentity::hardwareFRU); | 
|  | 1017 | } | 
|  | 1018 |  | 
|  | 1019 | // Check callout 2 | 
|  | 1020 | { | 
|  | 1021 | EXPECT_EQ(callouts[2]->priority(), 'A'); | 
|  | 1022 | EXPECT_EQ(callouts[2]->locationCode(), ""); | 
|  | 1023 |  | 
|  | 1024 | auto& fru = callouts[2]->fruIdentity(); | 
|  | 1025 | EXPECT_EQ(fru->getMaintProc().value(), "PROCEDU"); | 
|  | 1026 | EXPECT_EQ(fru->failingComponentType(), | 
|  | 1027 | src::FRUIdentity::maintenanceProc); | 
|  | 1028 | } | 
|  | 1029 |  | 
|  | 1030 | // Check callout 3 | 
|  | 1031 | { | 
|  | 1032 | EXPECT_EQ(callouts[3]->priority(), 'B'); | 
|  | 1033 | EXPECT_EQ(callouts[3]->locationCode(), "UXXX-P1-C23"); | 
|  | 1034 |  | 
|  | 1035 | auto& fru = callouts[3]->fruIdentity(); | 
|  | 1036 | EXPECT_EQ(fru->getPN().value(), "TRUSTED"); | 
|  | 1037 | EXPECT_EQ(fru->failingComponentType(), | 
|  | 1038 | src::FRUIdentity::symbolicFRUTrustedLocCode); | 
|  | 1039 | } | 
|  | 1040 |  | 
|  | 1041 | // Check callout 4 | 
|  | 1042 | { | 
|  | 1043 | EXPECT_EQ(callouts[4]->priority(), 'C'); | 
|  | 1044 | EXPECT_EQ(callouts[4]->locationCode(), "UXXX-P1-C24"); | 
|  | 1045 |  | 
|  | 1046 | auto& fru = callouts[4]->fruIdentity(); | 
|  | 1047 | EXPECT_EQ(fru->getPN().value(), "FRUTST1"); | 
|  | 1048 | EXPECT_EQ(fru->failingComponentType(), src::FRUIdentity::symbolicFRU); | 
|  | 1049 | } | 
|  | 1050 |  | 
|  | 1051 | // Check callout 5 | 
|  | 1052 | { | 
|  | 1053 | EXPECT_EQ(callouts[5]->priority(), 'L'); | 
|  | 1054 | EXPECT_EQ(callouts[5]->locationCode(), ""); | 
|  | 1055 |  | 
|  | 1056 | auto& fru = callouts[5]->fruIdentity(); | 
|  | 1057 | EXPECT_EQ(fru->getPN().value(), "FRUTST2"); | 
|  | 1058 | EXPECT_EQ(fru->failingComponentType(), src::FRUIdentity::symbolicFRU); | 
|  | 1059 | } | 
|  | 1060 |  | 
|  | 1061 | // Check that it didn't find any errors | 
|  | 1062 | const auto& data = src.getDebugData(); | 
|  | 1063 | EXPECT_TRUE(data.empty()); | 
|  | 1064 | } | 
|  | 1065 |  | 
|  | 1066 | TEST_F(SRCTest, JsonBadCalloutsTest) | 
|  | 1067 | { | 
|  | 1068 | // The first call will have a Throw in a mock call. | 
|  | 1069 | // The second will have a different Throw in a mock call. | 
|  | 1070 | // The others have issues with the Priority field. | 
|  | 1071 | const auto jsonCallouts = R"( | 
|  | 1072 | [ | 
|  | 1073 | { | 
|  | 1074 | "LocationCode": "P0-C1", | 
|  | 1075 | "Priority": "H" | 
|  | 1076 | }, | 
|  | 1077 | { | 
|  | 1078 | "LocationCode": "P0-C2", | 
|  | 1079 | "Priority": "H" | 
|  | 1080 | }, | 
|  | 1081 | { | 
|  | 1082 | "LocationCode": "P0-C3" | 
|  | 1083 | }, | 
|  | 1084 | { | 
|  | 1085 | "LocationCode": "P0-C4", | 
|  | 1086 | "Priority": "X" | 
|  | 1087 | } | 
|  | 1088 | ] | 
|  | 1089 | )"_json; | 
|  | 1090 |  | 
|  | 1091 | message::Entry entry; | 
|  | 1092 | entry.src.type = 0xBD; | 
|  | 1093 | entry.src.reasonCode = 0xABCD; | 
|  | 1094 | entry.subsystem = 0x42; | 
|  | 1095 | entry.src.powerFault = false; | 
|  | 1096 |  | 
|  | 1097 | AdditionalData ad; | 
|  | 1098 | NiceMock<MockDataInterface> dataIface; | 
|  | 1099 |  | 
|  | 1100 | // Callout 0 mock calls | 
|  | 1101 | // Expand location code will fail, so the unexpanded location | 
|  | 1102 | // code should show up in the callout instead. | 
|  | 1103 | { | 
|  | 1104 | EXPECT_CALL(dataIface, expandLocationCode("P0-C1", 0)) | 
|  | 1105 | .WillOnce(Throw(std::runtime_error("Fail"))); | 
|  | 1106 |  | 
|  | 1107 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P0-C1", 0, false)) | 
|  | 1108 | .Times(1) | 
|  | 1109 | .WillOnce(Return("/inv/system/chassis/motherboard/bmc")); | 
|  | 1110 | EXPECT_CALL( | 
|  | 1111 | dataIface, | 
|  | 1112 | getHWCalloutFields("/inv/system/chassis/motherboard/bmc", _, _, _)) | 
|  | 1113 | .Times(1) | 
|  | 1114 | .WillOnce(DoAll(SetArgReferee<1>("1234567"), | 
|  | 1115 | SetArgReferee<2>("CCCC"), | 
|  | 1116 | SetArgReferee<3>("123456789ABC"))); | 
|  | 1117 | } | 
|  | 1118 |  | 
|  | 1119 | // Callout 1 mock calls | 
|  | 1120 | // getInventoryFromLocCode will fail | 
|  | 1121 | { | 
|  | 1122 | EXPECT_CALL(dataIface, expandLocationCode("P0-C2", 0)) | 
|  | 1123 | .Times(1) | 
|  | 1124 | .WillOnce(Return("UXXX-P0-C2")); | 
|  | 1125 |  | 
|  | 1126 | EXPECT_CALL(dataIface, getInventoryFromLocCode("P0-C2", 0, false)) | 
|  | 1127 | .Times(1) | 
|  | 1128 | .WillOnce(Throw(std::runtime_error("Fail"))); | 
|  | 1129 | } | 
|  | 1130 |  | 
|  | 1131 | SRC src{entry, ad, jsonCallouts, dataIface}; | 
|  | 1132 |  | 
|  | 1133 | ASSERT_TRUE(src.callouts()); | 
|  | 1134 |  | 
|  | 1135 | const auto& callouts = src.callouts()->callouts(); | 
|  | 1136 |  | 
|  | 1137 | // Only the first callout was successful | 
|  | 1138 | ASSERT_EQ(callouts.size(), 1); | 
|  | 1139 |  | 
|  | 1140 | { | 
|  | 1141 | EXPECT_EQ(callouts[0]->priority(), 'H'); | 
|  | 1142 | EXPECT_EQ(callouts[0]->locationCode(), "P0-C1"); | 
|  | 1143 |  | 
|  | 1144 | auto& fru = callouts[0]->fruIdentity(); | 
|  | 1145 | EXPECT_EQ(fru->getPN().value(), "1234567"); | 
|  | 1146 | EXPECT_EQ(fru->getCCIN().value(), "CCCC"); | 
|  | 1147 | EXPECT_EQ(fru->getSN().value(), "123456789ABC"); | 
|  | 1148 | EXPECT_EQ(fru->failingComponentType(), src::FRUIdentity::hardwareFRU); | 
|  | 1149 | } | 
|  | 1150 |  | 
|  | 1151 | const auto& data = src.getDebugData(); | 
|  | 1152 | ASSERT_EQ(data.size(), 4); | 
|  | 1153 | EXPECT_STREQ(data[0].c_str(), "Unable to expand location code P0-C1: Fail"); | 
|  | 1154 | EXPECT_STREQ(data[1].c_str(), | 
|  | 1155 | "Failed extracting callout data from JSON: Unable to " | 
|  | 1156 | "get inventory path from location code: P0-C2: Fail"); | 
|  | 1157 | EXPECT_STREQ(data[2].c_str(), | 
|  | 1158 | "Failed extracting callout data from JSON: " | 
|  | 1159 | "[json.exception.out_of_range.403] key 'Priority' not found"); | 
|  | 1160 | EXPECT_STREQ(data[3].c_str(), | 
|  | 1161 | "Failed extracting callout data from JSON: Invalid " | 
|  | 1162 | "priority 'X' found in JSON callout"); | 
|  | 1163 | } |