| *** Settings *** |
| Documentation Create VNFC in AAI |
| |
| Resource aai_interface.robot |
| Library ONAPLibrary.Templating WITH NAME Templating |
| Library ONAPLibrary.AAI WITH NAME AAI |
| |
| *** Variables *** |
| ${VNFC_ROOT_PATH} /network/vnfcs/vnfc |
| |
| ${AAI_ADD_VNFC_BODY}= aai/add_vnfc_body.jinja |
| |
| *** Keywords *** |
| Create VNFC If Not Exists |
| [Documentation] Creates VNFC in A&AI if it doesn't exist |
| [Arguments] ${vnfc_name} ${vnfc_nc} ${vnfc_func} |
| ${get_resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_INDEX_PATH}${VNFC_ROOT_PATH}/${vnfc_name} auth=${GLOBAL_AAI_AUTHENTICATION} |
| Return From Keyword If '${get_resp.status_code}' == '200' |
| Create VNFC ${vnfc_name} ${vnfc_nc} ${vnfc_func} |
| |
| Create VNFC |
| [Documentation] Creates VNFC in A&AI |
| [Arguments] ${vnfc_name} ${vnfc_nc} ${vnfc_func} |
| ${arguments}= Create Dictionary vnfc_name=${vnfc_name} vnfc_nc=${vnfc_nc} vnfc_func=${vnfc_func} |
| Templating.Create Environment aai ${GLOBAL_TEMPLATE_FOLDER} |
| ${data}= Templating.Apply Template aai ${AAI_ADD_VNFC_BODY} ${arguments} |
| ${put_resp}= AAI.Run Put Request ${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_INDEX_PATH}${VNFC_ROOT_PATH}/${vnfc_name} ${data} auth=${GLOBAL_AAI_AUTHENTICATION} |
| ${status_string}= Convert To String ${put_resp.status_code} |
| Should Match Regexp ${status_string} ^(201|200)$ |
| |
| Delete VNFC If Exists |
| [Documentation] Removes VNFC from AAI if it exists |
| [Arguments] ${vnfc_name} |
| ${get_resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_INDEX_PATH}${VNFC_ROOT_PATH}/${vnfc_name} auth=${GLOBAL_AAI_AUTHENTICATION} |
| Run Keyword If '${get_resp.status_code}' == '200' Delete VNFC ${vnfc_name} ${get_resp.json()} |
| |
| Delete VNFC |
| [Documentation] Removes VNFC from AAI |
| [Arguments] ${vnfc_name} ${json} |
| ${resource_version}= Catenate ${json['resource-version']} |
| ${put_resp}= AAI.Run Delete Request ${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_INDEX_PATH}${VNFC_ROOT_PATH}/${vnfc_name} ${resource_version} auth=${GLOBAL_AAI_AUTHENTICATION} |
| Should Be Equal As Strings ${put_resp.status_code} 204 |
| |
| Get VNFC |
| [Documentation] Return VNFC |
| [Arguments] ${vnfc_name} |
| ${resp}= AAI.Run Get Request ${AAI_FRONTEND_ENDPOINT} ${GLOBAL_AAI_INDEX_PATH}${VNFC_ROOT_PATH}/${vnfc_name} auth=${GLOBAL_AAI_AUTHENTICATION} |
| Should Be Equal As Strings ${resp.status_code} 200 |
| [Return] ${resp.json()} |