| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 1 | *** Settings *** | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 2 | Documentation      Keywords for system test. | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 3 |  | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 4 | Library            ../lib/gen_robot_keyword.py | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 5 | Library            ../lib/gen_print.py | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 6 | Library            ../lib/gen_robot_print.py | 
| Steven Sombar | 07be374 | 2018-01-11 13:02:40 -0600 | [diff] [blame] | 7 | Resource           ../lib/boot_utils.robot | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 8 | Resource           ../extended/obmc_boot_test_resource.robot | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 9 | Resource           ../lib/utils.robot | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 10 | Resource           ../lib/state_manager.robot | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 11 | Resource           ../lib/rest_client.robot | 
| George Keishing | 3fc6313 | 2023-12-14 16:19:07 +0530 | [diff] [blame] | 12 | Resource           ../lib/htx_resource.robot | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 13 | Library            OperatingSystem | 
|  | 14 | Library            DateTime | 
|  | 15 |  | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 16 | *** Variables *** | 
|  | 17 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 18 | ${htx_log_dir_path}    ${EXECDIR}${/}logs${/} | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 19 |  | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 20 | # Error strings to check from dmesg. | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 21 | ${ERROR_REGEX}         error|GPU|NVRM|nvidia | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 22 |  | 
|  | 23 | # GPU specific error message from dmesg. | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 24 | ${ERROR_DBE_MSG}       (DBE) has been detected on GPU | 
|  | 25 |  | 
|  | 26 | # Inventory - List of I/O devices to collect for Inventory | 
|  | 27 | @{I/O}                 communication  disk  display  generic  input  multimedia | 
|  | 28 | ...                    network  printer  tape | 
|  | 29 |  | 
|  | 30 | # Inventory Paths of the JSON and YAML files | 
| Steven Sombar | a2f166c | 2017-08-02 14:22:45 -0500 | [diff] [blame] | 31 | ${json_tmp_file_path}  ${EXECDIR}/inventory_temp_file.json | 
|  | 32 | ${yaml_file_path}      ${EXECDIR}/inventory_temp_file.yaml | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 33 |  | 
|  | 34 |  | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 35 |  | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 36 | *** Keywords *** | 
|  | 37 |  | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 38 | Login To OS | 
|  | 39 | [Documentation]  Login to OS Host. | 
|  | 40 | [Arguments]  ${os_host}=${OS_HOST}  ${os_username}=${OS_USERNAME} | 
|  | 41 | ...          ${os_password}=${OS_PASSWORD} | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 42 | ...          ${alias_name}=os_connection | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 43 | # Description of argument(s): | 
|  | 44 | # os_host      IP address of the OS Host. | 
|  | 45 | # os_username  OS Host Login user name. | 
|  | 46 | # os_password  OS Host Login passwrd. | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 47 | # alias_name   Default OS SSH session connection alias name. | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 48 |  | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 49 | Ping Host  ${os_host} | 
| George Keishing | 664a016 | 2017-06-05 12:24:24 -0500 | [diff] [blame] | 50 | SSHLibrary.Open Connection  ${os_host}  alias=${alias_name} | 
| Steven Sombar | 06d5968 | 2019-02-18 11:03:42 -0600 | [diff] [blame] | 51 | SSHLibrary.Login  ${os_username}  ${os_password} | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 52 |  | 
|  | 53 |  | 
| George Keishing | 88366b3 | 2017-05-12 13:50:48 -0500 | [diff] [blame] | 54 | Tool Exist | 
|  | 55 | [Documentation]  Check whether given tool is installed on OS. | 
|  | 56 | [Arguments]  ${tool_name} | 
|  | 57 | # Description of argument(s): | 
|  | 58 | # tool_name   Tool name whose existence is to be checked. | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 59 |  | 
|  | 60 | ${output}  ${stderr}  ${rc}=  OS Execute Command  which ${tool_name} | 
| George Keishing | 88366b3 | 2017-05-12 13:50:48 -0500 | [diff] [blame] | 61 | Should Contain  ${output}  ${tool_name} | 
|  | 62 | ...  msg=Please install ${tool_name} tool. | 
| George Keishing | 91c852f | 2017-05-03 02:48:21 -0500 | [diff] [blame] | 63 |  | 
|  | 64 |  | 
|  | 65 | Boot To OS | 
|  | 66 | [Documentation]  Boot host OS. | 
|  | 67 | Run Key  OBMC Boot Test \ REST Power On | 
|  | 68 |  | 
|  | 69 |  | 
|  | 70 | Power Off Host | 
|  | 71 | [Documentation]  Power off host. | 
|  | 72 | Run Key  OBMC Boot Test \ REST Power Off | 
| George Keishing | 0fff68a | 2017-04-27 22:25:49 -0500 | [diff] [blame] | 73 |  | 
| George Keishing | 6fec3ab | 2017-05-05 10:45:08 -0500 | [diff] [blame] | 74 |  | 
|  | 75 | File Exist On OS | 
|  | 76 | [Documentation]  Check if the given file path exist on OS. | 
|  | 77 | [Arguments]  ${file_path} | 
|  | 78 | # Description of argument(s): | 
|  | 79 | # file_path   Absolute file path. | 
|  | 80 |  | 
|  | 81 | Login To OS | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 82 | ${out}  ${stderr}  ${rc}=  OS Execute Command  ls ${file_path} | 
| George Keishing | 6fec3ab | 2017-05-05 10:45:08 -0500 | [diff] [blame] | 83 | Log To Console  \n File Exist: ${out} | 
|  | 84 |  | 
| George Keishing | 8740a0c | 2017-05-13 07:19:16 -0500 | [diff] [blame] | 85 |  | 
|  | 86 | Is HTX Running | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 87 | [Documentation]  Return "True" if the HTX is running, "False" | 
|  | 88 | ...  otherwise. | 
|  | 89 |  | 
|  | 90 | # Example usage: | 
|  | 91 | #  ${status}=  Is HTX Running | 
|  | 92 | #  Run Keyword If  '${status}' == 'True'  Shutdown HTX Exerciser | 
|  | 93 |  | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 94 | ${status}  ${stderr}  ${rc}=  OS Execute Command | 
| Joy Onyerikwu | 4dbd499 | 2018-05-03 16:03:17 -0500 | [diff] [blame] | 95 | ...  htxcmdline -getstats  ignore_err=1 | 
|  | 96 | # Get HTX state | 
|  | 97 | # (idle, currently running, selected_mdt but not running). | 
|  | 98 | ${running}=  Set Variable If | 
|  | 99 | ...  "Currently running" in """${status}"""  ${True}  ${False} | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 100 |  | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 101 | RETURN  ${running} | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 102 |  | 
|  | 103 |  | 
|  | 104 | Write Log Data To File | 
|  | 105 | [Documentation]  Write log data to the logs directory. | 
|  | 106 | [Arguments]  ${data}=  ${log_file_path}= | 
|  | 107 | # Description of argument(s): | 
|  | 108 | # data            String buffer. | 
|  | 109 | # log_file_path   The log file path. | 
|  | 110 |  | 
|  | 111 | Create File  ${log_file_path}  ${data} | 
|  | 112 |  | 
|  | 113 |  | 
|  | 114 | Collect HTX Log Files | 
|  | 115 | [Documentation]  Collect status and error log files. | 
|  | 116 | # Collects the following files: | 
|  | 117 | # HTX error log file /tmp/htxerr | 
|  | 118 | # HTX status log file /tmp/htxstats | 
|  | 119 |  | 
|  | 120 | # Create logs directory and get current datetime. | 
|  | 121 | Create Directory  ${htx_log_dir_path} | 
|  | 122 | ${cur_datetime}=  Get Current Date  result_format=%Y%m%d%H%M%S%f | 
|  | 123 |  | 
|  | 124 | File Exist On OS  /tmp/htxerr | 
| Joy Onyerikwu | b992261 | 2018-05-14 12:36:57 -0500 | [diff] [blame] | 125 | ${htx_err}  ${std_err}  ${rc}=  OS Execute Command  cat /tmp/htxerr | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 126 | Write Log Data To File | 
|  | 127 | ...  ${htx_err}  ${htx_log_dir_path}/${OS_HOST}${cur_datetime}.htxerr | 
|  | 128 |  | 
|  | 129 | File Exist On OS  /tmp/htxstats | 
| Joy Onyerikwu | b992261 | 2018-05-14 12:36:57 -0500 | [diff] [blame] | 130 | ${htx_stats}  ${std_err}  ${rc}=  OS Execute Command | 
|  | 131 | ...  cat /tmp/htxstats | 
| George Keishing | 4ef2908 | 2017-05-13 05:01:23 -0500 | [diff] [blame] | 132 | Write Log Data To File | 
|  | 133 | ...  ${htx_stats}  ${htx_log_dir_path}/${OS_HOST}_${cur_datetime}.htxstats | 
|  | 134 |  | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 135 |  | 
|  | 136 | REST Upload File To BMC | 
|  | 137 | [Documentation]  Upload a file via REST to BMC. | 
|  | 138 |  | 
|  | 139 | # Generate 32 MB file size | 
|  | 140 | Run  dd if=/dev/zero of=dummyfile bs=1 count=0 seek=32MB | 
|  | 141 | OperatingSystem.File Should Exist  dummyfile | 
|  | 142 |  | 
|  | 143 | # Get the content of the file and upload to BMC | 
|  | 144 | ${image_data}=  OperatingSystem.Get Binary File  dummyfile | 
|  | 145 |  | 
|  | 146 | # Get REST session to BMC | 
|  | 147 | Initialize OpenBMC | 
|  | 148 |  | 
|  | 149 | # Create the REST payload headers and data | 
|  | 150 | ${data}=  Create Dictionary  data  ${image_data} | 
|  | 151 | ${headers}=  Create Dictionary  Content-Type=application/octet-stream | 
|  | 152 | ...  Accept=application/octet-stream | 
|  | 153 | Set To Dictionary  ${data}  headers  ${headers} | 
|  | 154 |  | 
|  | 155 | ${resp}=  Post Request  openbmc  /upload/image  &{data} | 
| George Keishing | 1c1bf1a | 2018-11-16 05:20:48 -0600 | [diff] [blame] | 156 | Should Be Equal As Strings  ${resp.status_code}  ${HTTP_BAD_REQUEST} | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 157 | ...  msg=Openbmc /upload/image failed. | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 158 |  | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 159 | # Take SSH connection to BMC and switch to BMC connection to perform | 
|  | 160 | # the task. | 
|  | 161 | &{bmc_connection_args}=  Create Dictionary  alias=bmc_connection | 
|  | 162 | Open Connection And Log In  &{bmc_connection_args} | 
|  | 163 |  | 
|  | 164 | # Currently OS SSH session is active, switch to BMC connection. | 
|  | 165 | Switch Connection  bmc_connection | 
| George Keishing | cff7aa0 | 2017-05-16 08:05:10 -0500 | [diff] [blame] | 166 |  | 
|  | 167 | # Switch back to OS SSH connection. | 
|  | 168 | Switch Connection  os_connection | 
|  | 169 |  | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 170 |  | 
| Steven Sombar | 1dc6fa7 | 2018-01-12 10:58:20 -0600 | [diff] [blame] | 171 | Get CPU Min Frequency Limit | 
|  | 172 | [Documentation]  Get CPU minimum assignable frequency. | 
|  | 173 |  | 
|  | 174 | # lscpu | grep min  returns | 
|  | 175 | # CPU min MHz:           1983.0000 | 
|  | 176 |  | 
|  | 177 | ${cmd}=  Catenate  lscpu | grep min  | tr -dc '0-9.\n' | 
|  | 178 | ${cpu_freq}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 179 | RETURN  ${cpu_freq} | 
| Steven Sombar | 1dc6fa7 | 2018-01-12 10:58:20 -0600 | [diff] [blame] | 180 |  | 
|  | 181 |  | 
|  | 182 | Get CPU Min Frequency | 
|  | 183 | [Documentation]  Get CPU assigned minimum frequency. | 
|  | 184 |  | 
|  | 185 | # ppc64_cpu --frequency -t 10  returns | 
|  | 186 | # min:    3.295 GHz (cpu 143) | 
|  | 187 | # max:    3.295 GHz (cpu 0) | 
|  | 188 | # avg:    3.295 GHz | 
|  | 189 |  | 
|  | 190 | ${cmd}=  Catenate  ppc64_cpu --frequency -t 10 | grep min | 
|  | 191 | ...  | cut -f 2 | cut -d ' ' -f 1 | tr -dc '0-9\n' | 
|  | 192 | ${cpu_freq}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 193 | RETURN  ${cpu_freq} | 
| Steven Sombar | 1dc6fa7 | 2018-01-12 10:58:20 -0600 | [diff] [blame] | 194 |  | 
|  | 195 |  | 
|  | 196 | Get CPU Max Frequency Limit | 
|  | 197 | [Documentation]  Get CPU maximum assignable frequency. | 
|  | 198 |  | 
|  | 199 | # lscpu | grep max  returns | 
|  | 200 | # CPU max MHz:           3300.0000 | 
|  | 201 |  | 
|  | 202 | ${cmd}=  Catenate  lscpu | grep max  | tr -dc '0-9.\n' | 
|  | 203 | ${cpu_freq}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 204 | RETURN  ${cpu_freq} | 
| Steven Sombar | 1dc6fa7 | 2018-01-12 10:58:20 -0600 | [diff] [blame] | 205 |  | 
|  | 206 |  | 
|  | 207 | Get CPU Max Frequency | 
|  | 208 | [Documentation]  Get CPU assigned maximum frequency. | 
|  | 209 |  | 
|  | 210 | # ppc64_cpu --frequency -t 10  returns | 
|  | 211 | # min:    3.295 GHz (cpu 143) | 
|  | 212 | # max:    3.295 GHz (cpu 0) | 
|  | 213 | # avg:    3.295 GHz | 
|  | 214 |  | 
|  | 215 | ${cmd}=  Catenate  ppc64_cpu --frequency -t 10 | grep max | 
|  | 216 | ...  | cut -f 2 | cut -d ' ' -f 1 | tr -dc '0-9\n' | 
|  | 217 | ${cpu_freq}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 218 | RETURN  ${cpu_freq} | 
| Steven Sombar | 1dc6fa7 | 2018-01-12 10:58:20 -0600 | [diff] [blame] | 219 |  | 
|  | 220 |  | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 221 | Get CPU Max Temperature | 
|  | 222 | [Documentation]  Get the highest CPU Temperature. | 
|  | 223 |  | 
|  | 224 | ${temperature_objs}=  Read Properties | 
|  | 225 | ...  ${SENSORS_URI}temperature/enumerate | 
|  | 226 | # Filter the dictionary to get just the CPU temperature info. | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 227 | ${cmd}=  Catenate  {k:v for k,v in $temperature_objs.items() | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 228 | ...  if re.match('${SENSORS_URI}temperature/p.*core.*temp', k)} | 
|  | 229 | ${cpu_temperatuture_objs}  Evaluate  ${cmd}  modules=re | 
|  | 230 | # Create a list of the CPU temperature values (current). | 
|  | 231 | ${cpu_temperatures}=  Evaluate | 
|  | 232 | ...  [ x['Value'] for x in $cpu_temperatuture_objs.values() ] | 
|  | 233 |  | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 234 | ${cpu_max_temp}  Evaluate  int(max(map(int, $cpu_temperatures))/1000) | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 235 | RETURN  ${cpu_max_temp} | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 236 |  | 
|  | 237 |  | 
|  | 238 | Get CPU Min Temperature | 
|  | 239 | [Documentation]  Get the  CPU Temperature. | 
|  | 240 |  | 
|  | 241 | ${temperature_objs}=  Read Properties | 
|  | 242 | ...  ${SENSORS_URI}temperature/enumerate | 
|  | 243 | # Filter the dictionary to get just the CPU temperature info. | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 244 | ${cmd}=  Catenate  {k:v for k,v in $temperature_objs.items() | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 245 | ...  if re.match('${SENSORS_URI}temperature/p.*core.*temp', k)} | 
|  | 246 | ${cpu_temperatuture_objs}=  Evaluate  ${cmd}  modules=re | 
|  | 247 | # Create a list of the CPU temperature values (current). | 
|  | 248 | ${cpu_temperatures}=  Evaluate | 
|  | 249 | ...  [ x['Value'] for x in $cpu_temperatuture_objs.values() ] | 
|  | 250 |  | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 251 | ${cpu_min_temp}  Evaluate  int(min(map(int, $cpu_temperatures))/1000) | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 252 | RETURN  ${cpu_min_temp} | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 253 |  | 
|  | 254 |  | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 255 | Check For Errors On OS Dmesg Log | 
|  | 256 | [Documentation]  Check if dmesg has nvidia errors logged. | 
|  | 257 |  | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 258 | ${dmesg_log}  ${stderr}  ${rc}=  OS Execute Command | 
|  | 259 | ...  dmesg | egrep '${ERROR_REGEX}' | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 260 | # To enable multiple string check. | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 261 | Should Not Contain  ${dmesg_log}  ${ERROR_DBE_MSG} | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 262 | ...  msg=OS dmesg shows ${ERROR_DBE_MSG}. | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 263 |  | 
|  | 264 |  | 
|  | 265 | Collect NVIDIA Log File | 
|  | 266 | [Documentation]  Collect ndivia-smi command output. | 
| George Keishing | 664a016 | 2017-06-05 12:24:24 -0500 | [diff] [blame] | 267 | [Arguments]  ${suffix} | 
|  | 268 | # Description of argument(s): | 
|  | 269 | # suffix     String name to append. | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 270 |  | 
|  | 271 | # Collects the output of ndivia-smi cmd output. | 
| Steven Sombar | e27cca9 | 2018-02-28 10:56:38 -0600 | [diff] [blame] | 272 | # +--------------------------------------------------------------------+ | 
|  | 273 | # | NVIDIA-SMI 361.89                 Driver Version: 361.89           | | 
|  | 274 | # |-------------------------------+----------------------+-------------+ | 
|  | 275 | # | GPU  Name        Persistence-M| Bus-Id        Disp.A | GPU     ECC | | 
|  | 276 | # | Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | Utiliz  err | | 
|  | 277 | # |===============================+======================+=============| | 
|  | 278 | # |   0  Tesla P100-SXM2...  On   | 0002:01:00.0     Off |           0 | | 
|  | 279 | # | N/A   25C    P0    35W / 300W |    931MiB / 16280MiB | 0%  Default | | 
|  | 280 | # +-------------------------------+----------------------+-------------+ | 
|  | 281 | # |   1  Tesla P100-SXM2...  On   | 0003:01:00.0     Off |           0 | | 
|  | 282 | # | N/A   26C    P0    40W / 300W |   1477MiB / 16280MiB | 0%  Default | | 
|  | 283 | # +-------------------------------+----------------------+-------------+ | 
|  | 284 | # |   2  Tesla P100-SXM2...  On   | 0006:01:00.0     Off |           0 | | 
|  | 285 | # | N/A   25C    P0    35W / 300W |    931MiB / 16280MiB | 0%  Default | | 
|  | 286 | # +-------------------------------+----------------------+-------------+ | 
|  | 287 | # |   3  Tesla P100-SXM2...  On   | 0007:01:00.0     Off |           0 | | 
|  | 288 | # | N/A   44C    P0   290W / 300W |    965MiB / 16280MiB | 0%  Default | | 
|  | 289 | # +-------------------------------+----------------------+-------------+ | 
|  | 290 | # +--------------------------------------------------------------------+ | 
|  | 291 | # | Processes:                                              GPU Memory | | 
|  | 292 | # |  GPU       PID  Type  Process name                      Usage      | | 
|  | 293 | # |====================================================================| | 
|  | 294 | # |    0     28459    C   hxenvidia                             929MiB | | 
|  | 295 | # |    1     28460    C   hxenvidia                            1475MiB | | 
|  | 296 | # |    2     28461    C   hxenvidia                             929MiB | | 
|  | 297 | # |    3     28462    C   hxenvidia                             963MiB | | 
|  | 298 | # +--------------------------------------------------------------------+ | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 299 |  | 
|  | 300 | # Create logs directory and get current datetime. | 
|  | 301 | Create Directory  ${htx_log_dir_path} | 
|  | 302 | ${cur_datetime}=  Get Current Date  result_format=%Y%m%d%H%M%S%f | 
|  | 303 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 304 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  nvidia-smi | 
| George Keishing | 4bbf520 | 2017-05-18 06:55:53 -0500 | [diff] [blame] | 305 | Write Log Data To File | 
| George Keishing | 664a016 | 2017-06-05 12:24:24 -0500 | [diff] [blame] | 306 | ...  ${nvidia_out} | 
|  | 307 | ...  ${htx_log_dir_path}/${OS_HOST}_${cur_datetime}.nvidia_${suffix} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 308 |  | 
|  | 309 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 310 | Get GPU Power Limit | 
|  | 311 | [Documentation]  Get NVIDIA GPU maximum permitted power draw. | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 312 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 313 | # nvidia-smi --query-gpu=power.limit --format=csv returns | 
|  | 314 | # power.limit [W] | 
|  | 315 | # 300.00 W | 
|  | 316 | # 300.00 W | 
|  | 317 | # 300.00 W | 
|  | 318 | # 300.00 W | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 319 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 320 | ${cmd}=  Catenate  nvidia-smi --query-gpu=power.limit | 
|  | 321 | ...  --format=csv | cut -f 1 -d ' ' | sort -n -u | tail -n 1 | 
|  | 322 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
|  | 323 | # Allow for sensor overshoot.  That is, max power reported for | 
|  | 324 | # a GPU could be a few watts above the limit. | 
|  | 325 | ${power_max}=  Evaluate  ${nvidia_out}+${7.00} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 326 | RETURN  ${power_max} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 327 |  | 
|  | 328 |  | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 329 | Get GPU Max Power | 
|  | 330 | [Documentation]  Get the maximum GPU power dissipation. | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 331 |  | 
|  | 332 | # nvidia-smi --query-gpu=power.draw --format=csv returns | 
|  | 333 | # power.draw [W] | 
|  | 334 | # 34.12 W | 
|  | 335 | # 34.40 W | 
|  | 336 | # 36.55 W | 
|  | 337 | # 36.05 W | 
|  | 338 |  | 
|  | 339 | ${cmd}=  Catenate  nvidia-smi --query-gpu=power.draw | 
|  | 340 | ...  --format=csv | cut -f 1 -d ' ' | sort -n -u | tail -n 1 | 
|  | 341 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 342 | RETURN  ${nvidia_out} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 343 |  | 
|  | 344 |  | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 345 | Get GPU Min Power | 
|  | 346 | [Documentation]  Return the minimum GPU power value as record by | 
|  | 347 | ...  nvidia-smi. | 
|  | 348 |  | 
|  | 349 | ${cmd}=  Catenate  nvidia-smi --query-gpu=power.draw --format=csv | | 
|  | 350 | ...  grep -v 'power.draw' | cut -f 1 -d ' ' | sort -n -u | head -1 | 
|  | 351 | ${gpu_min_power}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 352 | RETURN  ${gpu_min_power} | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 353 |  | 
|  | 354 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 355 | Get GPU Temperature Limit | 
|  | 356 | [Documentation]  Get NVIDIA GPU maximum permitted temperature. | 
|  | 357 |  | 
|  | 358 | # nvidia-smi -q -d TEMPERATURE  | grep "GPU Max" returns | 
|  | 359 | #    GPU Max Operating Temp      : 83 C | 
|  | 360 | #    GPU Max Operating Temp      : 83 C | 
|  | 361 | #    GPU Max Operating Temp      : 83 C | 
|  | 362 | #    GPU Max Operating Temp      : 83 C | 
|  | 363 |  | 
|  | 364 | ${cmd}=  Catenate  nvidia-smi -q -d TEMPERATURE  | grep "GPU Max" | 
|  | 365 | ...  | cut -f 2 -d ":" |  tr -dc '0-9\n' | sort -n -u | tail -n 1 | 
|  | 366 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 367 | RETURN  ${nvidia_out} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 368 |  | 
|  | 369 |  | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 370 | Get GPU Min Temperature | 
|  | 371 | [Documentation]  Get the minimum GPU temperature. | 
|  | 372 |  | 
|  | 373 | ${cmd}=  Catenate  nvidia-smi --query-gpu=temperature.gpu | 
|  | 374 | ...  --format=csv | grep -v 'temperature.gpu' | sort -n -u | head -1 | 
|  | 375 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 376 | RETURN  ${nvidia_out} | 
| Joy Onyerikwu | 26975f0 | 2018-05-08 12:55:12 -0500 | [diff] [blame] | 377 |  | 
|  | 378 |  | 
|  | 379 | Get GPU Max Temperature | 
|  | 380 | [Documentation]  Get the maximum GPU temperature. | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 381 |  | 
|  | 382 | # nvidia-smi --query-gpu=temperature.gpu --format=csv returns | 
|  | 383 | # 38 | 
|  | 384 | # 41 | 
|  | 385 | # 38 | 
|  | 386 | # 40 | 
|  | 387 |  | 
|  | 388 | ${cmd}=  Catenate  nvidia-smi --query-gpu=temperature.gpu | 
|  | 389 | ...  --format=csv | sort -n -u | tail -n 1 | 
|  | 390 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 391 | RETURN  ${nvidia_out} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 392 |  | 
|  | 393 |  | 
| Steven Sombar | c02dde8 | 2018-05-01 09:49:14 -0500 | [diff] [blame] | 394 | Get GPU Temperature Via REST | 
|  | 395 | [Documentation]  Return the temperature in degrees C of the warmest GPU | 
|  | 396 | ...  as reportd by REST. | 
|  | 397 |  | 
|  | 398 | # NOTE: This endpoint path is not defined until system has been powered-on. | 
|  | 399 | ${temperature_objs}=  Read Properties  ${SENSORS_URI}temperature/enumerate | 
|  | 400 | ...  timeout=30  quiet=1 | 
|  | 401 |  | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 402 | ${core_temperatures_list}=  Catenate  {k:v for k,v in $temperature_objs.items() | 
| Steven Sombar | c02dde8 | 2018-05-01 09:49:14 -0500 | [diff] [blame] | 403 | ...  if re.match('${SENSORS_URI}temperature/.*_core_temp', k)} | 
|  | 404 | ${gpu_temperature_objs_dict}=  Evaluate  ${core_temperatures_list}  modules=re | 
|  | 405 |  | 
|  | 406 | # Create a list containing all of the GPU temperatures. | 
|  | 407 | ${gpu_temperatures}=  Evaluate | 
|  | 408 | ...  [ x['Value'] for x in $gpu_temperature_objs_dict.values() ] | 
|  | 409 |  | 
|  | 410 | # Find the max temperature value and divide by 1000 to get just the integer | 
|  | 411 | # portion. | 
| George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 412 | ${max_gpu_temperature}=  Evaluate | 
|  | 413 | ...  int(max(map(int, $gpu_temperatures))/1000) | 
| Steven Sombar | c02dde8 | 2018-05-01 09:49:14 -0500 | [diff] [blame] | 414 |  | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 415 | RETURN  ${max_gpu_temperature} | 
| Steven Sombar | c02dde8 | 2018-05-01 09:49:14 -0500 | [diff] [blame] | 416 |  | 
|  | 417 |  | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 418 | Get GPU Clock Limit | 
|  | 419 | [Documentation]  Get NVIDIA GPU maximum permitted graphics clock. | 
|  | 420 |  | 
|  | 421 | # nvidia-smi --query-gpu=clocks.max.gr --format=csv  returns | 
|  | 422 | # 1530 MHz | 
|  | 423 | # 1530 MHz | 
|  | 424 | # 1530 MHz | 
|  | 425 | # 1530 MHz | 
|  | 426 |  | 
|  | 427 | ${cmd}=  Catenate  nvidia-smi --query-gpu=clocks.max.gr | 
|  | 428 | ...  --format=csv | cut -f 1 -d ' ' |  sort -n -u | tail -n 1 | 
|  | 429 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 430 | RETURN  ${nvidia_out} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 431 |  | 
|  | 432 |  | 
|  | 433 | Get GPU Clock | 
|  | 434 | [Documentation]  Get the highest assigned value of the GPU graphics clock. | 
|  | 435 |  | 
|  | 436 | # nvidia-smi --query-gpu=clocks.gr --format=csv  returns | 
|  | 437 | # 1230 MHz | 
|  | 438 | # 1230 MHz | 
|  | 439 | # 135 MHz | 
|  | 440 | # 150 MHz | 
|  | 441 |  | 
|  | 442 | ${cmd}=  Catenate  nvidia-smi --query-gpu=clocks.gr | 
|  | 443 | ...  --format=csv | cut -f 1 -d ' ' | sort -n -u | tail -n 1 | 
|  | 444 | ${nvidia_out}  ${stderr}  ${rc}=  OS Execute Command  ${cmd} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 445 | RETURN  ${nvidia_out} | 
| Steven Sombar | 0278b13 | 2018-01-09 14:41:32 -0600 | [diff] [blame] | 446 |  | 
|  | 447 |  | 
|  | 448 | Count GPUs From BMC | 
|  | 449 | [Documentation]  Determine number of GPUs from the BMC.  Hostboot | 
|  | 450 | ...  needs to have been run previously because the BMC gets GPU data | 
|  | 451 | ...  from Hostboot. | 
|  | 452 |  | 
|  | 453 | # Example of gv* endpoint data: | 
|  | 454 | # "/xyz/openbmc_project/inventory/system/chassis/motherboard/gv100card0": { | 
|  | 455 | #     "Functional": 1, | 
|  | 456 | #     "Present": 1, | 
|  | 457 | #     "PrettyName": "" | 
|  | 458 | # }, | 
|  | 459 |  | 
|  | 460 | ${num_bmc_gpus}=  Set Variable  ${0} | 
|  | 461 |  | 
|  | 462 | ${gpu_list}=  Get Endpoint Paths | 
|  | 463 | ...  ${HOST_INVENTORY_URI}system/chassis/motherboard  gv* | 
|  | 464 |  | 
| Sushil Singh | 552a3c6 | 2019-06-13 05:34:18 -0500 | [diff] [blame] | 465 | FOR  ${gpu_uri}  IN  @{gpu_list} | 
|  | 466 | ${present}=  Read Attribute  ${gpu_uri}  Present | 
|  | 467 | ${state}=  Read Attribute  ${gpu_uri}  Functional | 
|  | 468 | Rpvars  gpu_uri  present  state | 
|  | 469 | ${num_bmc_gpus}=  Run Keyword If  ${present} and ${state} | 
|  | 470 | ...  Evaluate  ${num_bmc_gpus}+${1} | 
|  | 471 | END | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 472 | RETURN  ${num_bmc_gpus} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 473 |  | 
|  | 474 |  | 
|  | 475 | Create Default MDT Profile | 
|  | 476 | [Documentation]  Create default mdt.bu profile and run. | 
|  | 477 |  | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 478 | Print Timen  Create HTX mdt profile. | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 479 |  | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 480 | ${profile}  ${stderr}  ${rc}=  OS Execute Command | 
|  | 481 | ...  htxcmdline -createmdt | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 482 | Printn  ${profile} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 483 | Should Contain  ${profile}  mdts are created successfully | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 484 | ...  msg=Create MDT profile failed. response=${profile} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 485 |  | 
|  | 486 |  | 
|  | 487 | Run MDT Profile | 
|  | 488 | [Documentation]  Load user pre-defined MDT profile. | 
| Daniel Gonzalez | bfd8aff | 2018-03-27 10:20:37 -0600 | [diff] [blame] | 489 | [Arguments]  ${HTX_MDT_PROFILE}=${HTX_MDT_PROFILE} | 
|  | 490 | # Description of argument(s): | 
|  | 491 | # HTX_MDT_PROFILE  MDT profile to be executed (e.g. "mdt.bu"). | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 492 |  | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 493 | Print Timen  Start HTX mdt profile execution. | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 494 | ${htx_run}  ${stderr}  ${rc}=  OS Execute Command | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 495 | ...  htxcmdline -run -mdt ${HTX_MDT_PROFILE} | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 496 | Printn  ${htx_run} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 497 | Should Contain  ${htx_run}  Activated | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 498 | ...  msg=htxcmdline run mdt did not return "Activated" status. | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 499 |  | 
|  | 500 |  | 
|  | 501 | Check HTX Run Status | 
|  | 502 | [Documentation]  Get HTX exerciser status and check for error. | 
| Steven Sombar | 9d5fc2d | 2018-04-30 09:09:13 -0500 | [diff] [blame] | 503 | [Arguments]  ${sleep_time}=${0} | 
| Joy Onyerikwu | a807417 | 2018-04-20 07:08:19 -0500 | [diff] [blame] | 504 |  | 
|  | 505 | # Description of argument(s): | 
| Steven Sombar | 5684527 | 2018-07-18 14:32:01 -0500 | [diff] [blame] | 506 | # sleep_time  The amount of time to sleep after checking status, | 
|  | 507 | #             for example "3s" or "2m". | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 508 |  | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 509 | Print Timen  Check HTX mdt Status and error. | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 510 | ${htx_status}  ${stderr}  ${rc}=  OS Execute Command | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 511 | ...  htxcmdline -status -mdt ${HTX_MDT_PROFILE} | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 512 | Printn  ${htx_status} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 513 |  | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 514 | ${htx_errlog}  ${stderr}  ${rc}=  OS Execute Command | 
|  | 515 | ...  htxcmdline -geterrlog | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 516 | Printn  ${htx_errlog} | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 517 |  | 
| George Keishing | 2d2df51 | 2021-04-12 10:11:15 -0500 | [diff] [blame] | 518 | Should Contain  ${htx_errlog}  file </tmp/htx/htxerr> is empty | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 519 | ...  msg=HTX geterrorlog was not empty. | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 520 |  | 
| Steven Sombar | 5684527 | 2018-07-18 14:32:01 -0500 | [diff] [blame] | 521 | Return From Keyword If  "${sleep_time}" == "${0}" | 
| Joy Onyerikwu | a807417 | 2018-04-20 07:08:19 -0500 | [diff] [blame] | 522 |  | 
| Steven Sombar | 5684527 | 2018-07-18 14:32:01 -0500 | [diff] [blame] | 523 | Run Key U  Sleep \ ${sleep_time} | 
| Joy Onyerikwu | a807417 | 2018-04-20 07:08:19 -0500 | [diff] [blame] | 524 |  | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 525 |  | 
|  | 526 | Shutdown HTX Exerciser | 
|  | 527 | [Documentation]  Shut down HTX exerciser run. | 
|  | 528 |  | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 529 | Print Timen  Shutdown HTX Run | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 530 | ${shutdown}  ${stderr}  ${rc}=  OS Execute Command | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 531 | ...  htxcmdline -shutdown -mdt ${HTX_MDT_PROFILE} | 
| Steven Sombar | e27cca9 | 2018-02-28 10:56:38 -0600 | [diff] [blame] | 532 |  | 
| Steven Sombar | 021cbc4 | 2019-03-28 11:49:21 -0500 | [diff] [blame] | 533 | Printn  ${shutdown} | 
|  | 534 |  | 
|  | 535 | ${down1}=  Evaluate  'shutdown successfully' in $shutdown | 
|  | 536 | Return From Keyword If  '${down1}' == 'True' | 
|  | 537 | ${down2}=  Evaluate  'No MDT is currently running' in $shutdown | 
|  | 538 | Return From Keyword If  '${down2}' == 'True' | 
|  | 539 | Fail  msg=Shutdown returned unexpected message. | 
| Steven Sombar | e27cca9 | 2018-02-28 10:56:38 -0600 | [diff] [blame] | 540 |  | 
| George Keishing | bbfec9e | 2017-05-17 10:47:21 -0500 | [diff] [blame] | 541 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 542 | Create JSON Inventory File | 
|  | 543 | [Documentation]  Create a JSON inventory file, and make a YAML copy. | 
|  | 544 | [Arguments]  ${json_file_path} | 
|  | 545 | # Description of argument: | 
| George Keishing | 9bfdf8a | 2024-04-19 11:09:07 +0530 | [diff] [blame] | 546 | # json_file_path  Where the inventory file is written to. | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 547 |  | 
|  | 548 | Login To OS | 
|  | 549 | Compile Inventory JSON | 
|  | 550 | Run  json2yaml ${json_tmp_file_path} ${yaml_file_path} | 
|  | 551 | # Format to JSON pretty print to file. | 
|  | 552 | Run  python -m json.tool ${json_tmp_file_path} > ${json_file_path} | 
|  | 553 | OperatingSystem.File Should Exist  ${json_file_path} | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 554 | ...  msg=File ${json_file_path} does not exist. | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 555 |  | 
|  | 556 |  | 
|  | 557 | Compile Inventory JSON | 
|  | 558 | [Documentation]  Compile the Inventory into a JSON file. | 
|  | 559 | Create File  ${json_tmp_file_path} | 
|  | 560 | Write New JSON List  ${json_tmp_file_path}  Inventory | 
|  | 561 | Retrieve HW Info And Write  processor  ${json_tmp_file_path} | 
|  | 562 | Retrieve HW Info And Write  memory  ${json_tmp_file_path} | 
|  | 563 | Retrieve HW Info And Write List  ${I/O}  ${json_tmp_file_path}  I/O  last | 
|  | 564 | Close New JSON List  ${json_tmp_file_path} | 
|  | 565 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 566 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 567 | Write New JSON List | 
|  | 568 | [Documentation]  Start a new JSON list element in file. | 
|  | 569 | [Arguments]  ${json_tmp_file_path}  ${json_field_name} | 
|  | 570 | # Description of argument(s): | 
|  | 571 | # json_tmp_file_path   Name of file to write to. | 
|  | 572 | # json_field_name      Name to give json list element. | 
|  | 573 | Append to File  ${json_tmp_file_path}  { "${json_field_name}" : [ | 
|  | 574 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 575 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 576 | Close New JSON List | 
|  | 577 | [Documentation]  Close JSON list element in file. | 
|  | 578 | [Arguments]  ${json_tmp_file_path} | 
|  | 579 | # Description of argument(s): | 
|  | 580 | # json_tmp_file_path  Path of file to write to. | 
|  | 581 | Append to File  ${json_tmp_file_path}  ]} | 
|  | 582 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 583 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 584 | Retrieve HW Info And Write | 
|  | 585 | [Documentation]  Retrieve and write info, add a comma if not last item. | 
|  | 586 | [Arguments]  ${class}  ${json_tmp_file_path}  ${last}=false | 
|  | 587 | # Description of argument(s): | 
|  | 588 | # class               Device class to retrieve with lshw. | 
|  | 589 | # json_tmp_file_path  Path of file to write to. | 
|  | 590 | # last                Is this the last element in the parent JSON? | 
|  | 591 | Write New JSON List  ${json_tmp_file_path}  ${class} | 
| George Keishing | fb218a1 | 2018-11-28 11:20:42 -0600 | [diff] [blame] | 592 | ${output}=  Retrieve Hardware Info  ${class} | 
|  | 593 | ${output}=  Clean Up String  ${output} | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 594 | Run Keyword if  ${output.__class__ is not type(None)} | 
|  | 595 | ...  Append To File  ${json_tmp_file_path}  ${output} | 
|  | 596 | Close New JSON List  ${json_tmp_file_path} | 
|  | 597 | Run Keyword if  '${last}' == 'false' | 
|  | 598 | ...  Append to File  ${json_tmp_file_path}  , | 
|  | 599 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 600 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 601 | Retrieve HW Info And Write List | 
|  | 602 | [Documentation]  Does a Retrieve/Write with a list of classes and | 
|  | 603 | ...              encapsulates them into one large JSON element. | 
|  | 604 | [Arguments]  ${list}  ${json_tmp_file_path}  ${json_field_name} | 
|  | 605 | ...          ${last}=false | 
|  | 606 | # Description of argument(s): | 
|  | 607 | # list                 The list of devices classes to retrieve with lshw. | 
|  | 608 | # json_tmp_file_path   Path of file to write to. | 
|  | 609 | # json_field_name      Name of the JSON element to encapsulate this list. | 
|  | 610 | # last                 Is this the last element in the parent JSON? | 
|  | 611 | Write New JSON List  ${json_tmp_file_path}  ${json_field_name} | 
| Sushil Singh | 552a3c6 | 2019-06-13 05:34:18 -0500 | [diff] [blame] | 612 | FOR  ${class}  IN  @{list} | 
|  | 613 | ${tail}  Get From List  ${list}  -1 | 
|  | 614 | Run Keyword if  '${tail}' == '${class}' | 
|  | 615 | ...  Retrieve HW Info And Write  ${class}  ${json_tmp_file_path}  true | 
|  | 616 | ...  ELSE  Retrieve HW Info And Write  ${class}  ${json_tmp_file_path} | 
|  | 617 | END | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 618 | Close New JSON List  ${json_tmp_file_path} | 
|  | 619 | Run Keyword if  '${last}' == 'false' | 
|  | 620 | ...  Append to File  ${json_tmp_file_path}  , | 
|  | 621 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 622 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 623 | Retrieve Hardware Info | 
|  | 624 | [Documentation]  Retrieves the lshw output of the device class as JSON. | 
|  | 625 | [Arguments]  ${class} | 
|  | 626 | # Description of argument(s): | 
|  | 627 | # class  Device class to retrieve with lshw. | 
| Joy Onyerikwu | f73a62a | 2018-05-02 10:50:20 -0500 | [diff] [blame] | 628 | ${output}  ${stderr}  ${rc}=  OS Execute Command  lshw -c ${class} -json | 
| George Keishing | fb218a1 | 2018-11-28 11:20:42 -0600 | [diff] [blame] | 629 | ${output}=  Verify JSON string  ${output} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 630 | RETURN  ${output} | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 631 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 632 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 633 | Verify JSON String | 
| Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 634 | [Documentation]  Ensure the JSON string content is separated by commas. | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 635 | [Arguments]  ${unver_string} | 
|  | 636 | # Description of argument(s): | 
|  | 637 | # unver_string  JSON String we will be checking for lshw comma errors. | 
| George Keishing | fb218a1 | 2018-11-28 11:20:42 -0600 | [diff] [blame] | 638 | ${unver_string}=  Convert to String  ${unver_string} | 
|  | 639 | ${ver_string}=  Replace String Using Regexp  ${unver_string}  }\\s*{  },{ | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 640 | RETURN  ${ver_string} | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 641 |  | 
| Steven Sombar | 3ecb689 | 2018-03-23 11:41:08 -0500 | [diff] [blame] | 642 |  | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 643 | Clean Up String | 
|  | 644 | [Documentation]  Remove extra whitespace and trailing commas. | 
|  | 645 | [Arguments]  ${dirty_string} | 
|  | 646 | # Description of argument(s): | 
|  | 647 | # dirty_string  String that will be space stripped and have comma removed. | 
| George Keishing | fb218a1 | 2018-11-28 11:20:42 -0600 | [diff] [blame] | 648 | ${clean_string}=  Strip String  ${dirty_string} | 
|  | 649 | ${last_char}=  Get Substring  ${clean_string}  -1 | 
|  | 650 | ${trimmed_string}=  Get Substring  ${clean_string}  0  -1 | 
|  | 651 | ${clean_string}=  Set Variable If  '${last_char}' == ',' | 
| Steven Sombar | 130a04f | 2017-07-16 10:02:37 -0500 | [diff] [blame] | 652 | ...  ${trimmed_string}  ${clean_string} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 653 | RETURN  ${clean_string} | 
| Joy Onyerikwu | 4cb8c0a | 2018-04-11 18:05:13 -0500 | [diff] [blame] | 654 |  | 
|  | 655 |  | 
|  | 656 | Get OS Network Interface Names | 
|  | 657 | [Documentation]  Return a list of interface names on the OS. | 
|  | 658 |  | 
|  | 659 | ${stdout}  ${stderr}  ${rc}=  OS Execute Command  ls /sys/class/net | 
|  | 660 | @{interface_names}=  Split String  ${stdout} | 
| George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 661 | RETURN  @{interface_names} | 
| Daniel Gonzalez | bfd8aff | 2018-03-27 10:20:37 -0600 | [diff] [blame] | 662 |  | 
|  | 663 |  | 
|  | 664 | Run Soft Bootme | 
|  | 665 | [Documentation]  Run a soft bootme for a period of an hour. | 
|  | 666 | [Arguments]  ${bootme_period}=3 | 
|  | 667 | # Description of argument(s): | 
|  | 668 | # bootme_time     Bootme period to be rebooting the system. | 
|  | 669 |  | 
|  | 670 | ${output}  ${stderr}  ${rc}=  OS Execute Command | 
|  | 671 | ...  htxcmdline -bootme on mode:soft period:${bootme_period} | 
|  | 672 | Should Contain  ${output}  bootme on is completed successfully | 
|  | 673 |  | 
|  | 674 |  | 
|  | 675 | Shutdown Bootme | 
|  | 676 | [Documentation]  Stop the bootme process. | 
|  | 677 |  | 
|  | 678 | ${output}  ${stderr}  ${rc}=  OS Execute Command  htxcmdline -bootme off | 
| Steven Sombar | 5684527 | 2018-07-18 14:32:01 -0500 | [diff] [blame] | 679 | Should Contain  ${output}  bootme off is completed successfully |