xref: /openbmc/openbmc-test-automation/data/pel_variables.py (revision 7899a45173da6d8cc38d10a85c7d9c03fbd2e455)
1e7e9171eSGeorge Keishing#!/usr/bin/env python3
2a17a3395SRahul Maheshwari
3a17a3395SRahul Maheshwarir"""
4a17a3395SRahul MaheshwariContains PEL related constants.
5a17a3395SRahul Maheshwari"""
6a17a3395SRahul Maheshwari
7a17a3395SRahul MaheshwariPEL_DETAILS = {
820f38712SPatrick Williams    "CreatorID": "BMC",
920f38712SPatrick Williams    "CompID": "0x1000",
1020f38712SPatrick Williams    "Subsystem": "Platform Firmware",
1120f38712SPatrick Williams    "Message": "This is a test error",
1220f38712SPatrick Williams    "SRC": "BD8D1002",
1320f38712SPatrick Williams    "Sev": "Unrecoverable Error",
1420f38712SPatrick Williams}
15b8580dd1SRahul Maheshwari
1620f38712SPatrick WilliamsERROR_LOG_CREATE_BASE_CMD = (
1720f38712SPatrick Williams    "busctl call xyz.openbmc_project.Logging /xyz/openbmc_project/logging    "
1820f38712SPatrick Williams    " xyz.openbmc_project.Logging.Create Create ssa{ss} "
1920f38712SPatrick Williams)
20b8580dd1SRahul Maheshwari
2120f38712SPatrick WilliamsCMD_INTERNAL_FAILURE = (
2220f38712SPatrick Williams    ERROR_LOG_CREATE_BASE_CMD
2320f38712SPatrick Williams    + "xyz.openbmc_project.Common.Error.InternalFailure    "
2420f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Error 0"
2520f38712SPatrick Williams)
26b8580dd1SRahul Maheshwari
2720f38712SPatrick WilliamsCMD_FRU_CALLOUT = (
2820f38712SPatrick Williams    ERROR_LOG_CREATE_BASE_CMD
2920f38712SPatrick Williams    + "xyz.openbmc_project.Sensor.Device.Error.ReadFailure    "
3020f38712SPatrick Williams    ' xyz.openbmc_project.Logging.Entry.Level.Error 2 "TIMEOUT_IN_MSEC" "5"'
3120f38712SPatrick Williams    ' "CALLOUT_INVENTORY_PATH"    '
3220f38712SPatrick Williams    ' "/xyz/openbmc_project/inventory/system/chassis/motherboard"'
3320f38712SPatrick Williams)
34b8580dd1SRahul Maheshwari
3520f38712SPatrick WilliamsCMD_PROCEDURAL_SYMBOLIC_FRU_CALLOUT = (
36*7899a451SGeorge Keishing    ERROR_LOG_CREATE_BASE_CMD + "org.open_power.Logging.Error.TestError1    "
3720f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Error 0"
3820f38712SPatrick Williams)
39b8580dd1SRahul Maheshwari
4020f38712SPatrick WilliamsCMD_INFORMATIONAL_ERROR = (
4120f38712SPatrick Williams    ERROR_LOG_CREATE_BASE_CMD
4220f38712SPatrick Williams    + "xyz.openbmc_project.Common.Error.TestError2    "
4320f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Informational 0"
4420f38712SPatrick Williams)
45b8580dd1SRahul Maheshwari
4620f38712SPatrick WilliamsCMD_INVENTORY_PREFIX = (
4720f38712SPatrick Williams    "busctl get-property xyz.openbmc_project.Inventory.Manager    "
4820f38712SPatrick Williams    " /xyz/openbmc_project/inventory/system/chassis/motherboard"
4920f38712SPatrick Williams)
50b8580dd1SRahul Maheshwari
5120f38712SPatrick WilliamsCMD_UNRECOVERABLE_ERROR = (
52*7899a451SGeorge Keishing    ERROR_LOG_CREATE_BASE_CMD + "org.open_power.Logging.Error.TestError1    "
5320f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Error 0"
5420f38712SPatrick Williams)
55b8580dd1SRahul Maheshwari
5620f38712SPatrick WilliamsCMD_PREDICTIVE_ERROR = (
5720f38712SPatrick Williams    ERROR_LOG_CREATE_BASE_CMD
5820f38712SPatrick Williams    + "xyz.openbmc_project.Sensor.Threshold.Error.TemperatureWarningLow    "
5920f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Warning 0"
6020f38712SPatrick Williams)
61b8580dd1SRahul Maheshwari
6220f38712SPatrick WilliamsCMD_UNRECOVERABLE_HOST_ERROR = (
63*7899a451SGeorge Keishing    ERROR_LOG_CREATE_BASE_CMD + "xyz.openbmc_project.Host.Error.Event    "
6420f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Error 1 RAWPEL"
6520f38712SPatrick Williams    " /tmp/FILE_NBMC_UNRECOVERABLE"
6620f38712SPatrick Williams)
674baa6a77Smanashsarma
6820f38712SPatrick WilliamsCMD_INFORMATIONAL_HOST_ERROR = (
69*7899a451SGeorge Keishing    ERROR_LOG_CREATE_BASE_CMD + "xyz.openbmc_project.Host.Error.Event    "
7020f38712SPatrick Williams    " xyz.openbmc_project.Logging.Entry.Level.Error 1 RAWPEL"
7120f38712SPatrick Williams    " /tmp/FILE_HOST_INFORMATIONAL"
7220f38712SPatrick Williams)
73