blob: d071a0d816e3f9d1b39430581095181d8ceddfec [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
2
George Keishingcf910442016-12-08 03:12:59 -06003# Enable when ready with openbmc/openbmc-test-automation#203
4# replace with new path /xyz/openbmc_project
5OPENBMC_BASE_URI = '/org/openbmc/'
6OPENBMC_BASE_DBUS = 'org.openbmc'
7
8# REST URI base endpoint paths
9CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishingcf910442016-12-08 03:12:59 -060010RECORDS_URI = OPENBMC_BASE_URI + 'records/'
11BUTTONS_URI = OPENBMC_BASE_URI + 'buttons/'
12SETTINGS_URI = OPENBMC_BASE_URI + 'settings/'
13WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
14INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
15USER_MANAGER_URI = OPENBMC_BASE_URI + 'UserManager/'
16NETWORK_MANAGER_URI = OPENBMC_BASE_URI + 'NetworkManager/'
Rahul Maheshwarif8785902016-12-12 01:23:13 -060017TIME_MANAGER_URI = OPENBMC_BASE_URI + 'TimeManager/'
Prashanth Kattie79c5402017-06-08 07:40:49 -050018XYZ_NETWORK_MANAGER = '/xyz/openbmc_project/network/'
George Keishingcf910442016-12-08 03:12:59 -060019
George Keishing06572472017-09-01 11:33:01 -050020# Sensors base variables.
21SENSORS_URI = '/xyz/openbmc_project/sensors/'
22
George Keishingbec365b2017-01-19 01:28:41 -060023# State Manager base variables.
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060024BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
25
George Keishingbec365b2017-01-19 01:28:41 -060026HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
27HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060028HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060029HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
30HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
31
32CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
33CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
34CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
35CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
36
37# State Manager URI variables.
George Keishing3c332e02017-02-23 22:10:18 -060038BMC_STATE_URI = '/xyz/openbmc_project/state/bmc0/'
George Keishingbec365b2017-01-19 01:28:41 -060039HOST_STATE_URI = '/xyz/openbmc_project/state/host0/'
40CHASSIS_STATE_URI = '/xyz/openbmc_project/state/chassis0/'
Sridevi Ramesh0a7c0aa2017-06-26 13:03:02 -050041HOST_WATCHDOG_URI = '/xyz/openbmc_project/watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060042
George Keishing505d5b42017-02-21 11:01:54 -060043# Logging URI variables
George Keishinga71dd202017-02-24 00:49:40 -060044BMC_LOGGING_URI = '/xyz/openbmc_project/logging/'
45BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060046
George Keishingab5157b2017-02-09 12:24:25 -060047# Software manager version
George Keishingff1e3ec2017-07-20 01:58:21 -050048SOFTWARE_VERSION_URI = '/xyz/openbmc_project/software/'
George Keishingab5157b2017-02-09 12:24:25 -060049ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050050READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
51INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
52ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
53NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
54FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
55
56SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
57REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
58REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
59REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
60
61SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
62VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
63VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
64VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060065
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050066# Image Upload Directory Path
67IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
68
George Keishingc8166ed2017-02-24 03:53:38 -060069# Inventory URI
70HOST_INVENTORY_URI = '/xyz/openbmc_project/inventory/'
71
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060072# Led URI variable
73LED_GROUPS_URI = '/xyz/openbmc_project/led/groups/'
Rahul Maheshwaric8898e12017-03-30 23:30:01 -050074LED_PHYSICAL_URI = '/xyz/openbmc_project/led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060075
George Keishing1059b222017-07-21 13:24:43 -050076# Host control URI variables.
77CONTROL_HOST_URI = '/xyz/openbmc_project/control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060078
George Keishing1c3a9662017-08-11 10:16:36 -050079# Power restore variables.
80POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
81CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
82
83RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
84ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
85ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
86
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050087# Dump URI variable
88DUMP_URI = '/xyz/openbmc_project/dump/'
89DUMP_ENTRY_URI = DUMP_URI + 'entry/'
90
George Keishing2bd6fc02017-08-10 01:15:16 -050091# Boot progress variables.
92STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
93OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
94OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
95OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete'
96
Rahul Maheshwari85c4d342017-08-09 21:59:30 -050097# Boot variables.
98BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
99BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
100BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
101BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
102BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
103BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
104BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
105
George Keishingfbeaecc2016-08-16 05:24:31 -0500106'''
107 QEMU HTTPS variable:
108
109 By default lib/resource.txt AUTH URI construct is as
110 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
111 ${AUTH_SUFFIX} is populated here by default EMPTY else
112 the port from the OS environment
113'''
George Keishingcf910442016-12-08 03:12:59 -0600114
115
George Keishingfbeaecc2016-08-16 05:24:31 -0500116def get_port_https():
117 # defaulted to empty string
118 l_suffix = ''
119 try:
120 l_https_port = os.getenv('HTTPS_PORT')
121 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600122 l_suffix = ':' + l_https_port
George Keishingfbeaecc2016-08-16 05:24:31 -0500123 except:
George Keishingcf910442016-12-08 03:12:59 -0600124 print "Environment variable HTTPS_PORT not set,\
125 using default HTTPS port"
George Keishingfbeaecc2016-08-16 05:24:31 -0500126 return l_suffix
127
George Keishingcf910442016-12-08 03:12:59 -0600128AUTH_SUFFIX = {
129 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500130}
131
132# Update the ':Port number' to this variable
133AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500134
135# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600136INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500137 "CPU": [
138 "Custom Field 1",
139 "Custom Field 2",
140 "Custom Field 3",
141 "Custom Field 4",
142 "Custom Field 5",
143 "Custom Field 6",
144 "Custom Field 7",
145 "Custom Field 8",
146 "FRU File ID",
147 "Manufacturer",
148 "Name",
149 "Part Number",
150 "Serial Number",
151 "fault",
152 "fru_type",
153 "is_fru",
154 "present",
155 "version",
156 ],
157
158 "DIMM": [
159 "Asset Tag",
160 "Custom Field 1",
161 "Custom Field 2",
162 "Custom Field 3",
163 "Custom Field 4",
164 "Custom Field 5",
165 "Custom Field 6",
166 "Custom Field 7",
167 "Custom Field 8",
168 "FRU File ID",
169 "Manufacturer",
170 "Model Number",
171 "Name",
172 "Serial Number",
173 "Version",
174 "fault",
175 "fru_type",
176 "is_fru",
177 "present",
178 "version",
179 ],
180 "MEMORY_BUFFER": [
181 "Custom Field 1",
182 "Custom Field 2",
183 "Custom Field 3",
184 "Custom Field 4",
185 "Custom Field 5",
186 "Custom Field 6",
187 "Custom Field 7",
188 "Custom Field 8",
189 "FRU File ID",
190 "Manufacturer",
191 "Name",
192 "Part Number",
193 "Serial Number",
194 "fault",
195 "fru_type",
196 "is_fru",
197 "present",
198 "version",
199 ],
200 "FAN": [
201 "fault",
202 "fru_type",
203 "is_fru",
204 "present",
205 "version",
206 ],
207 "DAUGHTER_CARD": [
208 "Custom Field 1",
209 "Custom Field 2",
210 "Custom Field 3",
211 "Custom Field 4",
212 "Custom Field 5",
213 "Custom Field 6",
214 "Custom Field 7",
215 "Custom Field 8",
216 "FRU File ID",
217 "Manufacturer",
218 "Name",
219 "Part Number",
220 "Serial Number",
221 "fault",
222 "fru_type",
223 "is_fru",
224 "present",
225 "version",
226 ],
227 "BMC": [
228 "fault",
229 "fru_type",
230 "is_fru",
231 "manufacturer",
232 "present",
233 "version",
234 ],
235 "MAIN_PLANAR": [
236 "Custom Field 1",
237 "Custom Field 2",
238 "Custom Field 3",
239 "Custom Field 4",
240 "Custom Field 5",
241 "Custom Field 6",
242 "Custom Field 7",
243 "Custom Field 8",
244 "Part Number",
245 "Serial Number",
246 "Type",
247 "fault",
248 "fru_type",
249 "is_fru",
250 "present",
251 "version",
252 ],
253 "SYSTEM": [
254 "Custom Field 1",
255 "Custom Field 2",
256 "Custom Field 3",
257 "Custom Field 4",
258 "Custom Field 5",
259 "Custom Field 6",
260 "Custom Field 7",
261 "Custom Field 8",
262 "FRU File ID",
263 "Manufacturer",
264 "Model Number",
265 "Name",
266 "Serial Number",
267 "Version",
268 "fault",
269 "fru_type",
270 "is_fru",
271 "present",
272 "version",
273 ],
274 "CORE": [
275 "fault",
276 "fru_type",
277 "is_fru",
278 "present",
279 "version",
280 ],
281}