X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=ric_robot_suite%2Frobot%2Ftestsuites%2Fricdeployment.robot;h=36a745f38a657f207497618e92063752080117ea;hb=refs%2Fchanges%2F92%2F11892%2F1;hp=5bede0ad348437e089a89cb68dd3b48775f86a95;hpb=fb793dbf21da9874a5f26dfce45c4a08f4b02889;p=it%2Ftest.git diff --git a/ric_robot_suite/robot/testsuites/ricdeployment.robot b/ric_robot_suite/robot/testsuites/ricdeployment.robot index 5bede0a..36a745f 100644 --- a/ric_robot_suite/robot/testsuites/ricdeployment.robot +++ b/ric_robot_suite/robot/testsuites/ricdeployment.robot @@ -16,7 +16,8 @@ *** Settings *** Documentation Tests for the existence and functionality of RIC components -Resource /robot/resources/global_properties.robot +Resource ../resources/global_properties.robot +Resource ../resources/ric/ric_utils.robot Library KubernetesEntity ${GLOBAL_RICPLT_NAMESPACE} Library Collections @@ -25,18 +26,17 @@ Library String *** Test Cases *** Deployments [Tags] etetests k8stests ci_tests - :FOR ${component} IN @{GLOBAL_RICPLT_COMPONENTS} - \ ${deploymentName} = Get From Dictionary ${GLOBAL_RICPLT_COMPONENTS} ${Component} - \ ${deploy} = Deployment ${deploymentName} - \ ${status} = Most Recent Availability Condition @{deploy.status.conditions} - \ Should Be Equal As Strings ${status} True ignore_case=True msg=${Component} is not available - -*** Keywords *** -Most Recent Availability Condition - # this makes the probably-unsafe assumption that the conditions are ordered - # temporally. - [Arguments] @{Conditions} - ${status} = Set Variable 'False' - :FOR ${Condition} IN @{Conditions} - \ ${status} = Set Variable If '${Condition.type}' == 'Available' ${Condition.status} ${status} - [Return] ${status} + FOR ${component} IN @{GLOBAL_RICPLT_COMPONENTS} + ${controllerName} = Get From Dictionary ${GLOBAL_RICPLT_COMPONENTS} ${Component} + ${cType} ${name} = Split String ${controllerName} | + ${ctrl} = Run Keyword ${cType} ${name} + Should Be Equal ${ctrl.status.replicas} ${ctrl.status.ready_replicas} + # this doesn't seem to exist for statefulsets + ${status} = Run Keyword If '${cType}' == 'deployment' + ... ${status} = Most Recent Availability Condition @{deploy.status.conditions} + ... ELSE + ... Set Variable 'True' + Should Be Equal As Strings ${status} True ignore_case=True msg=${Component} is not available + END + + \ No newline at end of file