1*** Settings *** 2Documentation Update the PNOR code on a target BMC. 3... Execution Method: 4... python -m robot -v OPENBMC_HOST:<hostname> 5... -v DELETE_OLD_PNOR_IMAGES:<"true" or "false"> 6... -v IMAGE_FILE_PATH:<path/*.tar> 7... -v ALTERNATE_IMAGE_FILE_PATH:<path/*.tar> 8... host_code_update.robot 9... 10... Code update method BMC 11... Update work flow sequence: 12... - Upload image via REST 13... - Verify that the file exists on the BMC 14... - Check that software "Activation" is set to "Ready" 15... - Set "Requested Activation" to "Active" 16... - Wait for code update to complete 17... - Verify the new version 18 19Library ../../lib/bmc_ssh_utils.py 20Library ../../lib/code_update_utils.py 21Variables ../../data/variables.py 22Resource ../../lib/boot_utils.robot 23Resource code_update_utils.robot 24Resource ../../lib/code_update_utils.robot 25Resource ../../lib/openbmc_ffdc.robot 26Resource ../../lib/state_manager.robot 27Resource ../../lib/dump_utils.robot 28 29Test Teardown Code Update Test Teardown 30 31Force Tags Host_Code_Update 32 33*** Variables *** 34 35${QUIET} ${1} 36${IMAGE_FILE_PATH} ${EMPTY} 37${DELETE_OLD_PNOR_IMAGES} false 38${DELETE_OLD_GUARD_FILE} false 39${ALTERNATE_IMAGE_FILE_PATH} ${EMPTY} 40 41*** Test Cases *** 42 43REST Host Code Update 44 [Documentation] Do a PNOR code update by uploading image on BMC via REST. 45 # 1. Delete error logs if there is any. 46 # 1. Do code update. 47 # 2. Do post update the following: 48 # - Collect FFDC if error log exist and delete error logs. 49 [Tags] REST_Host_Code_Update 50 [Setup] Code Update Setup 51 52 Upload And Activate Image ${IMAGE_FILE_PATH} 53 OBMC Reboot (off) 54 55 56Post Update Boot To OS 57 [Documentation] Boot the host OS 58 [Tags] Post_Update_Boot_To_OS 59 [Setup] Start SOL Console Logging 60 [Teardown] Run Keywords Stop SOL Console Logging 61 ... AND Code Update Test Teardown 62 63 Run Keyword If '${PREV_TEST_STATUS}' == 'FAIL' 64 ... Fail Code update failed. No need to boot to OS. 65 Delete Error Logs 66 REST Power On 67 Verify Running Host Image ${IMAGE_FILE_PATH} 68 69 70Host Image Priority Attribute Test 71 [Documentation] Set "Priority" attribute. 72 [Tags] Host_Image_Priority_Attribute_Test 73 [Template] Temporarily Set PNOR Attribute 74 75 # Property Value 76 Priority ${0} 77 Priority ${1} 78 Priority ${127} 79 Priority ${255} 80 81 82Host Set Priority To Invalid Values 83 [Documentation] Attempt to set the priority of an image to an invalid 84 ... value and expect an error. 85 [Tags] Host_Set_Priority_To_Invalid_Values 86 [Template] Set Priority To Invalid Value And Expect Error 87 88 # Version Type Priority 89 ${VERSION_PURPOSE_HOST} ${-1} 90 ${VERSION_PURPOSE_HOST} ${256} 91 92 93Set RequestedActivation To None 94 [Documentation] Set the RequestedActivation of the image to None and 95 ... verify that it is in fact set to None. 96 [Tags] Set_RequestedActivation_To_None 97 98 ${software_objects}= Get Software Objects 99 Set Host Software Property @{software_objects}[0] RequestedActivation 100 ... ${REQUESTED_NONE} 101 ${software_properties}= Get Host Software Property @{software_objects}[0] 102 Should Be Equal As Strings &{software_properties}[RequestedActivation] 103 ... ${REQUESTED_NONE} 104 105 106Set RequestedActivation And Activation To Invalid Value 107 [Documentation] Set the RequestedActivation and Activation propreties of 108 ... the image to an invalid value and verify that it was not 109 ... changed. 110 [Template] Set Property To Invalid Value And Verify No Change 111 [Tags] Set_RequestedActivation_And_Activation_To_Invalid_Value 112 113 # Property Version Type 114 RequestedActivation ${VERSION_PURPOSE_HOST} 115 Activation ${VERSION_PURPOSE_HOST} 116 117 118Upload And Activate Multiple Host Images 119 [Documentation] Upload another PNOR image and verify that its state is 120 ... different from all others. 121 [Tags] Upload_And_Activate_Multiple_Host_Images 122 [Template] Activate Image And Verify No Duplicate Priorities 123 [Setup] Upload And Activate Multiple BMC Images Setup 124 125 # Image File Path Image Purpose 126 ${ALTERNATE_IMAGE_FILE_PATH} ${VERSION_PURPOSE_HOST} 127 128 129Set Same Priority For Multiple Host Images 130 [Documentation] Attempt to set the priority to be the same for two PNOR 131 ... images and verify that the priorities are not the same. 132 [Tags] Set_Same_Priority_For_Multiple_Host_Images 133 134 Run Keyword If '${PREV_TEST_STATUS}' == 'FAIL' 135 ... Fail Activation of alternate image failed. Cannot set priority. 136 Set Same Priority For Multiple Images ${VERSION_PURPOSE_HOST} 137 138 139Delete Host Image 140 [Documentation] Delete a PNOR image from the BMC and PNOR flash chip. 141 [Tags] Delete_Host_Image 142 [Setup] Initiate Host PowerOff 143 144 ${software_objects}= Get Software Objects 145 ... version_type=${VERSION_PURPOSE_HOST} 146 ${num_images}= Get Length ${software_objects} 147 Should Be True 0 < ${num_images} 148 ... msg=There are no PNOR images on the BMC to delete. 149 Delete Image And Verify @{software_objects}[0] ${VERSION_PURPOSE_HOST} 150 151 152*** Keywords *** 153 154Temporarily Set PNOR Attribute 155 [Documentation] Update the PNOR attribute value. 156 [Arguments] ${attribute_name} ${attribute_value} 157 158 # Description of argument(s): 159 # attribute_name Host software attribute name (e.g. "Priority"). 160 # attribute_value Value to be written. 161 162 ${image_ids}= Get Software Objects 163 ${init_host_properties}= Get Host Software Property ${image_ids[0]} 164 ${initial_priority}= Set Variable ${init_host_properties["Priority"]} 165 166 Set Host Software Property ${image_ids[0]} ${attribute_name} 167 ... ${attribute_value} 168 169 ${cur_host_properties}= Get Host Software Property ${image_ids[0]} 170 Should Be Equal As Integers ${cur_host_properties["Priority"]} 171 ... ${attribute_value} 172 173 # Revert to to initial value. 174 Set Host Software Property 175 ... ${image_ids[0]} ${attribute_name} ${initial_priority} 176 177 178Code Update Setup 179 [Documentation] Do code update test case setup. 180 # - Clean up all existing BMC dumps. 181 # - Clean up all currently install PNOR images. 182 183 Run Keyword And Ignore Error Smart Power Off 184 Delete All Dumps 185 Delete Error Logs 186 Run Keyword If 'true' == '${DELETE_OLD_PNOR_IMAGES}' 187 ... Delete All PNOR Images 188 Run Keyword If 'true' == '${DELETE_OLD_GUARD_FILE}' BMC Execute Command 189 ... rm -f /var/lib/phosphor-software-manager/pnor/prsv/GUARD 190 191 192Upload And Activate Multiple BMC Images Setup 193 [Documentation] Check that the ALTERNATE_FILE_PATH variable is set. 194 195 Should Not Be Empty ${ALTERNATE_IMAGE_FILE_PATH} 196 197 198Get PNOR Extended Version 199 [Documentation] Return the PNOR extended version. 200 [Arguments] ${manifest_path} 201 202 # Description of argument(s): 203 # manifest_path Path of the MANIFEST file 204 # (e.g. "/tmp/images/abc123/MANIFEST"). 205 206 ${version}= BMC Execute Command 207 ... grep extended_version= ${manifest_path} 208 [return] ${version.split(",")} 209 210 211Code Update Test Teardown 212 [Documentation] Do code update test case teardown. 213 # 1. Collect FFDC if test case failed. 214 # 2. Collect FFDC if test PASS but error log exists. 215 216 FFDC On Test Case Fail 217 Run Keyword If '${TEST_STATUS}' == 'PASS' Check Error And Collect FFDC 218