blob: a80bff1f888ddb8a3f79243ab38be2e2a59f78eb [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/'
10SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
11RECORDS_URI = OPENBMC_BASE_URI + 'records/'
12BUTTONS_URI = OPENBMC_BASE_URI + 'buttons/'
13SETTINGS_URI = OPENBMC_BASE_URI + 'settings/'
14WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
15INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
16USER_MANAGER_URI = OPENBMC_BASE_URI + 'UserManager/'
17NETWORK_MANAGER_URI = OPENBMC_BASE_URI + 'NetworkManager/'
Rahul Maheshwarif8785902016-12-12 01:23:13 -060018TIME_MANAGER_URI = OPENBMC_BASE_URI + 'TimeManager/'
Prashanth Kattie79c5402017-06-08 07:40:49 -050019XYZ_NETWORK_MANAGER = '/xyz/openbmc_project/network/'
George Keishingcf910442016-12-08 03:12:59 -060020
George Keishingbec365b2017-01-19 01:28:41 -060021# State Manager base variables.
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060022BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
23
George Keishingbec365b2017-01-19 01:28:41 -060024HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
25HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060026HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060027HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
28HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
29
30CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
31CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
32CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
33CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
34
35# State Manager URI variables.
George Keishing3c332e02017-02-23 22:10:18 -060036BMC_STATE_URI = '/xyz/openbmc_project/state/bmc0/'
George Keishingbec365b2017-01-19 01:28:41 -060037HOST_STATE_URI = '/xyz/openbmc_project/state/host0/'
38CHASSIS_STATE_URI = '/xyz/openbmc_project/state/chassis0/'
Sridevi Ramesh0a7c0aa2017-06-26 13:03:02 -050039HOST_WATCHDOG_URI = '/xyz/openbmc_project/watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060040
George Keishing505d5b42017-02-21 11:01:54 -060041# Logging URI variables
George Keishinga71dd202017-02-24 00:49:40 -060042BMC_LOGGING_URI = '/xyz/openbmc_project/logging/'
43BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060044
George Keishingab5157b2017-02-09 12:24:25 -060045# Software manager version
George Keishingff1e3ec2017-07-20 01:58:21 -050046SOFTWARE_VERSION_URI = '/xyz/openbmc_project/software/'
George Keishingab5157b2017-02-09 12:24:25 -060047ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050048READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
49INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
50ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
51NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
52FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
53
54SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
55REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
56REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
57REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
58
59SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
60VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
61VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
62VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060063
George Keishingc8166ed2017-02-24 03:53:38 -060064# Inventory URI
65HOST_INVENTORY_URI = '/xyz/openbmc_project/inventory/'
66
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060067# Led URI variable
68LED_GROUPS_URI = '/xyz/openbmc_project/led/groups/'
Rahul Maheshwaric8898e12017-03-30 23:30:01 -050069LED_PHYSICAL_URI = '/xyz/openbmc_project/led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060070
George Keishing1059b222017-07-21 13:24:43 -050071# Host control URI variables.
72CONTROL_HOST_URI = '/xyz/openbmc_project/control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060073
George Keishing1c3a9662017-08-11 10:16:36 -050074# Power restore variables.
75POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
76CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
77
78RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
79ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
80ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
81
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050082# Dump URI variable
83DUMP_URI = '/xyz/openbmc_project/dump/'
84DUMP_ENTRY_URI = DUMP_URI + 'entry/'
85
George Keishing2bd6fc02017-08-10 01:15:16 -050086# Boot progress variables.
87STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
88OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
89OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
90OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete'
91
George Keishingfbeaecc2016-08-16 05:24:31 -050092'''
93 QEMU HTTPS variable:
94
95 By default lib/resource.txt AUTH URI construct is as
96 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
97 ${AUTH_SUFFIX} is populated here by default EMPTY else
98 the port from the OS environment
99'''
George Keishingcf910442016-12-08 03:12:59 -0600100
101
George Keishingfbeaecc2016-08-16 05:24:31 -0500102def get_port_https():
103 # defaulted to empty string
104 l_suffix = ''
105 try:
106 l_https_port = os.getenv('HTTPS_PORT')
107 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600108 l_suffix = ':' + l_https_port
George Keishingfbeaecc2016-08-16 05:24:31 -0500109 except:
George Keishingcf910442016-12-08 03:12:59 -0600110 print "Environment variable HTTPS_PORT not set,\
111 using default HTTPS port"
George Keishingfbeaecc2016-08-16 05:24:31 -0500112 return l_suffix
113
George Keishingcf910442016-12-08 03:12:59 -0600114AUTH_SUFFIX = {
115 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500116}
117
118# Update the ':Port number' to this variable
119AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500120
121# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600122INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500123 "CPU": [
124 "Custom Field 1",
125 "Custom Field 2",
126 "Custom Field 3",
127 "Custom Field 4",
128 "Custom Field 5",
129 "Custom Field 6",
130 "Custom Field 7",
131 "Custom Field 8",
132 "FRU File ID",
133 "Manufacturer",
134 "Name",
135 "Part Number",
136 "Serial Number",
137 "fault",
138 "fru_type",
139 "is_fru",
140 "present",
141 "version",
142 ],
143
144 "DIMM": [
145 "Asset Tag",
146 "Custom Field 1",
147 "Custom Field 2",
148 "Custom Field 3",
149 "Custom Field 4",
150 "Custom Field 5",
151 "Custom Field 6",
152 "Custom Field 7",
153 "Custom Field 8",
154 "FRU File ID",
155 "Manufacturer",
156 "Model Number",
157 "Name",
158 "Serial Number",
159 "Version",
160 "fault",
161 "fru_type",
162 "is_fru",
163 "present",
164 "version",
165 ],
166 "MEMORY_BUFFER": [
167 "Custom Field 1",
168 "Custom Field 2",
169 "Custom Field 3",
170 "Custom Field 4",
171 "Custom Field 5",
172 "Custom Field 6",
173 "Custom Field 7",
174 "Custom Field 8",
175 "FRU File ID",
176 "Manufacturer",
177 "Name",
178 "Part Number",
179 "Serial Number",
180 "fault",
181 "fru_type",
182 "is_fru",
183 "present",
184 "version",
185 ],
186 "FAN": [
187 "fault",
188 "fru_type",
189 "is_fru",
190 "present",
191 "version",
192 ],
193 "DAUGHTER_CARD": [
194 "Custom Field 1",
195 "Custom Field 2",
196 "Custom Field 3",
197 "Custom Field 4",
198 "Custom Field 5",
199 "Custom Field 6",
200 "Custom Field 7",
201 "Custom Field 8",
202 "FRU File ID",
203 "Manufacturer",
204 "Name",
205 "Part Number",
206 "Serial Number",
207 "fault",
208 "fru_type",
209 "is_fru",
210 "present",
211 "version",
212 ],
213 "BMC": [
214 "fault",
215 "fru_type",
216 "is_fru",
217 "manufacturer",
218 "present",
219 "version",
220 ],
221 "MAIN_PLANAR": [
222 "Custom Field 1",
223 "Custom Field 2",
224 "Custom Field 3",
225 "Custom Field 4",
226 "Custom Field 5",
227 "Custom Field 6",
228 "Custom Field 7",
229 "Custom Field 8",
230 "Part Number",
231 "Serial Number",
232 "Type",
233 "fault",
234 "fru_type",
235 "is_fru",
236 "present",
237 "version",
238 ],
239 "SYSTEM": [
240 "Custom Field 1",
241 "Custom Field 2",
242 "Custom Field 3",
243 "Custom Field 4",
244 "Custom Field 5",
245 "Custom Field 6",
246 "Custom Field 7",
247 "Custom Field 8",
248 "FRU File ID",
249 "Manufacturer",
250 "Model Number",
251 "Name",
252 "Serial Number",
253 "Version",
254 "fault",
255 "fru_type",
256 "is_fru",
257 "present",
258 "version",
259 ],
260 "CORE": [
261 "fault",
262 "fru_type",
263 "is_fru",
264 "present",
265 "version",
266 ],
267}