Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 2 | Documentation This testsuites tests the autorestart policy for |
| 3 | ... OpenBMC project |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 4 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 5 | Resource ../lib/resource.txt |
| 6 | Resource ../lib/connection_client.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 7 | Resource ../lib/openbmc_ffdc.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 8 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 9 | Suite Setup Open Connection And Log In |
| 10 | Suite Teardown Close All Connections |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 11 | Test Teardown Log FFDC |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 12 | |
| 13 | *** Test Cases *** |
| 14 | Test OpenBMC Services Autorestart Policy |
| 15 | [Documentation] This testcases is for checking all the openbmc services |
| 16 | ... restart policy is set to active |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 17 | @{services}= Create List btbridged.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 18 | ... host-ipmid.service |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 19 | ... inarp.service |
| 20 | ... network.service |
| 21 | ... network-update-dns.service |
| 22 | ... obmc-console.service |
| 23 | ... obmc-hwmon.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 24 | ... obmc-phosphor-chassisd.service |
| 25 | ... obmc-phosphor-event.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 26 | ... obmc-phosphor-fand.service |
| 27 | ... obmc-phosphor-flashd.service |
| 28 | ... obmc-phosphor-policyd.service |
| 29 | ... obmc-phosphor-sensord.service |
| 30 | ... obmc-phosphor-sysd.service |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 31 | ... obmc-phosphor-user.service |
| 32 | ... org.openbmc.buttons.Power.service |
| 33 | ... org.openbmc.buttons.reset.service |
| 34 | ... org.openbmc.control.BmcFlash.service |
| 35 | ... org.openbmc.control.Bmc.service |
| 36 | ... org.openbmc.control.Chassis.service |
| 37 | ... org.openbmc.control.Checkstop.service |
| 38 | ... org.openbmc.control.Fans.service |
| 39 | ... org.openbmc.control.Flash.service |
| 40 | ... org.openbmc.control.Host.service |
| 41 | ... org.openbmc.control.led.service |
| 42 | ... org.openbmc.control.Power.service |
| 43 | ... org.openbmc.examples.PythonService.service |
| 44 | ... org.openbmc.examples.SDBusService.service |
| 45 | ... org.openbmc.Inventory.service |
| 46 | ... org.openbmc.managers.Download.service |
| 47 | ... org.openbmc.managers.System.service |
| 48 | ... org.openbmc.ObjectMapper.service |
| 49 | ... org.openbmc.Sensors.service |
| 50 | ... org.openbmc.watchdog.Host.service |
| 51 | ... phosphor-rest.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 52 | ... rest-dbus.service |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 53 | ... settings.service |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 54 | : FOR ${SERVICE} IN @{services} |
| 55 | \ Check Service Autorestart ${SERVICE} |
| 56 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 57 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 58 | Test Restart Policy for openbmc service |
| 59 | [Documentation] This testcase will kill the service and make sure it |
| 60 | ... does restart after that |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 61 | |
| 62 | ${MainPID}= Execute Restart Policy Command |
| 63 | ... systemctl -p MainPID show settings.service| cut -d = -f2 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 64 | Should Not Be Equal 0 ${MainPID} |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 65 | |
| 66 | Execute Restart Policy Command kill -9 ${MainPID} |
| 67 | Sleep 30s reason=Wait for service to restart properly |
| 68 | |
| 69 | ${ActiveState}= Execute Restart Policy Command |
| 70 | ... systemctl -p ActiveState show settings.service| cut -d = -f2 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 71 | Should Be Equal active ${ActiveState} |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 72 | |
| 73 | ${MainPID}= Execute Restart Policy Command |
| 74 | ... systemctl -p MainPID show settings.service| cut -d = -f2 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 75 | Should Not Be Equal 0 ${MainPID} |
| 76 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 77 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 78 | *** Keywords *** |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 79 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 80 | Check Service Autorestart |
| 81 | [arguments] ${servicename} |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 82 | ${restart_policy}= |
| 83 | ... Execute Restart Policy Command |
| 84 | ... systemctl -p Restart show ${servicename} | cut -d = -f2 |
| 85 | Should Be Equal always ${restart_policy} |
| 86 | ... msg=restart policy is not always for ${servicename} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 87 | |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 88 | |
| 89 | Execute Restart Policy Command |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 90 | [arguments] ${command} |
George Keishing | c4f06d73 | 2016-09-02 07:06:53 -0500 | [diff] [blame] | 91 | ${stdout} ${stderr} = Execute Command ${command} return_stderr=True |
| 92 | Should Be Empty ${stderr} |
| 93 | [Return] ${stdout} |