Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Code update to a target BMC. |
| 3 | ... Execution Method: |
| 4 | ... python -m robot -v OPENBMC_HOST:<hostname> |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 5 | ... -v DELETE_OLD_PNOR_IMAGES:<"true" or "false"> |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 6 | ... -v IMAGE_FILE_PATH:<path/*.tar> code_update.robot |
| 7 | ... |
| 8 | ... Code update method BMC |
| 9 | ... Update work flow sequence: |
| 10 | ... - Upload image via REST |
| 11 | ... - Verify that the file exists on the BMC |
| 12 | ... - Check software "Activation" status to be "Ready" |
| 13 | ... - Set "Requested Activation" to "Active" |
| 14 | ... - Wait for code update to complete |
| 15 | ... - Verify the new version |
| 16 | |
| 17 | #TODO: Move test_uploadimage.py to lib/ |
| 18 | Library ../test_uploadimage.py |
| 19 | Library code_update.py |
| 20 | Library OperatingSystem |
| 21 | Variables ../../data/variables.py |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 22 | Resource ../lib/rest_client.robot |
| 23 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | d3fb592 | 2017-08-08 07:32:25 -0500 | [diff] [blame^] | 24 | Resource ../../lib/code_update_utils.robot |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 25 | |
| 26 | Test Teardown Code Update Teardown |
| 27 | |
| 28 | *** Variables *** |
| 29 | |
| 30 | ${QUIET} ${1} |
| 31 | ${version_id} ${EMPTY} |
| 32 | ${upload_dir_path} /tmp/images/ |
| 33 | ${image_version} ${EMPTY} |
| 34 | ${image_purpose} ${EMPTY} |
| 35 | ${activation_state} ${EMPTY} |
| 36 | ${requested_state} ${EMPTY} |
| 37 | ${IMAGE_FILE_PATH} ${EMPTY} |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 38 | ${DELETE_OLD_PNOR_IMAGES} false |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 39 | |
| 40 | *** Test Cases *** |
| 41 | |
Charles Paul Hofer | 9a5c722 | 2017-08-03 18:21:08 -0500 | [diff] [blame] | 42 | REST Host Code Update |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 43 | [Documentation] Do a PNOR code update by uploading image on BMC via REST. |
Charles Paul Hofer | 9a5c722 | 2017-08-03 18:21:08 -0500 | [diff] [blame] | 44 | [Tags] REST_Host_Code_Update |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 45 | [Setup] Code Update Setup |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 46 | |
| 47 | OperatingSystem.File Should Exist ${IMAGE_FILE_PATH} |
| 48 | ${IMAGE_VERSION}= Get Version Tar ${IMAGE_FILE_PATH} |
| 49 | |
| 50 | ${image_data}= OperatingSystem.Get Binary File ${IMAGE_FILE_PATH} |
| 51 | Upload Image To BMC /upload/image data=${image_data} |
| 52 | ${ret}= Verify Image Upload |
| 53 | Should Be True ${ret} |
| 54 | |
| 55 | # Verify the image is 'READY' to be activated. |
George Keishing | ff1e3ec | 2017-07-20 01:58:21 -0500 | [diff] [blame] | 56 | ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id} |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 57 | Should Be Equal As Strings &{software_state}[Activation] ${READY} |
| 58 | |
| 59 | # Request the image to be activated. |
| 60 | ${args}= Create Dictionary data=${REQUESTED_ACTIVE} |
George Keishing | ff1e3ec | 2017-07-20 01:58:21 -0500 | [diff] [blame] | 61 | Write Attribute ${SOFTWARE_VERSION_URI}${version_id} |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 62 | ... RequestedActivation data=${args} |
George Keishing | ff1e3ec | 2017-07-20 01:58:21 -0500 | [diff] [blame] | 63 | ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id} |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 64 | Should Be Equal As Strings &{software_state}[RequestedActivation] |
| 65 | ... ${REQUESTED_ACTIVE} |
| 66 | |
| 67 | # Verify code update was successful and Activation state is Active. |
| 68 | Wait For Activation State Change ${version_id} ${ACTIVATING} |
George Keishing | ff1e3ec | 2017-07-20 01:58:21 -0500 | [diff] [blame] | 69 | ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id} |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 70 | Should Be Equal As Strings &{software_state}[Activation] ${ACTIVE} |
| 71 | |
George Keishing | d3fb592 | 2017-08-08 07:32:25 -0500 | [diff] [blame^] | 72 | |
| 73 | Host Image Priority Attribute Test |
| 74 | [Documentation] Set "Priority" attribute. |
| 75 | [Tags] Host_Image_Priority_Attribute_Test |
| 76 | [Template] Set PNOR Attribute |
| 77 | |
| 78 | # Property Value |
| 79 | Priority ${0} |
| 80 | Priority ${1} |
| 81 | Priority ${127} |
| 82 | |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 83 | *** Keywords *** |
| 84 | |
George Keishing | d3fb592 | 2017-08-08 07:32:25 -0500 | [diff] [blame^] | 85 | Set PNOR Attribute |
| 86 | [Documentation] Update the attribute value. |
| 87 | [Arguments] ${attribute_name} ${value} |
| 88 | |
| 89 | # Description of argument(s): |
| 90 | # attribute_name Host software attribute name (e.g. "Priority"). |
| 91 | # value Value to be written. |
| 92 | |
| 93 | ${image_ids}= Get Software Objects |
| 94 | ${resp}= Get Host Software Property ${image_ids[0]} |
| 95 | ${initial_value}= Set Variable ${resp["Priority"]} |
| 96 | |
| 97 | Set Host Software Property ${image_ids[0]} ${attribute_name} ${value} |
| 98 | |
| 99 | ${resp}= Get Host Software Property ${image_ids[0]} |
| 100 | Should Be Equal As Integers ${resp["Priority"]} ${value} |
| 101 | |
| 102 | # Revert to to initial value. |
| 103 | Set Host Software Property |
| 104 | ... ${image_ids[0]} ${attribute_name} ${initial_value} |
| 105 | |
| 106 | |
Charles Paul Hofer | 2c73164 | 2017-08-03 18:13:27 -0500 | [diff] [blame] | 107 | Code Update Setup |
| 108 | [Documentation] Do code update test case setup. |
| 109 | |
| 110 | Run Keyword If 'true' == '${DELETE_OLD_PNOR_IMAGES}' |
| 111 | ... Delete All PNOR Images |
| 112 | |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 113 | Code Update Teardown |
| 114 | [Documentation] Do code update test case teardown. |
| 115 | |
| 116 | #TODO: Use the Delete interface instead once delivered |
| 117 | Open Connection And Log In |
| 118 | Execute Command On BMC rm -rf /tmp/images/* |
| 119 | |
| 120 | Close All Connections |
| 121 | FFDC On Test Case Fail |
| 122 | |
| 123 | Get PNOR Extended Version |
| 124 | [Documentation] Return the PNOR extended version. |
| 125 | ... Description of arguments: |
| 126 | ... path Path of the MANIFEST file |
| 127 | [Arguments] ${path} |
| 128 | |
| 129 | Open Connection And Log In |
| 130 | ${version}= Execute Command On BMC |
| 131 | ... "grep \"extended_version=\" " + ${path} |
| 132 | [return] ${version.split(",")} |