Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | |
| 3 | Documentation This testsuite is for testing boot policy function. |
| 4 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 5 | Resource ../lib/rest_client.robot |
| 6 | Resource ../lib/ipmi_client.robot |
| 7 | Resource ../lib/utils.robot |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 8 | Resource ../lib/openbmc_ffdc.robot |
Rahul Maheshwari | ec8bf17 | 2017-02-21 07:41:08 -0600 | [diff] [blame] | 9 | Resource ../lib/state_manager.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 10 | |
George Keishing | 3ce958c | 2017-03-27 01:09:02 -0500 | [diff] [blame] | 11 | Suite Setup Test Suite Setup |
| 12 | Test Setup Test Init Setup |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 13 | Test Teardown FFDC On Test Case Fail |
George Keishing | b440019 | 2017-02-01 11:10:30 -0600 | [diff] [blame] | 14 | Suite Teardown Restore Boot Settings |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 15 | |
| 16 | *** Variables *** |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 17 | ${HOST_SETTINGS} ${SETTINGS_URI}host0 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 18 | |
| 19 | *** Test Cases *** |
| 20 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 21 | Set Boot Policy To ONETIME via REST |
| 22 | [Documentation] Set boot policy to ONETIME using REST URI and verify |
| 23 | ... using ipmitool. |
| 24 | [Tags] Set_Boot_Policy_To_ONETIME_via_REST |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 25 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 26 | Set Boot Policy ONETIME |
| 27 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 28 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 29 | Should Be Equal ${boot} ONETIME |
Rahul Maheshwari | d8d22da | 2017-04-07 09:13:44 -0500 | [diff] [blame] | 30 | ${output}= Run IPMI Standard Command chassis bootparam get 5 |
| 31 | Should Contain ${output} Options apply to only next boot |
| 32 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 33 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 34 | Set Boot Policy To PERMANENT via REST |
| 35 | [Documentation] Set boot policy to PERMANENT via REST URI and verify |
| 36 | ... using ipmitool. |
| 37 | [Tags] Set_Boot_Policy_To_PERMANENT_via_REST |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 38 | |
| 39 | Set Boot Policy PERMANENT |
| 40 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 41 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 42 | Should Be Equal ${boot} PERMANENT |
Rahul Maheshwari | d8d22da | 2017-04-07 09:13:44 -0500 | [diff] [blame] | 43 | ${output}= Run IPMI Standard Command chassis bootparam get 5 |
| 44 | Should Contain ${output} Options apply to all future boots |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 45 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 46 | Set Boot Policy To ONETIME via IPMITOOL |
| 47 | [Documentation] Set boot policy to ONETIME via ipmitool and verify |
| 48 | ... using REST URI. |
| 49 | [Tags] Set_Boot_Policy_To_ONETIME_via_IPMITOOL |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 50 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 51 | Run IPMI command 0x0 0x8 0x05 0x80 0x00 0x00 0x00 0x00 |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 52 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 53 | Should Be Equal ${boot} ONETIME |
Rahul Maheshwari | d8d22da | 2017-04-07 09:13:44 -0500 | [diff] [blame] | 54 | ${output}= Run IPMI Standard Command chassis bootparam get 5 |
| 55 | Should Contain ${output} Options apply to only next boot |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 56 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 57 | Set Boot Policy To PERMANENT via IPMITOOL |
| 58 | [Documentation] Set boot policy to PERMANENT via ipmitool and verify |
| 59 | ... using REST URI. |
| 60 | [Tags] Set_Boot_Policy_To_PERMANENT_via_IPMITOOL |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 61 | |
| 62 | Run IPMI command 0x0 0x8 0x05 0xC0 0x00 0x00 0x00 0x00 |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 63 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 64 | Should Be Equal ${boot} PERMANENT |
Rahul Maheshwari | d8d22da | 2017-04-07 09:13:44 -0500 | [diff] [blame] | 65 | ${output}= Run IPMI Standard Command chassis bootparam get 5 |
| 66 | Should Contain ${output} Options apply to all future boots |
| 67 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 68 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 69 | Test Boot Order via REST |
| 70 | [Documentation] Set boot policy to PERMANENT and boot device to CDROM |
| 71 | ... and verify that the order doesn't change post power on. |
| 72 | [Tags] chassisboot Test_Boot_Order_via_REST |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 73 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 74 | Initiate Power Off |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 75 | |
| 76 | Set Boot Policy PERMANENT |
| 77 | |
| 78 | Set Boot Device CDROM |
| 79 | |
Rahul Maheshwari | ec8bf17 | 2017-02-21 07:41:08 -0600 | [diff] [blame] | 80 | Initiate Host Boot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 81 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 82 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 83 | Should Be Equal ${boot} PERMANENT |
| 84 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 85 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 86 | Should Be Equal ${flag} CDROM |
| 87 | |
George Keishing | d320688 | 2016-11-29 04:41:14 -0600 | [diff] [blame] | 88 | Persist ONETIME Boot Policy After Reset |
| 89 | [Documentation] Verify ONETIME boot policy order does not change |
| 90 | ... on warm reset. |
Sridevi Ramesh | b4e6795 | 2017-01-19 00:58:10 -0600 | [diff] [blame] | 91 | [Tags] chassisboot Persist_ONETIME_Boot_Policy_After_Reset |
causten | 147f575 | 2016-08-11 16:24:45 -0500 | [diff] [blame] | 92 | |
Rahul Maheshwari | ec8bf17 | 2017-02-21 07:41:08 -0600 | [diff] [blame] | 93 | Initiate Host Boot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 94 | |
| 95 | Set Boot Policy ONETIME |
| 96 | |
| 97 | Set Boot Device Network |
| 98 | |
| 99 | Trigger Warm Reset |
| 100 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 101 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 102 | Should Be Equal ${boot} ONETIME |
| 103 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 104 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 105 | Should Be Equal ${flag} Network |
| 106 | |
George Keishing | d320688 | 2016-11-29 04:41:14 -0600 | [diff] [blame] | 107 | Persist PERMANENT Boot Policy After Reset |
| 108 | [Documentation] Verify PERMANENT boot policy order does not change |
| 109 | ... on warm reset. |
| 110 | [Tags] chassisboot Persist_PERMANENT_Boot_Policy_After_Reset |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 111 | |
Rahul Maheshwari | ec8bf17 | 2017-02-21 07:41:08 -0600 | [diff] [blame] | 112 | Initiate Host Boot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 113 | |
| 114 | Set Boot Policy PERMANENT |
| 115 | |
| 116 | Set Boot Device CDROM |
| 117 | |
| 118 | Trigger Warm Reset |
| 119 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 120 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 121 | Should Be Equal ${boot} PERMANENT |
| 122 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 123 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 124 | Should Be Equal ${flag} CDROM |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 125 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 126 | Set Boot Policy To Invalid Value |
George Keishing | 5f62a4a | 2016-11-16 02:09:17 -0600 | [diff] [blame] | 127 | [Documentation] This testcase verify that the boot policy doesn't get |
| 128 | ... updated with invalid policy supplied by user. |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 129 | [Tags] Set_Boot_Policy_To_Invalid_Value |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 130 | |
George Keishing | 5f62a4a | 2016-11-16 02:09:17 -0600 | [diff] [blame] | 131 | Run Keyword and Ignore Error Set Boot Policy abc |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 132 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 133 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 134 | Should Not Be Equal ${boot} abc |
| 135 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 136 | *** Keywords *** |
| 137 | |
| 138 | Set Boot Policy |
| 139 | [Arguments] ${args} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 140 | ${bootpolicy}= Set Variable ${args} |
| 141 | ${valueDict}= create dictionary data=${bootpolicy} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 142 | Write Attribute ${HOST_SETTINGS} boot_policy data=${valueDict} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 143 | |
| 144 | Set Boot Device |
| 145 | [Arguments] ${args} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 146 | ${bootDevice} = Set Variable ${args} |
| 147 | ${valueDict} = create dictionary data=${bootDevice} |
| 148 | Write Attribute ${HOST_SETTINGS} boot_flags data=${valueDict} |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 149 | |
George Keishing | b440019 | 2017-02-01 11:10:30 -0600 | [diff] [blame] | 150 | Restore Boot Settings |
| 151 | [Documentation] Restore default settings. |
| 152 | Set Boot Policy ONETIME |
Rahul Maheshwari | 28087e9 | 2017-04-07 07:12:49 -0500 | [diff] [blame] | 153 | Set Boot Device Default |
George Keishing | b440019 | 2017-02-01 11:10:30 -0600 | [diff] [blame] | 154 | Close All Connections |
George Keishing | 3ce958c | 2017-03-27 01:09:02 -0500 | [diff] [blame] | 155 | |
| 156 | Test Init Setup |
| 157 | [Documentation] Do the initial test setup. |
| 158 | Open Connection And Log In |
| 159 | Initialize DBUS cmd "boot_flags" |
| 160 | |
| 161 | Test Suite Setup |
| 162 | [Documentation] Do the initial suite setup. |
| 163 | ${current_state}= Get Host State |
| 164 | Run Keyword If '${current_state}' == 'Off' |
| 165 | ... Initiate Host Boot |
| 166 | |
| 167 | Wait Until Keyword Succeeds |
| 168 | ... 10 min 10 sec Is OS Starting |
| 169 | |