blob: 2c9933e98d4b0771b057588bb8b39e9e76af143e [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
Michael Walshefa3a3b2019-11-08 14:30:29 -06002from robot.libraries.BuiltIn import BuiltIn
George Keishingfbeaecc2016-08-16 05:24:31 -05003
George Keishinge635ddc2022-12-08 07:38:02 -06004OPENBMC_BASE_URI = '/xyz/openbmc_project/'
5OPENBMC_BASE_DBUS = 'xyz.openbmc_project.'
George Keishingcf910442016-12-08 03:12:59 -06006
Sridevi Rameshef351732022-09-19 01:49:26 -05007# Generic Dbus commands.
8OPENBMC_DBUS_GET_PROPERTY = "busctl get-property "
9OPENBMC_DBUS_SET_PROPERTY = "busctl set-property "
10
George Keishingcae6e902017-09-07 13:35:59 -050011# org open power base URI.
George Keishinge635ddc2022-12-08 07:38:02 -060012OPENPOWER_BASE_URI = '/org/open_power/'
13OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/'
14OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/'
George Keishingcae6e902017-09-07 13:35:59 -050015
16# REST URI base endpoint paths.
George Keishinge635ddc2022-12-08 07:38:02 -060017CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishing2b4ef602020-06-19 12:33:02 -050018# Continue to keep to support legacy code.
George Keishinge635ddc2022-12-08 07:38:02 -060019SETTINGS_URI = '/org/openbmc/settings/'
20WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
21TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
22NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
23NETWORK_RESOURCE = 'xyz.openbmc_project.Network.IP.Protocol.IPv4'
Prashanth Katti081b3d92018-06-15 05:13:11 -050024# SNMP
George Keishinge635ddc2022-12-08 07:38:02 -060025SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/'
George Keishing06572472017-09-01 11:33:01 -050026# Sensors base variables.
George Keishinge635ddc2022-12-08 07:38:02 -060027SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
Marissa Garza9f3d3aa2019-11-06 15:02:44 -060028# Thermal Control base variables
George Keishinge635ddc2022-12-08 07:38:02 -060029THERMAL_CONTROL_URI = CONTROL_URI + 'thermal/0'
30THERMAL_METRICS = 'ThermalSubsystem/ThermalMetrics'
srichn28334438b2022-09-21 08:41:25 -050031
George Keishinge635ddc2022-12-08 07:38:02 -060032COMPONENT_NAME_OF_POWER_SUPPLY = 'powersupply'
George Keishing06572472017-09-01 11:33:01 -050033
Sweta Potthuridaf91342017-09-07 12:05:56 -050034# State Manager base variables
George Keishinge635ddc2022-12-08 07:38:02 -060035BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060036
George Keishinge635ddc2022-12-08 07:38:02 -060037HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
38HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
39HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
40HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
41HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
George Keishingbec365b2017-01-19 01:28:41 -060042
George Keishinge635ddc2022-12-08 07:38:02 -060043CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
44CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
45CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
46CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
George Keishingbec365b2017-01-19 01:28:41 -060047
48# State Manager URI variables.
George Keishinge635ddc2022-12-08 07:38:02 -060049SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
50BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
51HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
52CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
53HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060054
Tim Lee29e073a2022-04-12 12:07:17 +080055# OS state for x86 architecture
George Keishinge635ddc2022-12-08 07:38:02 -060056OS_STATE_URI = OPENBMC_BASE_URI + 'state/os/'
Tim Lee29e073a2022-04-12 12:07:17 +080057
George Keishing505d5b42017-02-21 11:01:54 -060058# Logging URI variables
George Keishinge635ddc2022-12-08 07:38:02 -060059BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
60BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
61REDFISH_BMC_LOGGING_ENTRY = '/redfish/v1/Systems/system/LogServices/EventLog/Entries/'
George Keishing505d5b42017-02-21 11:01:54 -060062
Sushil Singh468d85f2022-11-30 07:33:36 -060063
George Keishingab5157b2017-02-09 12:24:25 -060064# Software manager version
George Keishinge635ddc2022-12-08 07:38:02 -060065SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
66ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
67READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
68INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
69ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
70NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
71FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050072
George Keishinge635ddc2022-12-08 07:38:02 -060073SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
74REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
75REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
76REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050077
George Keishinge635ddc2022-12-08 07:38:02 -060078SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
79VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
80VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
81VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060082
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050083# Image Upload Directory Path
George Keishinge635ddc2022-12-08 07:38:02 -060084IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050085
Joy Onyerikwud806cc02019-10-01 07:46:18 -050086# Inventory URI variables
George Keishinge635ddc2022-12-08 07:38:02 -060087HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
88CHASSIS_INVENTORY_URI = HOST_INVENTORY_URI + 'system/chassis/'
89MOTHERBOARD_INVENTORY_URI = CHASSIS_INVENTORY_URI + 'motherboard/'
George Keishingc8166ed2017-02-24 03:53:38 -060090
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060091# Led URI variable
George Keishinge635ddc2022-12-08 07:38:02 -060092LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
93LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
94LED_LAMP_TEST_ASSERTED_URI = LED_GROUPS_URI + 'lamp_test/'
95LED_PHYSICAL_PS0_URI = LED_PHYSICAL_URI + 'cffps1_69/'
96LED_PHYSICAL_PS1_URI = LED_PHYSICAL_URI + 'cffps1_68/'
97LED_PHYSICAL_FAN0_URI = LED_PHYSICAL_URI + 'fan0/'
98LED_PHYSICAL_FAN2_URI = LED_PHYSICAL_URI + 'fan2/'
99LED_PHYSICAL_FAN3_URI = LED_PHYSICAL_URI + 'fan3/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -0600100
George Keishing1059b222017-07-21 13:24:43 -0500101# Host control URI variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600102CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -0600103
George Keishing1c3a9662017-08-11 10:16:36 -0500104# Power restore variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600105POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
106CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
George Keishing1c3a9662017-08-11 10:16:36 -0500107
George Keishinge635ddc2022-12-08 07:38:02 -0600108RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
109ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
110ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
George Keishing1c3a9662017-08-11 10:16:36 -0500111
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600112# Dump URI variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600113REST_DUMP_URI = OPENBMC_BASE_URI + 'dump/bmc/'
114DUMP_ENTRY_URI = REST_DUMP_URI + 'entry/'
Naman Navin Hegdeebd4d682019-07-22 02:39:35 -0500115DUMP_DOWNLOAD_URI = "/download/dump/"
Michael Walshe11a1362017-10-19 15:35:26 -0500116# The path on the BMC where dumps are stored.
George Keishingbd8ec922022-03-31 13:39:35 -0500117DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -0500118
George Keishing2bd6fc02017-08-10 01:15:16 -0500119# Boot progress variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600120STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
121OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
122OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
123OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
124OS_BOOT_SECPCI = STATE_DBUS_BASE + \
125 'Boot.Progress.ProgressStages.SecondaryProcInit'
126OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
127OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
128 'Boot.Progress.ProgressStages.MotherboardInit'
Sridevi Rameshef351732022-09-19 01:49:26 -0500129OPENBMC_DBUS_BMC_STATE = STATE_DBUS_BASE + "BMC"
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600130
131# OperatingSystem status variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600132OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
133 'OperatingSystem.Status.OSStatus.BootComplete'
134OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
135OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
136OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
137OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
138OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500139
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500140# Boot variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600141BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
142BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
143BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
144BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
145BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
146BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
147BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
148BOOT_TYPE_LEGACY = 'xyz.openbmc_project.Control.Boot.Type.Types.Legacy'
149BOOT_TYPE_EFI = 'xyz.openbmc_project.Control.Boot.Type.Types.EFI'
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500150
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500151# Time variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600152TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
153BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
154HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
155SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
156BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
157NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
158MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500159
George Keishingf1331672018-01-18 05:19:02 -0600160# User manager variable.
George Keishinge635ddc2022-12-08 07:38:02 -0600161BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
George Keishingf1331672018-01-18 05:19:02 -0600162
Sivas SRR39909e32018-11-09 18:58:36 -0600163# LDAP User manager variable.
George Keishinge635ddc2022-12-08 07:38:02 -0600164BMC_LDAP_URI = BMC_USER_URI + 'ldap'
Sivas SRR39909e32018-11-09 18:58:36 -0600165
George Keishing0b837432018-03-20 13:46:10 -0500166# The path on the BMC where signed keys are stored.
167ACTIVATION_DIR_PATH = "/etc/activationdata/"
168
George Keishingeaa73b72018-07-30 09:30:16 -0500169# Redfish variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600170REDFISH_BASE_URI = '/redfish/v1/'
171REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
172REDFISH_SESSION_URI = 'SessionService/Sessions/'
173REDFISH_NW_ETH0 = 'Managers/bmc/EthernetInterfaces/eth0/'
Prashanth Kattif58cce02019-02-06 03:05:14 -0600174REDFISH_NW_ETH0_URI = REDFISH_BASE_URI + REDFISH_NW_ETH0
George Keishinge635ddc2022-12-08 07:38:02 -0600175REDFISH_NW_ETH_IFACE = REDFISH_BASE_URI + 'Managers/bmc/EthernetInterfaces/'
176REDFISH_NW_PROTOCOL = 'Managers/bmc/NetworkProtocol'
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500177REDFISH_NW_PROTOCOL_URI = REDFISH_BASE_URI + REDFISH_NW_PROTOCOL
George Keishinge635ddc2022-12-08 07:38:02 -0600178REDFISH_ACCOUNTS_SERVICE = 'AccountService/'
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500179REDFISH_ACCOUNTS_SERVICE_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS_SERVICE
George Keishinge635ddc2022-12-08 07:38:02 -0600180REDFISH_ACCOUNTS = 'AccountService/Accounts/'
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500181REDFISH_ACCOUNTS_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS
George Keishinge635ddc2022-12-08 07:38:02 -0600182REDFISH_HTTPS_CERTIFICATE = 'Managers/bmc/NetworkProtocol/HTTPS/Certificates'
Rahul Maheshwaric1f43ed2019-06-03 01:00:16 -0500183REDFISH_HTTPS_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_HTTPS_CERTIFICATE
George Keishinge635ddc2022-12-08 07:38:02 -0600184REDFISH_LDAP_CERTIFICATE = 'AccountService/LDAP/Certificates'
Rahul Maheshwari037a3432019-05-23 00:55:40 -0500185REDFISH_LDAP_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_LDAP_CERTIFICATE
George Keishinge635ddc2022-12-08 07:38:02 -0600186REDFISH_CA_CERTIFICATE = 'Managers/bmc/Truststore/Certificates'
Rahul Maheshwari3ecd1a62019-06-03 01:44:34 -0500187REDFISH_CA_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_CA_CERTIFICATE
George Keishinge635ddc2022-12-08 07:38:02 -0600188REDFISH_CHASSIS_URI = REDFISH_BASE_URI + 'Chassis/'
189REDFISH_CHASSIS_THERMAL = 'chassis/Thermal/'
George Keishing85ef4482019-07-22 23:36:06 -0500190REDFISH_CHASSIS_THERMAL_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_THERMAL
George Keishinge635ddc2022-12-08 07:38:02 -0600191REDFISH_CHASSIS_POWER = 'chassis/Power/'
George Keishing49ea58f2019-07-22 23:42:59 -0500192REDFISH_CHASSIS_POWER_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_POWER
George Keishinge635ddc2022-12-08 07:38:02 -0600193REDFISH_CHASSIS_SENSORS = 'chassis/Sensors'
Joy Onyerikwud806cc02019-10-01 07:46:18 -0500194REDFISH_CHASSIS_SENSORS_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_SENSORS
George Keishinge635ddc2022-12-08 07:38:02 -0600195REDFISH_BMC_DUMP = 'Managers/bmc/LogServices/Dump/Entries'
Sushil Singh468d85f2022-11-30 07:33:36 -0600196REDFISH_DUMP_URI = REDFISH_BASE_URI + REDFISH_BMC_DUMP
George Keishingeaa73b72018-07-30 09:30:16 -0500197
George Keishing713dd5e2018-11-29 01:16:19 -0600198# Boot options and URI variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600199POWER_ON = 'On'
Sridevi Ramesh0047de82019-02-01 06:33:08 -0600200POWER_GRACEFUL_OFF = "GracefulShutdown"
201POWER_GRACEFUL_RESTART = "GracefulRestart"
George Keishinge635ddc2022-12-08 07:38:02 -0600202POWER_FORCE_OFF = 'ForceOff'
George Keishing713dd5e2018-11-29 01:16:19 -0600203
George Keishinge635ddc2022-12-08 07:38:02 -0600204REDFISH_POWER = 'Systems/system/Actions/ComputerSystem.Reset'
Sivas SRR939b4b12019-06-26 00:01:59 -0500205REDFISH_POWER_URI = REDFISH_BASE_URI + REDFISH_POWER
George Keishing713dd5e2018-11-29 01:16:19 -0600206
George Keishing6a514ef2018-08-27 05:19:19 -0500207# rsyslog variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600208REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
George Keishing6a514ef2018-08-27 05:19:19 -0500209
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500210# Certificate variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600211SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https'
212CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap'
213CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap'
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500214
George Keishing87e2a852019-05-29 12:30:14 -0500215# EventLog variables.
George Keishinge635ddc2022-12-08 07:38:02 -0600216SYSTEM_BASE_URI = REDFISH_BASE_URI + 'Systems/system/'
217EVENT_LOG_URI = SYSTEM_BASE_URI + 'LogServices/EventLog/'
218DUMP_URI = SYSTEM_BASE_URI + 'LogServices/Dump/'
George Keishing87e2a852019-05-29 12:30:14 -0500219
George Keishinge635ddc2022-12-08 07:38:02 -0600220BIOS_ATTR_URI = SYSTEM_BASE_URI + 'Bios'
221BIOS_ATTR_SETTINGS_URI = BIOS_ATTR_URI + '/Settings'
Sridevi Ramesh57537452021-01-18 03:25:05 -0600222
George Keishinge635ddc2022-12-08 07:38:02 -0600223'''
George Keishingfbeaecc2016-08-16 05:24:31 -0500224 QEMU HTTPS variable:
225
Sandhya Somashekar839a0c22019-01-31 05:05:43 -0600226 By default lib/resource.robot AUTH URI construct is as
George Keishingfbeaecc2016-08-16 05:24:31 -0500227 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
228 ${AUTH_SUFFIX} is populated here by default EMPTY else
229 the port from the OS environment
George Keishinge635ddc2022-12-08 07:38:02 -0600230'''
George Keishingcf910442016-12-08 03:12:59 -0600231
George Keishinge635ddc2022-12-08 07:38:02 -0600232AUTH_SUFFIX = ":" + BuiltIn().get_variable_value("${HTTPS_PORT}", os.getenv('HTTPS_PORT', '443'))
Chris Austenb29d2e82016-06-07 12:25:35 -0500233
234# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600235INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500236 "CPU": [
237 "Custom Field 1",
238 "Custom Field 2",
239 "Custom Field 3",
240 "Custom Field 4",
241 "Custom Field 5",
242 "Custom Field 6",
243 "Custom Field 7",
244 "Custom Field 8",
245 "FRU File ID",
246 "Manufacturer",
247 "Name",
248 "Part Number",
249 "Serial Number",
250 "fault",
251 "fru_type",
252 "is_fru",
253 "present",
254 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500255 ],
George Keishinge635ddc2022-12-08 07:38:02 -0600256
Chris Austenb29d2e82016-06-07 12:25:35 -0500257 "DIMM": [
258 "Asset Tag",
259 "Custom Field 1",
260 "Custom Field 2",
261 "Custom Field 3",
262 "Custom Field 4",
263 "Custom Field 5",
264 "Custom Field 6",
265 "Custom Field 7",
266 "Custom Field 8",
267 "FRU File ID",
268 "Manufacturer",
269 "Model Number",
270 "Name",
271 "Serial Number",
272 "Version",
273 "fault",
274 "fru_type",
275 "is_fru",
276 "present",
277 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500278 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500279 "MEMORY_BUFFER": [
280 "Custom Field 1",
281 "Custom Field 2",
282 "Custom Field 3",
283 "Custom Field 4",
284 "Custom Field 5",
285 "Custom Field 6",
286 "Custom Field 7",
287 "Custom Field 8",
288 "FRU File ID",
289 "Manufacturer",
290 "Name",
291 "Part Number",
292 "Serial Number",
293 "fault",
294 "fru_type",
295 "is_fru",
296 "present",
297 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500298 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500299 "FAN": [
300 "fault",
301 "fru_type",
302 "is_fru",
303 "present",
304 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500305 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500306 "DAUGHTER_CARD": [
307 "Custom Field 1",
308 "Custom Field 2",
309 "Custom Field 3",
310 "Custom Field 4",
311 "Custom Field 5",
312 "Custom Field 6",
313 "Custom Field 7",
314 "Custom Field 8",
315 "FRU File ID",
316 "Manufacturer",
317 "Name",
318 "Part Number",
319 "Serial Number",
320 "fault",
321 "fru_type",
322 "is_fru",
323 "present",
324 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500325 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500326 "BMC": [
327 "fault",
328 "fru_type",
329 "is_fru",
330 "manufacturer",
331 "present",
332 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500333 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500334 "MAIN_PLANAR": [
335 "Custom Field 1",
336 "Custom Field 2",
337 "Custom Field 3",
338 "Custom Field 4",
339 "Custom Field 5",
340 "Custom Field 6",
341 "Custom Field 7",
342 "Custom Field 8",
343 "Part Number",
344 "Serial Number",
345 "Type",
346 "fault",
347 "fru_type",
348 "is_fru",
349 "present",
350 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500351 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500352 "SYSTEM": [
353 "Custom Field 1",
354 "Custom Field 2",
355 "Custom Field 3",
356 "Custom Field 4",
357 "Custom Field 5",
358 "Custom Field 6",
359 "Custom Field 7",
360 "Custom Field 8",
361 "FRU File ID",
362 "Manufacturer",
363 "Model Number",
364 "Name",
365 "Serial Number",
366 "Version",
367 "fault",
368 "fru_type",
369 "is_fru",
370 "present",
371 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500372 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500373 "CORE": [
374 "fault",
375 "fru_type",
376 "is_fru",
377 "present",
378 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500379 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500380}