Feature 10909: Robot tests for healing
[osm/tests.git] / robot-systest / lib / vnf_lib.robot
index 7b7d86d..d58c3dd 100644 (file)
@@ -49,3 +49,26 @@ Get VDU VIM Id
     Should Be Equal As Integers   ${rc}   ${success_return_code}   msg=${vm_vim_id}   values=False
     [Return]   ${vm_vim_id}
 
+
+Get Vnf Vdur IPs
+    [Documentation]     Return a list with the IP addresses of the VDU records of a VNF instance.
+
+    [Arguments]  ${vnf_id}
+
+    Should Not Be Empty   ${vnf_id}
+    ${rc}  ${stdout}=  Run and Return RC and Output  osm vnf-show ${vnf_id} --literal | yq '.vdur[].interfaces[]."ip-address"' | tr -d \\"
+    Should Be Equal As Integers  ${rc}  ${success_return_code}  msg=${stdout}  values=False
+    @{ip} =  Split String  ${stdout}
+    [Return]  @{ip}
+
+
+Get Vdu Attribute
+    [Documentation]     Return an attribute from VDU records selected by count_index of a VNF instance.
+
+    [Arguments]  ${vnf_id}   ${attribute}   ${count_index}=0
+
+    Should Not Be Empty   ${vnf_id}
+    Should Not Be Empty   ${attribute}
+    ${rc}  ${stdout}=  Run and Return RC and Output  osm vnf-show ${vnf_id} --literal | yq '.vdur[] | select(."count-index" == ${count_index})' | yq '."${attribute}"' | tr -d \\"
+    Should Be Equal As Integers  ${rc}  ${success_return_code}  msg=${stdout}  values=False
+    [Return]  ${stdout}