Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This example demonstrates executing commands on a remote machine |
| 3 | ... and getting their output and the return code. |
| 4 | ... |
| 5 | ... Notice how connections are handled as part of the suite setup and |
| 6 | ... teardown. This saves some time when executing several test cases. |
| 7 | |
| 8 | Resource ../lib/rest_client.robot |
| 9 | Resource ../lib/ipmi_client.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 10 | Resource ../lib/openbmc_ffdc.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 11 | Library ../data/model.py |
| 12 | |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 13 | Suite setup Setup The Suite |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 14 | Suite Teardown Close All Connections |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 15 | Test Teardown Log FFDC |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | |
| 17 | |
| 18 | *** Variables *** |
| 19 | ${model} = ${OPENBMC_MODEL} |
| 20 | |
| 21 | *** Test Cases *** |
| 22 | Verify connection |
| 23 | Execute new Command echo "hello" |
| 24 | Response Should Be Equal "hello" |
| 25 | |
| 26 | Execute ipmi BT capabilities command |
George Keishing | cac24c7 | 2016-09-23 04:44:19 -0500 | [diff] [blame] | 27 | [Tags] Execute_ipmi_BT_capabilities_command |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 28 | Run IPMI command 0x06 0x36 |
| 29 | response Should Be Equal " 01 40 40 0a 01" |
| 30 | |
| 31 | Execute Set Sensor boot count |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 32 | ${uri} = Get System component BootCount |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 33 | ${x} = Get Sensor Number ${uri} |
| 34 | |
| 35 | Run IPMI command 0x04 0x30 ${x} 0x01 0x00 0x35 0x00 0x00 0x00 0x00 0x00 0x00 |
| 36 | Read the Attribute ${uri} value |
| 37 | ${val} = convert to integer 53 |
| 38 | Response Should Be Equal ${val} |
| 39 | |
| 40 | Set Sensor Boot progress |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 41 | ${uri} = Get System component BootProgress |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 42 | ${x} = Get Sensor Number ${uri} |
| 43 | |
| 44 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x04 0x00 0x00 0x00 0x00 0x14 0x00 |
| 45 | Read the Attribute ${uri} value |
| 46 | Response Should Be Equal FW Progress, Baseboard Init |
| 47 | |
| 48 | Set Sensor Boot progress Longest string |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 49 | ${uri} = Get System component BootProgress |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 50 | ${x} = Get Sensor Number ${uri} |
| 51 | |
| 52 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x04 0x00 0x00 0x00 0x00 0x0e 0x00 |
| 53 | Read The Attribute ${uri} value |
| 54 | Response Should Be Equal FW Progress, Docking station attachment |
| 55 | |
| 56 | BootProgress sensor FW Hang unspecified Error |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 57 | ${uri} = Get System component BootProgress |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 58 | ${x} = Get Sensor Number ${uri} |
| 59 | |
| 60 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x02 0x00 0x00 0x00 0x00 0x00 0x00 |
| 61 | Read The Attribute ${uri} value |
| 62 | Response Should Be Equal FW Hang, Unspecified |
| 63 | |
| 64 | BootProgress fw hang state |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 65 | ${uri} = Get System component BootProgress |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 66 | ${x} = Get Sensor Number ${uri} |
| 67 | |
| 68 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00 |
| 69 | Read The Attribute ${uri} value |
| 70 | Response Should Be Equal POST Error, unknown |
| 71 | |
| 72 | OperatingSystemStatus Sensor boot completed progress |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 73 | ${uri} = Get System component OperatingSystemStatus |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 74 | ${x} = Get Sensor Number ${uri} |
| 75 | |
| 76 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00 |
| 77 | Read The Attribute ${uri} value |
| 78 | Response Should Be Equal Boot completed (00) |
| 79 | |
| 80 | OperatingSystemStatus Sensor progress |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 81 | ${uri} = Get System component OperatingSystemStatus |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 82 | ${x} = Get Sensor Number ${uri} |
| 83 | |
| 84 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x04 0x00 0x00 0x00 0x00 0x20 0x00 |
| 85 | Read The Attribute ${uri} value |
| 86 | Response Should Be Equal PXE boot completed |
| 87 | |
| 88 | OCC Active sensor on enabled |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 89 | ${uri} = Get System component OccStatus |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 90 | ${x} = Get Sensor Number ${uri} |
| 91 | |
| 92 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x20 0x00 |
| 93 | Read The Attribute ${uri} value |
| 94 | Response Should Be Equal Enabled |
| 95 | |
| 96 | OCC Active sensor on disabled |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 97 | ${uri} = Get System component OccStatus |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 98 | ${x} = Get Sensor Number ${uri} |
| 99 | |
| 100 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00 |
| 101 | Read The Attribute ${uri} value |
| 102 | Response Should Be Equal Disabled |
| 103 | |
| 104 | CPU Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 105 | |
| 106 | ${uri} = Get System component cpu |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 107 | ${x} = Get Inventory Sensor Number ${uri} |
| 108 | |
| 109 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x80 0x00 0x00 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 110 | Read The Attribute ${uri} present |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 111 | Response Should Be Equal True |
| 112 | |
| 113 | CPU not Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 114 | ${uri} = Get System component cpu |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 115 | ${x} = Get Inventory Sensor Number ${uri} |
| 116 | |
| 117 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x00 0x00 0x80 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 118 | Read The Attribute ${uri} present |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 119 | Response Should Be Equal False |
| 120 | |
| 121 | CPU fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 122 | ${uri} = Get System component cpu |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 123 | ${x} = Get Inventory Sensor Number ${uri} |
| 124 | |
| 125 | Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x01 0x00 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 126 | Read The Attribute ${uri} fault |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 127 | Response Should Be Equal True |
| 128 | |
| 129 | CPU no fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 130 | ${uri} = Get System component cpu |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 131 | ${x} = Get Inventory Sensor Number ${uri} |
| 132 | |
| 133 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 134 | Read The Attribute ${uri} fault |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 135 | Response Should Be Equal False |
| 136 | |
| 137 | core Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 138 | ${uri} = Get System component core11 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 139 | ${x} = Get Inventory Sensor Number ${uri} |
| 140 | |
| 141 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x80 0x00 0x00 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 142 | Read The Attribute ${uri} present |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 143 | Response Should Be Equal True |
| 144 | |
| 145 | core not Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 146 | ${uri} = Get System component core11 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 147 | ${x} = Get Inventory Sensor Number ${uri} |
| 148 | |
| 149 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x00 0x00 0x80 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 150 | Read The Attribute ${uri} present |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 151 | Response Should Be Equal False |
| 152 | |
| 153 | core fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 154 | ${uri} = Get System component core11 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 155 | ${x} = Get Inventory Sensor Number ${uri} |
| 156 | |
| 157 | Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x01 0x00 0x00 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 158 | Read The Attribute ${uri} fault |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 159 | Response Should Be Equal True |
| 160 | |
| 161 | core no fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 162 | ${uri} = Get System component core11 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 163 | ${x} = Get Inventory Sensor Number ${uri} |
| 164 | |
| 165 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x20 0x00 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 166 | Read The Attribute ${uri} fault |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 167 | Response Should Be Equal False |
| 168 | |
| 169 | DIMM3 Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 170 | ${uri} = Get System component dimm3 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 171 | ${x} = Get Inventory Sensor Number ${uri} |
| 172 | |
| 173 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x40 0x00 0x00 0x00 0x00 0x20 0x00 |
| 174 | Read The Attribute ${uri} present |
| 175 | Response Should Be Equal True |
| 176 | |
| 177 | DIMM3 not Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 178 | ${uri} = Get System component dimm3 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 179 | ${x} = Get Inventory Sensor Number ${uri} |
| 180 | |
| 181 | Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x00 0x40 0x00 0x00 0x20 0x00 |
| 182 | Read The Attribute ${uri} present |
| 183 | Response Should Be Equal False |
| 184 | |
| 185 | DIMM0 fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 186 | ${uri} = Get System component dimm0 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 187 | ${x} = Get Inventory Sensor Number ${uri} |
| 188 | |
| 189 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x20 0x00 |
| 190 | Read The Attribute ${uri} fault |
| 191 | Response Should Be Equal True |
| 192 | |
| 193 | DIMM0 no fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 194 | ${uri} = Get System component dimm0 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 195 | ${x} = Get Inventory Sensor Number ${uri} |
| 196 | |
| 197 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x20 0x00 |
| 198 | Read The Attribute ${uri} fault |
| 199 | Response Should Be Equal False |
| 200 | |
| 201 | Centaur0 Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 202 | ${uri} = Get System component membuf |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 203 | ${x} = Get Inventory Sensor Number ${uri} |
| 204 | |
| 205 | Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x40 0x00 0x00 0x00 0x00 0x20 0x00 |
| 206 | Read The Attribute ${uri} present |
| 207 | Response Should Be Equal True |
| 208 | |
| 209 | Centaur0 not Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 210 | ${uri} = Get System component membuf |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 211 | ${x} = Get Inventory Sensor Number ${uri} |
| 212 | |
| 213 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x20 0x00 |
| 214 | Read The Attribute ${uri} present |
| 215 | Response Should Be Equal False |
| 216 | |
| 217 | Centaur0 fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 218 | ${uri} = Get System component membuf |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 219 | ${x} = Get Inventory Sensor Number ${uri} |
| 220 | |
| 221 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x20 0x00 |
| 222 | Read The Attribute ${uri} fault |
| 223 | Response Should Be Equal True |
| 224 | |
| 225 | Centaur0 no fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 226 | ${uri} = Get System component membuf |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 227 | ${x} = Get Inventory Sensor Number ${uri} |
| 228 | |
| 229 | Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x20 0x00 |
| 230 | Read The Attribute ${uri} fault |
| 231 | Response Should Be Equal False |
| 232 | |
| 233 | System Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 234 | ${uri} = Get System component system |
| 235 | Read The Attribute ${uri} present |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 236 | Response Should Be Equal True |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 237 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 238 | System Fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 239 | ${uri} = Get System component system |
| 240 | Read The Attribute ${uri} fault |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 241 | Response Should Be Equal False |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 242 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 243 | Chassis Present |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 244 | ${uri} = Get System component chassis |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 245 | Read The Attribute /org/openbmc/inventory/system/chassis present |
| 246 | Response Should Be Equal True |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 247 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 248 | Chassis Fault |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 249 | ${uri} = Get System component chassis |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 250 | Read The Attribute /org/openbmc/inventory/system/chassis fault |
| 251 | Response Should Be Equal False |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 252 | |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 253 | io_board Present |
| 254 | ${uri} = Get System component io_board |
| 255 | Read The Attribute ${uri} present |
| 256 | Response Should Be Equal True |
| 257 | |
| 258 | io_board Fault |
| 259 | ${uri} = Get System component io_board |
| 260 | Read The Attribute ${uri} fault |
| 261 | Response Should Be Equal False |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 262 | |
| 263 | *** Keywords *** |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 264 | |
| 265 | Setup The Suite |
| 266 | |
| 267 | Open Connection And Log In |
| 268 | ${resp} = Read Properties /org/openbmc/enumerate |
| 269 | Set Suite Variable ${SYSTEM_INFO} ${resp} |
| 270 | log Dictionary ${resp} |
| 271 | |
| 272 | Get System component |
| 273 | [Arguments] ${type} |
| 274 | ${list} = Get Dictionary Keys ${SYSTEM_INFO} |
| 275 | ${resp} = Get Matches ${list} regexp=^.*[0-9a-z_].${type}[0-9]*$ |
| 276 | ${url} = Get From List ${resp} 0 |
| 277 | [return] ${url} |
| 278 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 279 | Execute new Command |
| 280 | [arguments] ${args} |
| 281 | ${output}= Execute Command ${args} |
| 282 | set test variable ${OUTPUT} "${output}" |
| 283 | |
| 284 | response Should Be Equal |
| 285 | [arguments] ${args} |
| 286 | Should Be Equal ${OUTPUT} ${args} |
| 287 | |
| 288 | Response Should Be Empty |
| 289 | Should Be Empty ${OUTPUT} |
| 290 | |
| 291 | Read the Attribute |
| 292 | [arguments] ${uri} ${parm} |
| 293 | ${output} = Read Attribute ${uri} ${parm} |
| 294 | set test variable ${OUTPUT} ${output} |
| 295 | |
| 296 | Get Sensor Number |
| 297 | [arguments] ${name} |
| 298 | ${x} = get sensor ${OPENBMC_MODEL} ${name} |
| 299 | [return] ${x} |
| 300 | |
| 301 | Get Inventory Sensor Number |
| 302 | [arguments] ${name} |
| 303 | ${x} = get inventory sensor ${OPENBMC_MODEL} ${name} |
| 304 | [return] ${x} |