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 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 9 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 10 | Suite Setup Open Connection And Log In |
| 11 | Suite Teardown Close All Connections |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 12 | Test Setup Initialize DBUS cmd "boot_policy" |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 13 | Test Teardown FFDC On Test Case Fail |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 14 | |
| 15 | *** Variables *** |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 16 | ${HOST_SETTINGS} ${SETTINGS_URI}host0 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 17 | |
| 18 | *** Test Cases *** |
| 19 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 20 | Set Boot Policy To ONETIME via REST |
| 21 | [Documentation] Set boot policy to ONETIME using REST URI and verify |
| 22 | ... using ipmitool. |
| 23 | [Tags] Set_Boot_Policy_To_ONETIME_via_REST |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 24 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 25 | Set Boot Policy ONETIME |
| 26 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 27 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 28 | Should Be Equal ${boot} ONETIME |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 29 | ${output} ${stderr}= Execute Command ${dbuscmd} return_stderr=True |
| 30 | Should Be Empty ${stderr} |
| 31 | Should Contain ${output} ONETIME |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 32 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 33 | Set Boot Policy To PERMANENT via REST |
| 34 | [Documentation] Set boot policy to PERMANENT via REST URI and verify |
| 35 | ... using ipmitool. |
| 36 | [Tags] Set_Boot_Policy_To_PERMANENT_via_REST |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 37 | |
| 38 | Set Boot Policy PERMANENT |
| 39 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 40 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 41 | Should Be Equal ${boot} PERMANENT |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 42 | ${output} ${stderr}= Execute Command ${dbuscmd} return_stderr=True |
| 43 | Should Be Empty ${stderr} |
| 44 | Should Contain ${output} PERMANENT |
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 |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 54 | ${output} ${stderr}= Execute Command ${dbuscmd} return_stderr=True |
| 55 | Should Be Empty ${stderr} |
| 56 | Should Contain ${output} ONETIME |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 57 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 58 | Set Boot Policy To PERMANENT via IPMITOOL |
| 59 | [Documentation] Set boot policy to PERMANENT via ipmitool and verify |
| 60 | ... using REST URI. |
| 61 | [Tags] Set_Boot_Policy_To_PERMANENT_via_IPMITOOL |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 62 | |
| 63 | Run IPMI command 0x0 0x8 0x05 0xC0 0x00 0x00 0x00 0x00 |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 64 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 65 | Should Be Equal ${boot} PERMANENT |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 66 | ${output} ${stderr}= Execute Command ${dbuscmd} return_stderr=True |
| 67 | Should Be Empty ${stderr} |
| 68 | Should Contain ${output} PERMANENT |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 69 | |
George Keishing | bc7cc58 | 2017-01-23 12:58:34 -0600 | [diff] [blame] | 70 | Test Boot Order via REST |
| 71 | [Documentation] Set boot policy to PERMANENT and boot device to CDROM |
| 72 | ... and verify that the order doesn't change post power on. |
| 73 | [Tags] chassisboot Test_Boot_Order_via_REST |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 74 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 75 | Initiate Power Off |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 76 | |
| 77 | Set Boot Policy PERMANENT |
| 78 | |
| 79 | Set Boot Device CDROM |
| 80 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 81 | Initiate Power On |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 82 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 83 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 84 | Should Be Equal ${boot} PERMANENT |
| 85 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 86 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 87 | Should Be Equal ${flag} CDROM |
| 88 | |
George Keishing | d320688 | 2016-11-29 04:41:14 -0600 | [diff] [blame] | 89 | Persist ONETIME Boot Policy After Reset |
| 90 | [Documentation] Verify ONETIME boot policy order does not change |
| 91 | ... on warm reset. |
Sridevi Ramesh | b4e6795 | 2017-01-19 00:58:10 -0600 | [diff] [blame] | 92 | [Tags] chassisboot Persist_ONETIME_Boot_Policy_After_Reset |
causten | 147f575 | 2016-08-11 16:24:45 -0500 | [diff] [blame] | 93 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 94 | Initiate Power On |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 95 | |
| 96 | Set Boot Policy ONETIME |
| 97 | |
| 98 | Set Boot Device Network |
| 99 | |
| 100 | Trigger Warm Reset |
| 101 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 102 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 103 | Should Be Equal ${boot} ONETIME |
| 104 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 105 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 106 | Should Be Equal ${flag} Network |
| 107 | |
George Keishing | d320688 | 2016-11-29 04:41:14 -0600 | [diff] [blame] | 108 | Persist PERMANENT Boot Policy After Reset |
| 109 | [Documentation] Verify PERMANENT boot policy order does not change |
| 110 | ... on warm reset. |
| 111 | [Tags] chassisboot Persist_PERMANENT_Boot_Policy_After_Reset |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 112 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 113 | Initiate Power On |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 114 | |
| 115 | Set Boot Policy PERMANENT |
| 116 | |
| 117 | Set Boot Device CDROM |
| 118 | |
| 119 | Trigger Warm Reset |
| 120 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 121 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 122 | Should Be Equal ${boot} PERMANENT |
| 123 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 124 | ${flag}= Read Attribute ${HOST_SETTINGS} boot_flags |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 125 | Should Be Equal ${flag} CDROM |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 126 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 127 | Set Boot Policy To Invalid Value |
George Keishing | 5f62a4a | 2016-11-16 02:09:17 -0600 | [diff] [blame] | 128 | [Documentation] This testcase verify that the boot policy doesn't get |
| 129 | ... updated with invalid policy supplied by user. |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 130 | [Tags] Set_Boot_Policy_To_Invalid_Value |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 131 | |
George Keishing | 5f62a4a | 2016-11-16 02:09:17 -0600 | [diff] [blame] | 132 | Run Keyword and Ignore Error Set Boot Policy abc |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 133 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 134 | ${boot}= Read Attribute ${HOST_SETTINGS} boot_policy |
George Keishing | 314cf85 | 2016-08-26 09:02:16 -0500 | [diff] [blame] | 135 | Should Not Be Equal ${boot} abc |
| 136 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 137 | *** Keywords *** |
| 138 | |
| 139 | Set Boot Policy |
| 140 | [Arguments] ${args} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 141 | ${bootpolicy}= Set Variable ${args} |
| 142 | ${valueDict}= create dictionary data=${bootpolicy} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 143 | Write Attribute ${HOST_SETTINGS} boot_policy data=${valueDict} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 144 | |
| 145 | Set Boot Device |
| 146 | [Arguments] ${args} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 147 | ${bootDevice} = Set Variable ${args} |
| 148 | ${valueDict} = create dictionary data=${bootDevice} |
| 149 | Write Attribute ${HOST_SETTINGS} boot_flags data=${valueDict} |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 150 | |
| 151 | |
| 152 | |