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 |
Rahul Maheshwari | 2b666cc | 2019-09-02 23:53:37 -0500 | [diff] [blame] | 10 | Library SeleniumLibrary |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 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 *** |
Matt Fischer | d315df4 | 2023-11-13 16:26:21 -0700 | [diff] [blame] | 26 | ${obmc_gui_url} https://${OPENBMC_HOST}:${HTTPS_PORT} |
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 | |
George Keishing | 4d4ef99 | 2021-01-28 09:56:53 -0600 | [diff] [blame] | 32 | # Default GUI browser and mode is set to "Firefox" and "headless" |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 33 | # respectively here. |
| 34 | ${GUI_BROWSER} ff |
| 35 | ${GUI_MODE} headless |
| 36 | |
manashsarma | fb35366 | 2020-08-27 05:12:04 -0500 | [diff] [blame] | 37 | ${CMD_INTERNAL_FAILURE} busctl call xyz.openbmc_project.Logging /xyz/openbmc_project/logging |
| 38 | ... xyz.openbmc_project.Logging.Create Create ssa{ss} xyz.openbmc_project.Common.Error.InternalFailure |
| 39 | ... xyz.openbmc_project.Logging.Entry.Level.Error 0 |
| 40 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 41 | *** Keywords *** |
| 42 | Launch OpenBMC GUI Browser |
| 43 | [Documentation] Launch the OpenBMC GUI URL on a browser. |
| 44 | # By default uses headless mode, otherwise, the GUI browser. |
| 45 | |
| 46 | ${op_system}= Get Operating System |
| 47 | Run Keyword If '${op_system}' == 'windows' |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 48 | ... Launch Header Browser |
| 49 | ... ELSE IF '${op_system}' == 'Darwin' |
| 50 | # Mac OS is currently having some issues with firefox, so using |
| 51 | # chrome. |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 52 | ... Launch Header Browser chrome |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 53 | ... ELSE |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 54 | # Linux OS. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 55 | ... Launch Headless Browser |
| 56 | |
| 57 | Get Operating System |
| 58 | [Documentation] Identify platform/OS. |
| 59 | |
| 60 | ${curdir_lower_case}= Convert To Lowercase ${CURDIR} |
| 61 | ${windows_platform}= Run Keyword And Return Status |
| 62 | ... Should Contain ${curdir_lower_case} c:\ |
| 63 | ${op_system}= Run Keyword If '${windows_platform}' == 'True' |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 64 | ... Set Variable windows |
| 65 | ... ELSE |
| 66 | ... Run uname |
George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 67 | RETURN ${op_system} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 68 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 69 | Launch Header Browser |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 70 | [Documentation] Open the browser with the URL and |
| 71 | ... login on windows platform. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 72 | [Arguments] ${browser_type}=${GUI_BROWSER} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 73 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 74 | # Description of argument(s): |
| 75 | # browser_type Type of browser (e.g. "firefox", "chrome", etc.). |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 76 | |
Sivas SRR | a011348 | 2018-02-22 22:27:05 -0600 | [diff] [blame] | 77 | ${BROWSER_ID}= Open Browser ${obmc_gui_url} ${browser_type} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 78 | Maximize Browser Window |
| 79 | Set Global Variable ${BROWSER_ID} |
| 80 | |
| 81 | Launch Headless Browser |
| 82 | [Documentation] Launch headless browser. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 83 | [Arguments] ${URL}=${obmc_gui_url} ${browser}=${GUI_BROWSER} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 84 | |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 85 | # Description of argument(s): |
| 86 | # URL Openbmc GUI URL to be open |
| 87 | # (e.g. https://openbmc-test.mybluemix.net/#/login). |
| 88 | # browser Browser to open given URL in headless way |
| 89 | # (e.g. gc for google chrome, ff for firefox). |
| 90 | |
| 91 | Start Virtual Display |
| 92 | ${browser_ID}= Open Browser ${URL} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 93 | Set Window Size 1920 1080 |
| 94 | |
George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 95 | RETURN ${browser_ID} |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 96 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 97 | Login OpenBMC GUI |
| 98 | [Documentation] Perform login to open BMC GUI. |
| 99 | [Arguments] ${username}=${OPENBMC_USERNAME} |
| 100 | ... ${password}=${OPENBMC_PASSWORD} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 101 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 102 | # Description of argument(s): |
| 103 | # username The username. |
| 104 | # password The password. |
| 105 | |
Sivas SRR | c70e9ae | 2018-02-14 23:53:49 -0600 | [diff] [blame] | 106 | Go To ${obmc_gui_url} |
Sivas SRR | a692535 | 2018-02-19 08:59:03 -0600 | [diff] [blame] | 107 | Wait Until Element Is Enabled ${xpath_textbox_hostname} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 108 | Input Text ${xpath_textbox_hostname} ${OPENBMC_HOST} |
| 109 | Input Text ${xpath_textbox_username} ${username} |
| 110 | Input Password ${xpath_textbox_password} ${password} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 111 | Click Element login__submit |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 112 | Wait Until Element Is Enabled ${xpath_button_logout} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 113 | Page Should Contain Server information |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 114 | |
| 115 | |
| 116 | Test Setup Execution |
| 117 | [Documentation] Verify all the preconditions to be tested. |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 118 | [Arguments] ${obmc_test_setup_state}=${OBMC_PowerOff_state} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 119 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 120 | # Description of argument(s): |
| 121 | # obmc_test_setup The OpenBMC required state. |
| 122 | |
Michael Walsh | c108e42 | 2019-03-28 12:27:18 -0500 | [diff] [blame] | 123 | Print Timen ${TEST NAME} ==> [STARTED] |
Rahul Maheshwari | 7872f05 | 2018-06-19 01:12:34 -0500 | [diff] [blame] | 124 | Launch Browser And Login OpenBMC GUI |
George Keishing | 9bfdf8a | 2024-04-19 11:09:07 +0530 | [diff] [blame] | 125 | Log To Console Verifying the system state and stability. |
Rahul Maheshwari | 8b5b5a4 | 2018-11-30 01:41:35 -0600 | [diff] [blame] | 126 | |
Anusha Dathatri | f7a407c | 2019-07-22 00:59:38 -0500 | [diff] [blame] | 127 | Click Element ${xpath_select_server_power} |
Anusha Dathatri | f93a5c4 | 2019-07-24 05:29:44 -0500 | [diff] [blame] | 128 | Wait Until Page Does Not Contain Unreachable |
Rahul Maheshwari | 8b5b5a4 | 2018-11-30 01:41:35 -0600 | [diff] [blame] | 129 | ${obmc_current_state}= Get Text ${xpath_power_indicator} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 130 | Rpvars obmc_current_state |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 131 | |
| 132 | ${obmc_state_status}= Run Keyword And Return Status |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 133 | ... Should Contain ${obmc_current_state} ${obmc_test_setup_state} |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 134 | Return From Keyword If '${obmc_state_status}' == 'True' |
| 135 | |
| 136 | ${obmc_standby_state}= Run Keyword And Return Status |
| 137 | ... Should Contain ${obmc_current_state} ${obmc_standby_state} |
| 138 | |
| 139 | Run Keyword If '${obmc_standby_state}' == 'True' |
| 140 | ... Reboot OpenBMC |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 141 | Run Keyword If '${obmc_test_setup_state}' == '${obmc_PowerRunning_state}' |
Rahul Maheshwari | 1ea8fec | 2018-12-07 12:42:04 -0600 | [diff] [blame] | 142 | ... Run Keywords Power On OpenBMC AND |
| 143 | ... Wait Until Keyword Succeeds 10 min 60 sec Is Host Running |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 144 | Run Keyword If '${obmc_test_setup_state}' == '${obmc_PowerOff_state}' |
Anusha Dathatri | 37159da | 2019-10-01 04:51:26 -0500 | [diff] [blame] | 145 | ... Run Keywords Redfish.Login AND Redfish Power Off AND Redfish.Logout |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 146 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 147 | |
| 148 | Power On OpenBMC |
| 149 | [Documentation] Power on the OBMC system. |
| 150 | |
| 151 | Log To Console Power On OpenBMC... |
Anusha Dathatri | f93a5c4 | 2019-07-24 05:29:44 -0500 | [diff] [blame] | 152 | Click Element ${xpath_select_server_power} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 153 | Click Button ${xpath_select_button_power_on } |
| 154 | Wait OpenBMC To Become Stable ${obmc_running_state} |
| 155 | |
| 156 | Reboot OpenBMC |
| 157 | [Documentation] Rebooting the OBMC system. |
| 158 | |
| 159 | Log To Console Reboting the OpenBMC... |
Anusha Dathatri | f93a5c4 | 2019-07-24 05:29:44 -0500 | [diff] [blame] | 160 | Click Element ${xpath_select_server_power} |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 161 | Click Button ${xpath_select_button_orderly_shutdown} |
| 162 | Click Yes Button ${xpath_select_button_orderly_shutdown_yes} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 163 | Wait OpenBMC To Become Stable ${obmc_off_state} |
| 164 | |
| 165 | Wait OpenBMC To Become Stable |
| 166 | [Documentation] Power off the OBMC. |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 167 | [Arguments] ${obmc_expected_state} ${retry_time}=15 min |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 168 | ... ${retry_interval}=45 sec |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 169 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 170 | # Description of argument(s): |
| 171 | # OBMC_expected_state The OBMC state which is required for test. |
| 172 | # retry_time Total wait time after executing the command. |
| 173 | # retry_interval Time interval for to keep checking with in the |
| 174 | # above total wait time. |
| 175 | |
| 176 | Wait Until Keyword Succeeds ${retry_time} ${retry_interval} |
Anusha Dathatri | f93a5c4 | 2019-07-24 05:29:44 -0500 | [diff] [blame] | 177 | ... Wait Until Element Contains ${xpath_select_server_power} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 178 | ... ${obmc_expected_state} |
| 179 | Wait Until Keyword Succeeds ${retry_time} ${retry_interval} |
| 180 | ... Verify OpenBMC State From REST Interface ${obmc_expected_state} |
| 181 | |
| 182 | Verify OpenBMC State From REST Interface |
| 183 | [Documentation] Verify system state from REST Interface. |
| 184 | [Arguments] ${obmc_required_state} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 185 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 186 | # Description of argument(s): |
| 187 | # obmc_required_state The OBMC state which is required for test. |
| 188 | |
| 189 | ${obmc_current_state_REST}= Get Host State |
| 190 | Should Be Equal ${obmc_current_state_REST} ${obmc_required_state} |
| 191 | |
| 192 | Click Yes Button |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 193 | [Documentation] Click the 'Yes' button. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 194 | [Arguments] ${xpath_button_yes} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 195 | |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 196 | # Description of argument(s): |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 197 | # xpath_button_yes The xpath of 'Yes' button. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 198 | |
| 199 | Click Button ${xpath_button_yes} |
| 200 | |
| 201 | LogOut OpenBMC GUI |
| 202 | [Documentation] Log out of OpenBMC GUI. |
| 203 | SSHLibrary.Close All Connections |
Rahul Maheshwari | 31b3c43 | 2020-06-26 05:24:13 -0500 | [diff] [blame] | 204 | Click Button ${xpath_button_user_action} |
Rahul Maheshwari | d36b6ac | 2018-06-19 01:44:06 -0500 | [diff] [blame] | 205 | Click Element ${xpath_button_logout} |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 206 | Wait Until Page Contains Element ${xpath_button_login} |
| 207 | |
| 208 | Test Teardown Execution |
| 209 | [Documentation] Do final closure activities of test case execution. |
Michael Walsh | c108e42 | 2019-03-28 12:27:18 -0500 | [diff] [blame] | 210 | Print Pgm Footer |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 211 | Print Dashes 0 100 1 = |
Rahul Maheshwari | cfdec85 | 2018-11-30 03:44:49 -0600 | [diff] [blame] | 212 | Close Browser |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 213 | |
Rahul Maheshwari | 1b5369b | 2018-06-11 00:57:03 -0500 | [diff] [blame] | 214 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 215 | Open Browser With URL |
| 216 | [Documentation] Open browser with specified URL and returns browser id. |
Rahul Maheshwari | dd38aef | 2018-11-15 23:33:10 -0600 | [diff] [blame] | 217 | [Arguments] ${URL} ${browser}=ff ${mode}=${GUI_MODE} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 218 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 219 | # Description of argument(s): |
| 220 | # URL Openbmc GUI URL to be open |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 221 | # (e.g. https://openbmc-test.mybluemix.net/#/login). |
| 222 | # browser Browser used to open above URL |
| 223 | # (e.g. gc for google chrome, ff for firefox). |
| 224 | # mode Browser opening mode(e.g. headless, header). |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 225 | |
Rahul Maheshwari | 79e276c | 2018-06-11 01:23:15 -0500 | [diff] [blame] | 226 | ${browser_ID}= Run Keyword If '${mode}' == 'headless' |
| 227 | ... Launch Headless Browser ${URL} ${browser} |
| 228 | ... ELSE Open Browser ${URL} ${browser} |
| 229 | |
George Keishing | 409df05 | 2024-01-17 22:36:14 +0530 | [diff] [blame] | 230 | RETURN ${browser_ID} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 231 | |
Rahul Maheshwari | 1b5369b | 2018-06-11 00:57:03 -0500 | [diff] [blame] | 232 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 233 | Controller Server Power Click Button |
| 234 | [Documentation] Click main server power in the header section. |
| 235 | [Arguments] ${controller_element} |
Sathyajith M S | 2cdab0a | 2018-02-13 19:36:28 -0600 | [diff] [blame] | 236 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 237 | # Description of argument(s): |
| 238 | # controller_element Server power controller element |
| 239 | # (e.g. power__power-on.) |
| 240 | |
Rahul Maheshwari | dbbf179 | 2018-10-31 05:36:29 -0500 | [diff] [blame] | 241 | Click Element ${xpath_select_server_power} |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 242 | Wait Until Element Is Visible ${controller_element} |
| 243 | Page Should Contain Button ${controller_element} |
| 244 | Click Element ${controller_element} |
| 245 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 246 | |
| 247 | GUI Power On |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 248 | [Documentation] Power on the host using GUI. |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 249 | |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 250 | Controller Server Power Click Button power__power-on |
Anusha Dathatri | 7ea44c1 | 2019-09-04 09:28:38 -0500 | [diff] [blame] | 251 | Wait Until Page Contains Running timeout=30s |
Sivas SRR | ffa4269 | 2018-01-17 05:17:35 -0600 | [diff] [blame] | 252 | |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 253 | Verify Display Content |
| 254 | [Documentation] Verify text content display. |
| 255 | [Arguments] ${display_text} |
| 256 | |
| 257 | # Description of argument(s): |
| 258 | # display_text The text which is expected to be found on the web page. |
| 259 | |
| 260 | Page Should Contain ${display_text} |
| 261 | |
Sathyajith M S | f52d6fc | 2018-01-24 10:11:18 -0600 | [diff] [blame] | 262 | |
| 263 | Verify Warning Message Display Text |
| 264 | [Documentation] Verify the warning message display text. |
| 265 | [Arguments] ${xpath_text_message} ${text_message} |
| 266 | |
| 267 | # xpath_text_message Xpath of warning message display. |
| 268 | # text_message Content of the display message info. |
| 269 | |
Anusha Dathatri | f93a5c4 | 2019-07-24 05:29:44 -0500 | [diff] [blame] | 270 | Element Should Contain ${xpath_text_message} ${text_message} |
Sivas SRR | ca534e6 | 2018-02-20 02:22:02 -0600 | [diff] [blame] | 271 | |
| 272 | |
| 273 | Expected Initial Test State |
| 274 | [Documentation] Power on the host if "Running" expected, Power off the |
| 275 | ... host if "Off" expected as per the requirement of initial test state. |
| 276 | [Arguments] ${expectedState} |
| 277 | # Description of argument(s): |
| 278 | # expectedState Test initial host state. |
| 279 | |
| 280 | Run Keyword If '${expectedState}' == 'Running' |
Rahul Maheshwari | 2349169 | 2018-11-09 03:42:41 -0600 | [diff] [blame] | 281 | ... REST Power On stack_mode=skip quiet=1 |
Sivas SRR | ca534e6 | 2018-02-20 02:22:02 -0600 | [diff] [blame] | 282 | |
| 283 | Run Keyword If '${expectedState}' == 'Off' |
Rahul Maheshwari | 2349169 | 2018-11-09 03:42:41 -0600 | [diff] [blame] | 284 | ... REST Power Off stack_mode=skip quiet=1 |
Sivas SRR | 008dcc6 | 2018-02-27 06:34:56 -0600 | [diff] [blame] | 285 | |
| 286 | Launch Browser And Login OpenBMC GUI |
| 287 | [Documentation] Launch browser and log into openbmc GUI. |
| 288 | |
| 289 | Open Browser With URL ${obmc_gui_url} |
| 290 | Login OpenBMC GUI ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} |
| 291 | |
| 292 | Logout And Close Browser |
| 293 | [Documentation] Logout from openbmc application and close the browser. |
| 294 | |
Rahul Maheshwari | 31b3c43 | 2020-06-26 05:24:13 -0500 | [diff] [blame] | 295 | Click Button ${xpath_button_user_action} |
| 296 | Click Button ${xpath_button_logout} |
Sivas SRR | 008dcc6 | 2018-02-27 06:34:56 -0600 | [diff] [blame] | 297 | Close Browser |
Rahul Maheshwari | f3fa674 | 2020-05-18 06:24:04 -0500 | [diff] [blame] | 298 | |