Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Main initialization file for the test cases contained in this |
| 3 | ... directory and setting up the test environment variables. |
| 4 | |
| 5 | Resource lib/resource.robot |
| 6 | Suite Setup Initializing Setup |
| 7 | Suite Teardown Init Teardown Steps |
| 8 | |
| 9 | *** Keywords *** |
| 10 | Initializing Setup |
| 11 | [Documentation] Initialize test environment. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 12 | |
| 13 | Get OpenBMC System Info |
Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 14 | Launch OpenBMC GUI Browser |
| 15 | Login OpenBMC GUI |
Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 16 | Initial Message |
| 17 | LogOut OpenBMC GUI |
| 18 | |
| 19 | Initial Message |
| 20 | [Documentation] Display initial info about the test cases. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 21 | |
Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 22 | Rpvars EXECDIR |
| 23 | Rprint Timen OBMC_GUI Testing ==> [IN PROGRESS] |
| 24 | Print Dashes 0 100 1 = |
| 25 | |
| 26 | Get OpenBMC System Info |
| 27 | [Documentation] Display open BMC system info like system name and IP. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 28 | |
Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 29 | ${OPENBMC_HOST_NAME}= Get Hostname From IP Address ${OPENBMC_HOST} |
| 30 | Rpvars OPENBMC_HOST OPENBMC_HOST_NAME |
| 31 | ${build_info} ${stderr} ${rc}= BMC Execute Command cat /etc/os-release |
| 32 | ... print_output=1 |
| 33 | Print Dashes 0 100 1 = |
| 34 | |
| 35 | Init Teardown Steps |
| 36 | [Documentation] End the test execution by closing browser. |
Sathyajith M S | 4f26ae7 | 2018-01-16 04:45:05 -0600 | [diff] [blame] | 37 | |
Sathyajith M S | e6956c0 | 2017-08-16 01:50:17 -0500 | [diff] [blame] | 38 | Print Timen OBMC_GUI Testing ==> [Finished] |
| 39 | Print Dashes 0 100 1 = |
| 40 | Close Browser |