George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 1 | import os |
| 2 | |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 3 | # Enable when ready with openbmc/openbmc-test-automation#203 |
| 4 | # replace with new path /xyz/openbmc_project |
| 5 | OPENBMC_BASE_URI = '/org/openbmc/' |
| 6 | OPENBMC_BASE_DBUS = 'org.openbmc' |
| 7 | |
| 8 | # REST URI base endpoint paths |
| 9 | CONTROL_URI = OPENBMC_BASE_URI + 'control/' |
| 10 | SENSORS_URI = OPENBMC_BASE_URI + 'sensors/' |
| 11 | RECORDS_URI = OPENBMC_BASE_URI + 'records/' |
| 12 | BUTTONS_URI = OPENBMC_BASE_URI + 'buttons/' |
| 13 | SETTINGS_URI = OPENBMC_BASE_URI + 'settings/' |
| 14 | WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/' |
| 15 | INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/' |
| 16 | USER_MANAGER_URI = OPENBMC_BASE_URI + 'UserManager/' |
| 17 | NETWORK_MANAGER_URI = OPENBMC_BASE_URI + 'NetworkManager/' |
Rahul Maheshwari | f878590 | 2016-12-12 01:23:13 -0600 | [diff] [blame] | 18 | TIME_MANAGER_URI = OPENBMC_BASE_URI + 'TimeManager/' |
Prashanth Katti | e79c540 | 2017-06-08 07:40:49 -0500 | [diff] [blame] | 19 | XYZ_NETWORK_MANAGER = '/xyz/openbmc_project/network/' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 20 | |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 21 | # State Manager base variables. |
Rahul Maheshwari | 2f8de6c | 2017-01-17 07:00:22 -0600 | [diff] [blame] | 22 | BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot' |
| 23 | |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 24 | HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off' |
| 25 | HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On' |
Rahul Maheshwari | f7ead24 | 2017-02-14 01:59:42 -0600 | [diff] [blame] | 26 | HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 27 | HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off' |
| 28 | HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running' |
| 29 | |
| 30 | CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off' |
| 31 | CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On' |
| 32 | CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off' |
| 33 | CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On' |
| 34 | |
| 35 | # State Manager URI variables. |
George Keishing | 3c332e0 | 2017-02-23 22:10:18 -0600 | [diff] [blame] | 36 | BMC_STATE_URI = '/xyz/openbmc_project/state/bmc0/' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 37 | HOST_STATE_URI = '/xyz/openbmc_project/state/host0/' |
| 38 | CHASSIS_STATE_URI = '/xyz/openbmc_project/state/chassis0/' |
Sridevi Ramesh | 0a7c0aa | 2017-06-26 13:03:02 -0500 | [diff] [blame] | 39 | HOST_WATCHDOG_URI = '/xyz/openbmc_project/watchdog/host0/' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 40 | |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 41 | # Logging URI variables |
George Keishing | a71dd20 | 2017-02-24 00:49:40 -0600 | [diff] [blame] | 42 | BMC_LOGGING_URI = '/xyz/openbmc_project/logging/' |
| 43 | BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/' |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 44 | |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 45 | # Software manager version |
George Keishing | ff1e3ec | 2017-07-20 01:58:21 -0500 | [diff] [blame] | 46 | SOFTWARE_VERSION_URI = '/xyz/openbmc_project/software/' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 47 | ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active' |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 48 | READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready' |
| 49 | INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid' |
| 50 | ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating' |
| 51 | NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady' |
| 52 | FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed' |
| 53 | |
| 54 | SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation' |
| 55 | REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations' |
| 56 | REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active' |
| 57 | REQUESTED_NONE = REQUESTED_ACTIVATION + '.None' |
| 58 | |
| 59 | SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose' |
| 60 | VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host' |
| 61 | VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC' |
| 62 | VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 63 | |
George Keishing | c8166ed | 2017-02-24 03:53:38 -0600 | [diff] [blame] | 64 | # Inventory URI |
| 65 | HOST_INVENTORY_URI = '/xyz/openbmc_project/inventory/' |
| 66 | |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 67 | # Led URI variable |
| 68 | LED_GROUPS_URI = '/xyz/openbmc_project/led/groups/' |
Rahul Maheshwari | c8898e1 | 2017-03-30 23:30:01 -0500 | [diff] [blame] | 69 | LED_PHYSICAL_URI = '/xyz/openbmc_project/led/physical/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 70 | |
George Keishing | 1059b22 | 2017-07-21 13:24:43 -0500 | [diff] [blame] | 71 | # Host control URI variables. |
| 72 | CONTROL_HOST_URI = '/xyz/openbmc_project/control/host0/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 73 | |
George Keishing | 1c3a966 | 2017-08-11 10:16:36 -0500 | [diff] [blame] | 74 | # Power restore variables. |
| 75 | POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy' |
| 76 | CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.' |
| 77 | |
| 78 | RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore' |
| 79 | ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn' |
| 80 | ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff' |
| 81 | |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 82 | # Dump URI variable |
| 83 | DUMP_URI = '/xyz/openbmc_project/dump/' |
| 84 | DUMP_ENTRY_URI = DUMP_URI + 'entry/' |
| 85 | |
George Keishing | 2bd6fc0 | 2017-08-10 01:15:16 -0500 | [diff] [blame] | 86 | # Boot progress variables. |
| 87 | STATE_DBUS_BASE = 'xyz.openbmc_project.State.' |
| 88 | OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart' |
| 89 | OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified' |
| 90 | OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete' |
| 91 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 92 | ''' |
| 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 Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 100 | |
| 101 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 102 | def 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 Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 108 | l_suffix = ':' + l_https_port |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 109 | except: |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 110 | print "Environment variable HTTPS_PORT not set,\ |
| 111 | using default HTTPS port" |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 112 | return l_suffix |
| 113 | |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 114 | AUTH_SUFFIX = { |
| 115 | "https_port": [get_port_https()], |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | # Update the ':Port number' to this variable |
| 119 | AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0] |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 120 | |
| 121 | # Here contains a list of valid Properties bases on fru_type after a boot. |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 122 | INVENTORY_ITEMS = { |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 123 | "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 | } |