blob: 3473d1ddfd850286f13993ecc98292ba9b51f446 [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
2
Sweta Potthuridaf91342017-09-07 12:05:56 -05003OPENBMC_BASE_URI = '/xyz/openbmc_project/'
4OPENBMC_BASE_DBUS = 'xyz.openbmc_project.'
George Keishingcf910442016-12-08 03:12:59 -06005
George Keishingcae6e902017-09-07 13:35:59 -05006# org open power base URI.
7OPENPOWER_BASE_URI = '/org/open_power/'
8OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/'
George Keishingac512252018-02-05 02:04:30 -06009OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/'
George Keishingcae6e902017-09-07 13:35:59 -050010
11# REST URI base endpoint paths.
George Keishingcf910442016-12-08 03:12:59 -060012CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishing0da47e92017-10-23 02:22:29 -050013# old vs new code dependencies in many places.
14# TODO: remove when ready.
15SETTINGS_URI = '/org/openbmc/settings/'
George Keishingcf910442016-12-08 03:12:59 -060016WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
Sweta Potthuridaf91342017-09-07 12:05:56 -050017TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
manasarm104cc6b2018-02-07 12:35:05 +053018NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
Prashanth Katti081b3d92018-06-15 05:13:11 -050019# SNMP
20SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/'
George Keishing06572472017-09-01 11:33:01 -050021# Sensors base variables.
Gunnar Millsdca35792018-03-26 10:05:38 -050022SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
George Keishing06572472017-09-01 11:33:01 -050023
Sweta Potthuridaf91342017-09-07 12:05:56 -050024# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060025BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
26
George Keishingbec365b2017-01-19 01:28:41 -060027HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
28HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060029HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060030HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
31HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
32
33CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
34CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
35CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
36CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
37
38# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050039SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
40BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
41HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
42CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
43HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060044
George Keishing505d5b42017-02-21 11:01:54 -060045# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050046BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060047BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060048
George Keishingab5157b2017-02-09 12:24:25 -060049# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050050SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060051ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050052READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
53INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
54ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
55NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
56FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
57
58SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050059REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
60REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050061REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
62
63SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
64VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
65VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
66VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060067
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050068# Image Upload Directory Path
69IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
70
George Keishingc8166ed2017-02-24 03:53:38 -060071# Inventory URI
Sweta Potthuridaf91342017-09-07 12:05:56 -050072HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
George Keishingc8166ed2017-02-24 03:53:38 -060073
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060074# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050075LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
76LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060077
George Keishing1059b222017-07-21 13:24:43 -050078# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050079CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060080
George Keishing1c3a9662017-08-11 10:16:36 -050081# Power restore variables.
82POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
83CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
84
85RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
86ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
87ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
88
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060089# Dump URI variables.
George Keishing8d693382018-12-18 12:15:04 -060090DUMP_URI = OPENBMC_BASE_URI + 'dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050091DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Michael Walshe11a1362017-10-19 15:35:26 -050092# The path on the BMC where dumps are stored.
93DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050094
George Keishing2bd6fc02017-08-10 01:15:16 -050095# Boot progress variables.
96STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
97OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
98OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060099OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
100OS_BOOT_SECPCI = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500101 'Boot.Progress.ProgressStages.SecondaryProcInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600102OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
103OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500104 'Boot.Progress.ProgressStages.MotherboardInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600105
106# OperatingSystem status variables.
Gunnar Millsdca35792018-03-26 10:05:38 -0500107OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
108 'OperatingSystem.Status.OSStatus.BootComplete'
109OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600110OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
111OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
112OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
113OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500114
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500115# Boot variables.
116BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
117BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
118BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
119BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
120BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
121BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
122BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
123
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500124# Time variables.
125TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
126BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
127HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
128SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
129BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
130NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
131MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
132
George Keishingf1331672018-01-18 05:19:02 -0600133# User manager variable.
134BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
135
Sivas SRR39909e32018-11-09 18:58:36 -0600136# LDAP User manager variable.
137BMC_LDAP_URI = BMC_USER_URI + 'ldap'
138
George Keishing0b837432018-03-20 13:46:10 -0500139# The path on the BMC where signed keys are stored.
140ACTIVATION_DIR_PATH = "/etc/activationdata/"
141
George Keishingeaa73b72018-07-30 09:30:16 -0500142# Redfish variables.
143REDFISH_BASE_URI = '/redfish/v1/'
144REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
George Keishing9cef1092018-08-06 01:06:24 -0500145REDFISH_SESSION_URI = 'SessionService/Sessions/'
Prashanth Kattif58cce02019-02-06 03:05:14 -0600146REDFISH_NW_ETH0 = 'Managers/bmc/EthernetInterfaces/eth0/'
147REDFISH_NW_ETH0_URI = REDFISH_BASE_URI + REDFISH_NW_ETH0
George Keishingeaa73b72018-07-30 09:30:16 -0500148
George Keishing713dd5e2018-11-29 01:16:19 -0600149# Boot options and URI variables.
150POWER_ON = 'On'
Sridevi Ramesh0047de82019-02-01 06:33:08 -0600151POWER_GRACEFUL_OFF = "GracefulShutdown"
152POWER_GRACEFUL_RESTART = "GracefulRestart"
George Keishing713dd5e2018-11-29 01:16:19 -0600153POWER_FORCE_OFF = 'ForceOff'
154
155REDFISH_POWER_URI = 'Systems/1/Actions/ComputerSystem.Reset'
156
George Keishing6a514ef2018-08-27 05:19:19 -0500157# rsyslog variables.
158REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
159
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500160# Certificate variables.
161SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https'
162CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap'
Rahul Maheshwari081eadb2018-10-26 03:11:10 -0500163CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap'
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500164
George Keishingfbeaecc2016-08-16 05:24:31 -0500165'''
166 QEMU HTTPS variable:
167
Sandhya Somashekar839a0c22019-01-31 05:05:43 -0600168 By default lib/resource.robot AUTH URI construct is as
George Keishingfbeaecc2016-08-16 05:24:31 -0500169 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
170 ${AUTH_SUFFIX} is populated here by default EMPTY else
171 the port from the OS environment
172'''
George Keishingcf910442016-12-08 03:12:59 -0600173
174
George Keishingfbeaecc2016-08-16 05:24:31 -0500175def get_port_https():
176 # defaulted to empty string
177 l_suffix = ''
178 try:
179 l_https_port = os.getenv('HTTPS_PORT')
180 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600181 l_suffix = ':' + l_https_port
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500182 except BaseException:
George Keishing3b7115a2018-08-02 10:48:17 -0500183 print ("Environment variable HTTPS_PORT not set,\
184 using default HTTPS port")
George Keishingfbeaecc2016-08-16 05:24:31 -0500185 return l_suffix
186
Gunnar Millsdca35792018-03-26 10:05:38 -0500187
George Keishingcf910442016-12-08 03:12:59 -0600188AUTH_SUFFIX = {
189 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500190}
191
192# Update the ':Port number' to this variable
193AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500194
195# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600196INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500197 "CPU": [
198 "Custom Field 1",
199 "Custom Field 2",
200 "Custom Field 3",
201 "Custom Field 4",
202 "Custom Field 5",
203 "Custom Field 6",
204 "Custom Field 7",
205 "Custom Field 8",
206 "FRU File ID",
207 "Manufacturer",
208 "Name",
209 "Part Number",
210 "Serial Number",
211 "fault",
212 "fru_type",
213 "is_fru",
214 "present",
215 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500216 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500217
218 "DIMM": [
219 "Asset Tag",
220 "Custom Field 1",
221 "Custom Field 2",
222 "Custom Field 3",
223 "Custom Field 4",
224 "Custom Field 5",
225 "Custom Field 6",
226 "Custom Field 7",
227 "Custom Field 8",
228 "FRU File ID",
229 "Manufacturer",
230 "Model Number",
231 "Name",
232 "Serial Number",
233 "Version",
234 "fault",
235 "fru_type",
236 "is_fru",
237 "present",
238 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500239 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500240 "MEMORY_BUFFER": [
241 "Custom Field 1",
242 "Custom Field 2",
243 "Custom Field 3",
244 "Custom Field 4",
245 "Custom Field 5",
246 "Custom Field 6",
247 "Custom Field 7",
248 "Custom Field 8",
249 "FRU File ID",
250 "Manufacturer",
251 "Name",
252 "Part Number",
253 "Serial Number",
254 "fault",
255 "fru_type",
256 "is_fru",
257 "present",
258 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500259 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500260 "FAN": [
261 "fault",
262 "fru_type",
263 "is_fru",
264 "present",
265 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500266 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500267 "DAUGHTER_CARD": [
268 "Custom Field 1",
269 "Custom Field 2",
270 "Custom Field 3",
271 "Custom Field 4",
272 "Custom Field 5",
273 "Custom Field 6",
274 "Custom Field 7",
275 "Custom Field 8",
276 "FRU File ID",
277 "Manufacturer",
278 "Name",
279 "Part Number",
280 "Serial Number",
281 "fault",
282 "fru_type",
283 "is_fru",
284 "present",
285 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500286 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500287 "BMC": [
288 "fault",
289 "fru_type",
290 "is_fru",
291 "manufacturer",
292 "present",
293 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500294 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500295 "MAIN_PLANAR": [
296 "Custom Field 1",
297 "Custom Field 2",
298 "Custom Field 3",
299 "Custom Field 4",
300 "Custom Field 5",
301 "Custom Field 6",
302 "Custom Field 7",
303 "Custom Field 8",
304 "Part Number",
305 "Serial Number",
306 "Type",
307 "fault",
308 "fru_type",
309 "is_fru",
310 "present",
311 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500312 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500313 "SYSTEM": [
314 "Custom Field 1",
315 "Custom Field 2",
316 "Custom Field 3",
317 "Custom Field 4",
318 "Custom Field 5",
319 "Custom Field 6",
320 "Custom Field 7",
321 "Custom Field 8",
322 "FRU File ID",
323 "Manufacturer",
324 "Model Number",
325 "Name",
326 "Serial Number",
327 "Version",
328 "fault",
329 "fru_type",
330 "is_fru",
331 "present",
332 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500333 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500334 "CORE": [
335 "fault",
336 "fru_type",
337 "is_fru",
338 "present",
339 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500340 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500341}