Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 2 | Documentation Verify Auto Restart policy for set of mission critical |
| 3 | ... services needed for functioning on BMC. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 4 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 5 | Resource ../lib/resource.txt |
| 6 | Resource ../lib/connection_client.robot |
| 7 | Resource ../lib/openbmc_ffdc.robot |
| 8 | Resource ../lib/utils.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 9 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 10 | Suite Setup Open Connection And Log In |
| 11 | Suite Teardown Close All Connections |
| 12 | Test Teardown FFDC On Test Case Fail |
| 13 | |
| 14 | *** Variables *** |
| 15 | ${LOG_SERVICE} xyz.openbmc_project.Logging.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | |
| 17 | *** Test Cases *** |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 18 | |
| 19 | Verify OpenBMC Services Auto Restart Policy |
| 20 | [Documentation] Kill active services and expect auto restart. |
| 21 | [Tags] Verify_OpenBMC_Services_Auto_Restart_Policy |
| 22 | # The services listed bellow restart policy should be "always" |
| 23 | # Command output: |
| 24 | # systemctl -p Restart show xyz.openbmc_project.Logging.service | cat |
| 25 | # Restart=always |
| 26 | @{services}= |
| 27 | ... Create List xyz.openbmc_project.Logging.service |
| 28 | ... xyz.openbmc_project.ObjectMapper.service |
| 29 | ... xyz.openbmc_project.State.BMC.service |
| 30 | ... xyz.openbmc_project.State.Chassis.service |
| 31 | ... xyz.openbmc_project.State.Host.service |
| 32 | : FOR ${SERVICE} IN @{services} |
| 33 | \ Check Service Autorestart ${SERVICE} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 34 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 35 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 36 | Kill Services And Expect Service Restart |
| 37 | [Documentation] Kill the service and it must restart. |
| 38 | [Tags] Kill_Services_And_Expect_Service_Restart |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 39 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 40 | # Get the MainPID and service state. |
| 41 | ${MainPID}= Get Service Attribute MainPID ${LOG_SERVICE} |
| 42 | Should Not Be Equal ${0} ${MainPID} |
| 43 | ... msg=Logging service not restarted. |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 44 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 45 | ${ActiveState}= Get Service Attribute ActiveState ${LOG_SERVICE} |
| 46 | Should Be Equal active ${ActiveState} |
| 47 | ... msg=Logging Service not in active state. |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 48 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 49 | Execute Command On BMC kill -9 ${MainPID} |
| 50 | Sleep 10s reason=Wait for service to restart. |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 51 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 52 | ${MainPID}= Get Service Attribute MainPID ${LOG_SERVICE} |
| 53 | Should Not Be Equal ${0} ${MainPID} |
| 54 | ... msg=Logging service not restarted. |
| 55 | |
| 56 | ${ActiveState}= Get Service Attribute ActiveState ${LOG_SERVICE} |
| 57 | Should Be Equal active ${ActiveState} |
| 58 | ... msg=Logging service not in active state. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 59 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 60 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 61 | *** Keywords *** |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 62 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 63 | Check Service Autorestart |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 64 | [Documentation] Check if given policy is "always". |
| 65 | [Arguments] ${servicename} |
| 66 | # servicename Qualified service name |
| 67 | ${restart_policy}= Get Service Attribute Restart ${servicename} |
| 68 | Should Be Equal always ${restart_policy} |
| 69 | ... msg=Incorrect policy for ${servicename} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 70 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 71 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 72 | Get Service Attribute |
| 73 | [Documentation] Get service attribute policy output. |
| 74 | [Arguments] ${option} ${servicename} |
| 75 | # option systemctl supported options |
| 76 | # servicename Qualified service name |
| 77 | ${cmd}= Set Variable |
| 78 | ... systemctl -p ${option} show ${servicename} | cut -d = -f2 |
| 79 | ${attr}= Execute Command On BMC ${cmd} |
| 80 | [Return] ${attr} |