Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This is a resource file of OpenBMC ASMI It contains the |
| 3 | ... user-defined keywords which are available to all gui modules |
| 4 | |
| 5 | Library String |
| 6 | Library Collections |
| 7 | Library DateTime |
| 8 | Library XvfbRobot |
| 9 | Library OperatingSystem |
| 10 | Library Selenium2Library 120 120 |
| 11 | Library AngularJSLibrary |
| 12 | Library SSHLibrary 30 Seconds |
| 13 | Library Process |
| 14 | Library supporting_libs.py |
Rahul Maheshwari | 439ce71 | 2019-03-07 03:23:13 -0600 | [diff] [blame] | 15 | Library ../../lib/gen_print.py |
| 16 | Library ../../lib/gen_robot_print.py |
| 17 | Library ../../lib/gen_valid.py |
| 18 | Library ../../lib/gen_robot_ssh.py |
| 19 | Library ../../lib/bmc_ssh_utils.py |
| 20 | Resource ../../lib/resource.robot |
| 21 | Resource ../../lib/rest_client.robot |
| 22 | Resource ../../lib/state_manager.robot |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 23 | Variables ../data/resource_variables.py |
| 24 | |
| 25 | *** Variables *** |
Sivas SRR | c70e9ae | 2018-02-14 23:53:49 -0600 | [diff] [blame] | 26 | ${obmc_gui_url} https://${OPENBMC_HOST} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 27 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 28 | ${obmc_PowerOff_state} Off |
| 29 | ${obmc_PowerRunning_state} Running |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 30 | ${obmc_PowerStandby_state} Standby |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 31 | |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 32 | # Default GUI broswer and mode is set to "Firefox" and "headless" |
| 33 | # respectively here. |
| 34 | ${GUI_BROWSER} ff |
| 35 | ${GUI_MODE} headless |
| 36 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 37 | *** Keywords *** |
| 38 | Launch OpenBMC GUI Browser |
| 39 | [Documentation] Launch the OpenBMC GUI URL on a browser. |
| 40 | # By default uses headless mode, otherwise, the GUI browser. |
| 41 | |
| 42 | ${op_system}= Get Operating System |
| 43 | Run Keyword If '${op_system}' == 'windows' |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 44 | ... Launch Header Browser |
| 45 | ... ELSE IF '${op_system}' == 'Darwin' |
| 46 | # Mac OS is currently having some issues with firefox, so using |
| 47 | # chrome. |
| 48 | # TODO: Need to add support for other browsers. Issue #1280. |
| 49 | ... Launch Header Browser chrome |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 50 | ... ELSE |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 51 | # Linux OS. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 52 | ... Launch Headless Browser |
| 53 | |
| 54 | Get Operating System |
| 55 | [Documentation] Identify platform/OS. |
| 56 | |
| 57 | ${curdir_lower_case}= Convert To Lowercase ${CURDIR} |
| 58 | ${windows_platform}= Run Keyword And Return Status |
| 59 | ... Should Contain ${curdir_lower_case} c:\ |
| 60 | ${op_system}= Run Keyword If '${windows_platform}' == 'True' |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 61 | ... Set Variable windows |
| 62 | ... ELSE |
| 63 | ... Run uname |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 64 | [Return] ${op_system} |
| 65 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 66 | Launch Header Browser |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 67 | [Documentation] Open the browser with the URL and |
| 68 | ... login on windows platform. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 69 | [Arguments] ${browser_type}=${GUI_BROWSER} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 70 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 71 | # Description of argument(s): |
| 72 | # browser_type Type of browser (e.g. "firefox", "chrome", etc.). |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 73 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 74 | ${BROWSER_ID}= Open Browser ${obmc_gui_url} ${browser_type} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 75 | Maximize Browser Window |
| 76 | Set Global Variable ${BROWSER_ID} |
| 77 | |
| 78 | Launch Headless Browser |
| 79 | [Documentation] Launch headless browser. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 80 | [Arguments] ${URL}=${obmc_gui_url} ${browser}=${GUI_BROWSER} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 81 | |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 82 | # Description of argument(s): |
| 83 | # URL Openbmc GUI URL to be open |
| 84 | # (e.g. https://openbmc-test.mybluemix.net/#/login). |
| 85 | # browser Browser to open given URL in headless way |
| 86 | # (e.g. gc for google chrome, ff for firefox). |
| 87 | |
| 88 | Start Virtual Display |
| 89 | ${browser_ID}= Open Browser ${URL} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 90 | Set Window Size 1920 1080 |
| 91 | |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 92 | [Return] ${browser_ID} |
| 93 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 94 | Login OpenBMC GUI |
| 95 | [Documentation] Perform login to open BMC GUI. |
| 96 | [Arguments] ${username}=${OPENBMC_USERNAME} |
| 97 | ... ${password}=${OPENBMC_PASSWORD} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 98 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 99 | # Description of argument(s): |
| 100 | # username The username. |
| 101 | # password The password. |
| 102 | |
Sivas SRR | c70e9ae | 2018-02-14 23:53:49 -0600 | [diff] [blame] | 103 | Go To ${obmc_gui_url} |
Sivas SRR | a692535 | 2018-02-19 08:59:03 -0600 | [diff] [blame] | 104 | Wait Until Element Is Enabled ${xpath_textbox_hostname} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 105 | Input Text ${xpath_textbox_hostname} ${OPENBMC_HOST} |
| 106 | Input Text ${xpath_textbox_username} ${username} |
| 107 | Input Password ${xpath_textbox_password} ${password} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 108 | Click Element login__submit |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 109 | Wait Until Element Is Enabled ${xpath_button_logout} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 110 | Page Should Contain Server information |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 111 | |
| 112 | |
| 113 | Test Setup Execution |
| 114 | [Documentation] Verify all the preconditions to be tested. |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 115 | [Arguments] ${obmc_test_setup_state}=${OBMC_PowerOff_state} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 116 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 117 | # Description of argument(s): |
| 118 | # obmc_test_setup The OpenBMC required state. |
| 119 | |
| 120 | Rprint Timen ${TEST NAME} ==> [STARTED] |
Rahul Maheshwari | 7872f05 | 2018-06-19 01:12:34 -0500 | [diff] [blame] | 121 | Launch Browser And Login OpenBMC GUI |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 122 | Log To Console Verifying the system state and stablity... |
Rahul Maheshwari | 8b5b5a4 | 2018-11-30 01:41:35 -0600 | [diff] [blame] | 123 | |
| 124 | Click Button ${xpath_select_server_power} |
| 125 | ${obmc_current_state}= Get Text ${xpath_power_indicator} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 126 | Rpvars obmc_current_state |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 127 | |
| 128 | ${obmc_state_status}= Run Keyword And Return Status |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 129 | ... Should Contain ${obmc_current_state} ${obmc_test_setup_state} |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 130 | Return From Keyword If '${obmc_state_status}' == 'True' |
| 131 | |
| 132 | ${obmc_standby_state}= Run Keyword And Return Status |
| 133 | ... Should Contain ${obmc_current_state} ${obmc_standby_state} |
| 134 | |
| 135 | Run Keyword If '${obmc_standby_state}' == 'True' |
| 136 | ... Reboot OpenBMC |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 137 | Run Keyword If '${obmc_test_setup_state}' == '${obmc_PowerRunning_state}' |
Rahul Maheshwari | 1ea8fec | 2018-12-07 12:42:04 -0600 | [diff] [blame] | 138 | ... Run Keywords Power On OpenBMC AND |
| 139 | ... Wait Until Keyword Succeeds 10 min 60 sec Is Host Running |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 140 | Run Keyword If '${obmc_test_setup_state}' == '${obmc_PowerOff_state}' |
| 141 | ... Power Off OpenBMC |
| 142 | |
| 143 | Power Off OpenBMC |
| 144 | [Documentation] Power off the OBMC system. |
| 145 | |
| 146 | Log To Console Power Off OpenBMC... |
| 147 | Click Element ${xpath_display_server_power_status} |
| 148 | Execute JavaScript window.scrollTo(0, document.body.scrollHeight) |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 149 | Click Button ${xpath_select_button_orderly_shutdown} |
| 150 | Click Yes Button ${xpath_select_button_orderly_shutdown_yes} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 151 | Wait OpenBMC To Become Stable ${obmc_off_state} |
| 152 | |
| 153 | Power On OpenBMC |
| 154 | [Documentation] Power on the OBMC system. |
| 155 | |
| 156 | Log To Console Power On OpenBMC... |
| 157 | Click Element ${xpath_display_server_power_status} |
| 158 | Click Button ${xpath_select_button_power_on } |
| 159 | Wait OpenBMC To Become Stable ${obmc_running_state} |
| 160 | |
| 161 | Reboot OpenBMC |
| 162 | [Documentation] Rebooting the OBMC system. |
| 163 | |
| 164 | Log To Console Reboting the OpenBMC... |
| 165 | Click Element ${xpath_display_server_power_status} |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 166 | Click Button ${xpath_select_button_orderly_shutdown} |
| 167 | Click Yes Button ${xpath_select_button_orderly_shutdown_yes} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 168 | Wait OpenBMC To Become Stable ${obmc_off_state} |
| 169 | |
| 170 | Wait OpenBMC To Become Stable |
| 171 | [Documentation] Power off the OBMC. |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 172 | [Arguments] ${obmc_expected_state} ${retry_time}=15 min |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 173 | ... ${retry_interval}=45 sec |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 174 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 175 | # Description of argument(s): |
| 176 | # OBMC_expected_state The OBMC state which is required for test. |
| 177 | # retry_time Total wait time after executing the command. |
| 178 | # retry_interval Time interval for to keep checking with in the |
| 179 | # above total wait time. |
| 180 | |
| 181 | Wait Until Keyword Succeeds ${retry_time} ${retry_interval} |
| 182 | ... Wait Until Element Contains ${xpath_display_server_power_status} |
| 183 | ... ${obmc_expected_state} |
| 184 | Wait Until Keyword Succeeds ${retry_time} ${retry_interval} |
| 185 | ... Verify OpenBMC State From REST Interface ${obmc_expected_state} |
| 186 | |
| 187 | Verify OpenBMC State From REST Interface |
| 188 | [Documentation] Verify system state from REST Interface. |
| 189 | [Arguments] ${obmc_required_state} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 190 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 191 | # Description of argument(s): |
| 192 | # obmc_required_state The OBMC state which is required for test. |
| 193 | |
| 194 | ${obmc_current_state_REST}= Get Host State |
| 195 | Should Be Equal ${obmc_current_state_REST} ${obmc_required_state} |
| 196 | |
| 197 | Click Yes Button |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 198 | [Documentation] Click the 'Yes' button. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 199 | [Arguments] ${xpath_button_yes} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 200 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 201 | # Description of argument(s): |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 202 | # xpath_button_yes The xpath of 'Yes' button. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 203 | |
| 204 | Click Button ${xpath_button_yes} |
| 205 | |
| 206 | LogOut OpenBMC GUI |
| 207 | [Documentation] Log out of OpenBMC GUI. |
| 208 | SSHLibrary.Close All Connections |
Sivas SRR | ae39abe | 2018-02-26 02:40:46 -0600 | [diff] [blame] | 209 | # Passing direct id element "header" as an argument to Click Element. |
Rahul Maheshwari | d36b6ac | 2018-06-19 01:44:06 -0500 | [diff] [blame] | 210 | Click Element ${xpath_button_logout} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 211 | Wait Until Page Contains Element ${xpath_button_login} |
| 212 | |
| 213 | Test Teardown Execution |
| 214 | [Documentation] Do final closure activities of test case execution. |
| 215 | Rprint Pgm Footer |
| 216 | Print Dashes 0 100 1 = |
Rahul Maheshwari | cfdec85 | 2018-11-30 03:44:49 -0600 | [diff] [blame] | 217 | Close Browser |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 218 | |
Rahul Maheshwari | 1b5369b | 2018-06-11 00:57:03 -0500 | [diff] [blame] | 219 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 220 | Open Browser With URL |
| 221 | [Documentation] Open browser with specified URL and returns browser id. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 222 | [Arguments] ${URL} ${browser}=ff ${mode}=${GUI_MODE} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 223 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 224 | # Description of argument(s): |
| 225 | # URL Openbmc GUI URL to be open |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 226 | # (e.g. https://openbmc-test.mybluemix.net/#/login). |
| 227 | # browser Browser used to open above URL |
| 228 | # (e.g. gc for google chrome, ff for firefox). |
| 229 | # mode Browser opening mode(e.g. headless, header). |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 230 | |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 231 | ${browser_ID}= Run Keyword If '${mode}' == 'headless' |
| 232 | ... Launch Headless Browser ${URL} ${browser} |
| 233 | ... ELSE Open Browser ${URL} ${browser} |
| 234 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 235 | [Return] ${browser_ID} |
| 236 | |
Rahul Maheshwari | 1b5369b | 2018-06-11 00:57:03 -0500 | [diff] [blame] | 237 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 238 | Model Server Power Click Button |
| 239 | [Documentation] Click main server power in the header section. |
| 240 | [Arguments] ${div_element} ${anchor_element} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 241 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 242 | # Description of argument(s): |
| 243 | # div_element Server power header divisional element |
| 244 | # (e.g. header_wrapper.) |
| 245 | # anchor_element Server power header anchor element |
| 246 | # (e.g. header_wrapper_elt.) |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 247 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 248 | Wait Until Element Is Visible |
| 249 | ... //*[@id='header__wrapper']/div/div[${div_element}]/a[${anchor_element}]/span |
| 250 | Click Element |
| 251 | ... //*[@id='header__wrapper']/div/div[${div_element}]/a[${anchor_element}]/span |
| 252 | |
| 253 | Controller Server Power Click Button |
| 254 | [Documentation] Click main server power in the header section. |
| 255 | [Arguments] ${controller_element} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 256 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 257 | # Description of argument(s): |
| 258 | # controller_element Server power controller element |
| 259 | # (e.g. power__power-on.) |
| 260 | |
Rahul Maheshwari | dbbf179 | 2018-10-31 05:36:29 -0500 | [diff] [blame] | 261 | Click Element ${xpath_select_server_power} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 262 | Wait Until Element Is Visible ${controller_element} |
| 263 | Page Should Contain Button ${controller_element} |
| 264 | Click Element ${controller_element} |
| 265 | |
| 266 | Controller Power Operations Confirmation Click Button |
| 267 | [Documentation] Click Common Power Operations Confirmation. |
| 268 | [Arguments] ${main_element} ${sub_element} ${confirm_msg_elt} ${confirmation} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 269 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 270 | # Description of argument(s): |
| 271 | # main_element Server power operations element |
| 272 | # (e.g. power_operations.) |
| 273 | # sub_element Server power operations sub element |
| 274 | # (e.g. warm_boot, shut_down.) |
| 275 | # confirm_msg_elt Server power operations confirm message element |
| 276 | # (e.g. confirm_msg.) |
| 277 | # confirmation Server power operations confirmation |
| 278 | # (e.g. yes.) |
| 279 | |
Joy Onyerikwu | f4a807b | 2018-06-20 08:43:54 -0500 | [diff] [blame] | 280 | ${element_path}= Catenate //*[@id='power-operations']/div[${main_element}]/div[${sub_element}] |
| 281 | ... /confirm/div/div[${confirm_msg_elt}]/button[${confirmation}] |
| 282 | Click Element ${element_path.replace(" ","")} |
| 283 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 284 | |
| 285 | GUI Power On |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 286 | [Documentation] Power on the host using GUI. |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 287 | |
| 288 | Model Server Power Click Button ${header_wrapper} ${header_wrapper_elt} |
| 289 | Page Should Contain Attempts to power on the server |
| 290 | Controller Server Power Click Button power__power-on |
| 291 | Page Should Contain Running |
| 292 | |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 293 | Verify Display Content |
| 294 | [Documentation] Verify text content display. |
| 295 | [Arguments] ${display_text} |
| 296 | |
| 297 | # Description of argument(s): |
| 298 | # display_text The text which is expected to be found on the web page. |
| 299 | |
| 300 | Page Should Contain ${display_text} |
| 301 | |
| 302 | Warm Reboot openBMC |
| 303 | [Documentation] Warm reboot the OBMC system. |
| 304 | |
| 305 | Log To Console Warm Reboting the OpenBMC... |
| 306 | Click Element ${xpath_select_button_warm_reboot} |
| 307 | Verify Warning Message Display Text ${xpath_warm_reboot_warning_message} |
| 308 | ... ${text_warm_reboot_warning_message} |
| 309 | Click Yes Button ${xpath_select_button_warm_reboot_yes} |
| 310 | Wait OpenBMC To Become Stable ${obmc_running_state} |
| 311 | |
| 312 | Click No Button |
| 313 | [Documentation] Click the 'No' button. |
| 314 | [Arguments] ${xpath_button_no} |
| 315 | |
| 316 | # Description of argument(s): |
| 317 | # xpath_button_no The xpath of 'No' button. |
| 318 | |
| 319 | Click Button ${xpath_button_no} |
| 320 | |
| 321 | Cold Reboot openBMC |
| 322 | [Documentation] Cold reboot the OBMC system. |
| 323 | |
| 324 | Log To Console Cold Reboting the OpenBMC... |
| 325 | Click Element ${xpath_select_button_cold_reboot} |
| 326 | Verify Warning Message Display Text ${xpath_cold_reboot_warning_message} |
| 327 | ... ${text_cold_reboot_warning_message} |
| 328 | Click Yes Button ${xpath_select_button_cold_reboot_yes} |
| 329 | Wait OpenBMC To Become Stable ${obmc_running_state} |
| 330 | |
| 331 | Orderly Shutdown OpenBMC |
| 332 | [Documentation] Do orderly shutdown the OBMC system. |
| 333 | |
| 334 | Log To Console Orderly Shutdown the OpenBMC... |
| 335 | Click Element ${xpath_select_button_orderly_shutdown} |
| 336 | Verify Warning Message Display Text ${xpath_orderly_shutdown_warning_message} |
| 337 | ... ${text_orderly_shutdown_warning_message} |
| 338 | Click Yes Button ${xpath_select_button_orderly_shutdown_yes} |
| 339 | Wait OpenBMC To Become Stable ${obmc_off_state} |
| 340 | |
| 341 | Immediate Shutdown openBMC |
| 342 | [Documentation] Do immediate shutdown the OBMC system. |
| 343 | |
| 344 | Log To Console Immediate Shutdown the OpenBMC... |
| 345 | Click Element ${xpath_select_button_immediate_shutdown} |
| 346 | Verify Warning Message Display Text |
| 347 | ... ${xpath_immediate_shutdown_warning_message} |
| 348 | ... ${text_immediate_shutdown_warning_message} |
| 349 | Click Yes Button ${xpath_select_button_immediate_shutdown_yes} |
| 350 | Wait OpenBMC To Become Stable ${obmc_off_state} |
| 351 | |
| 352 | Verify Warning Message Display Text |
| 353 | [Documentation] Verify the warning message display text. |
| 354 | [Arguments] ${xpath_text_message} ${text_message} |
| 355 | |
| 356 | # xpath_text_message Xpath of warning message display. |
| 357 | # text_message Content of the display message info. |
| 358 | |
| 359 | Element Text Should Be ${xpath_text_message} ${text_message} |
Sivas SRR | ca534e6 | 2018-02-20 02:22:02 -0600 | [diff] [blame] | 360 | |
| 361 | |
| 362 | Expected Initial Test State |
| 363 | [Documentation] Power on the host if "Running" expected, Power off the |
| 364 | ... host if "Off" expected as per the requirement of initial test state. |
| 365 | [Arguments] ${expectedState} |
| 366 | # Description of argument(s): |
| 367 | # expectedState Test initial host state. |
| 368 | |
| 369 | Run Keyword If '${expectedState}' == 'Running' |
Rahul Maheshwari | 2349169 | 2018-11-09 03:42:41 -0600 | [diff] [blame] | 370 | ... REST Power On stack_mode=skip quiet=1 |
Sivas SRR | ca534e6 | 2018-02-20 02:22:02 -0600 | [diff] [blame] | 371 | |
| 372 | Run Keyword If '${expectedState}' == 'Off' |
Rahul Maheshwari | 2349169 | 2018-11-09 03:42:41 -0600 | [diff] [blame] | 373 | ... REST Power Off stack_mode=skip quiet=1 |
Sivas SRR | 008dcc6 | 2018-02-27 06:34:56 -0600 | [diff] [blame] | 374 | |
| 375 | Launch Browser And Login OpenBMC GUI |
| 376 | [Documentation] Launch browser and log into openbmc GUI. |
| 377 | |
| 378 | Open Browser With URL ${obmc_gui_url} |
| 379 | Login OpenBMC GUI ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} |
| 380 | |
| 381 | Logout And Close Browser |
| 382 | [Documentation] Logout from openbmc application and close the browser. |
| 383 | |
Rahul Maheshwari | 1a6945e | 2018-11-26 03:21:40 -0600 | [diff] [blame] | 384 | Click Element //*[text()='Log out'] |
Sivas SRR | 008dcc6 | 2018-02-27 06:34:56 -0600 | [diff] [blame] | 385 | Close Browser |