blob: 27a274bea2a846af016553b914335dc518c158c5 [file] [log] [blame]
Saqib Khanbb8b63f2017-05-24 10:58:01 -05001*** Settings ***
2Documentation Code update to a target BMC.
3... Execution Method:
4... python -m robot -v OPENBMC_HOST:<hostname>
Charles Paul Hofer2c731642017-08-03 18:13:27 -05005... -v DELETE_OLD_PNOR_IMAGES:<"true" or "false">
Saqib Khanbb8b63f2017-05-24 10:58:01 -05006... -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/
18Library ../test_uploadimage.py
19Library code_update.py
20Library OperatingSystem
21Variables ../../data/variables.py
22Resource code_update_utils.robot
23Resource ../lib/rest_client.robot
24Resource ../lib/openbmc_ffdc.robot
25
26Test 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 Hofer2c731642017-08-03 18:13:27 -050038${DELETE_OLD_PNOR_IMAGES} false
Saqib Khanbb8b63f2017-05-24 10:58:01 -050039
40*** Test Cases ***
41
42REST PNOR Code Update
43 [Documentation] Do a PNOR code update by uploading image on BMC via REST.
44 [Tags] REST_PNOR_Code_Update
Charles Paul Hofer2c731642017-08-03 18:13:27 -050045 [Setup] Code Update Setup
Saqib Khanbb8b63f2017-05-24 10:58:01 -050046
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 Keishingff1e3ec2017-07-20 01:58:21 -050056 ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Saqib Khanbb8b63f2017-05-24 10:58:01 -050057 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 Keishingff1e3ec2017-07-20 01:58:21 -050061 Write Attribute ${SOFTWARE_VERSION_URI}${version_id}
Saqib Khanbb8b63f2017-05-24 10:58:01 -050062 ... RequestedActivation data=${args}
George Keishingff1e3ec2017-07-20 01:58:21 -050063 ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Saqib Khanbb8b63f2017-05-24 10:58:01 -050064 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 Keishingff1e3ec2017-07-20 01:58:21 -050069 ${software_state}= Read Properties ${SOFTWARE_VERSION_URI}${version_id}
Saqib Khanbb8b63f2017-05-24 10:58:01 -050070 Should Be Equal As Strings &{software_state}[Activation] ${ACTIVE}
71
72*** Keywords ***
73
Charles Paul Hofer2c731642017-08-03 18:13:27 -050074Code Update Setup
75 [Documentation] Do code update test case setup.
76
77 Run Keyword If 'true' == '${DELETE_OLD_PNOR_IMAGES}'
78 ... Delete All PNOR Images
79
Saqib Khanbb8b63f2017-05-24 10:58:01 -050080Code Update Teardown
81 [Documentation] Do code update test case teardown.
82
83 #TODO: Use the Delete interface instead once delivered
84 Open Connection And Log In
85 Execute Command On BMC rm -rf /tmp/images/*
86
87 Close All Connections
88 FFDC On Test Case Fail
89
90Get PNOR Extended Version
91 [Documentation] Return the PNOR extended version.
92 ... Description of arguments:
93 ... path Path of the MANIFEST file
94 [Arguments] ${path}
95
96 Open Connection And Log In
97 ${version}= Execute Command On BMC
98 ... "grep \"extended_version=\" " + ${path}
99 [return] ${version.split(",")}