From 46bdca548f2242ea43e23aa3c5f76dac6a67a68d Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 19 Oct 2021 09:51:41 +0200 Subject: [PATCH] Update SA02 test to add keyword Get Scale-Out Threshold From VNF Change-Id: If90414440d3e23f566e976409728e3ab9c4ae1c6 Signed-off-by: garciadeblas --- ...sa_02-vnf_with_vim_metrics_and_autoscaling_data.py | 5 ++--- .../sa_02-vnf_with_vim_metrics_and_autoscaling.robot | 11 +++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/robot-systest/resources/sa_02-vnf_with_vim_metrics_and_autoscaling_data.py b/robot-systest/resources/sa_02-vnf_with_vim_metrics_and_autoscaling_data.py index 15a4477..1824990 100644 --- a/robot-systest/resources/sa_02-vnf_with_vim_metrics_and_autoscaling_data.py +++ b/robot-systest/resources/sa_02-vnf_with_vim_metrics_and_autoscaling_data.py @@ -21,9 +21,8 @@ from common_helpers import get_prometheus_info # Prometheus polling interval and retries prometheus_poll_retries = '15 times' prometheus_poll_timeout = '1 minute' -# Prometheus metric and threshold +# Prometheus metric metric_name = 'osm_cpu_utilization' -metric_threshold = 40 # Get ${HOME} from local machine home = str(Path.home()) # NS and VNF descriptor package folder @@ -33,7 +32,7 @@ nsd_pkg = 'hackfest_basic_metrics_ns' vnfd_name = 'hackfest_basic_metrics-vnf' nsd_name = 'hackfest_basic-ns-metrics' # NS instance name -ns_name = 'sa_02-vnf_with_vim_metrics_and_autoscaling_test' +ns_name = 'sa_02' # SSH keys to be used publickey = home + '/.ssh/id_rsa.pub' privatekey = home + '/.ssh/id_rsa' diff --git a/robot-systest/testsuite/sa_02-vnf_with_vim_metrics_and_autoscaling.robot b/robot-systest/testsuite/sa_02-vnf_with_vim_metrics_and_autoscaling.robot index fb9621c..24e4bdd 100644 --- a/robot-systest/testsuite/sa_02-vnf_with_vim_metrics_and_autoscaling.robot +++ b/robot-systest/testsuite/sa_02-vnf_with_vim_metrics_and_autoscaling.robot @@ -37,6 +37,7 @@ ${vnf_member_index} 1 ${vnf_ip_addr} ${EMPTY} ${vnf_id} ${EMPTY} ${ns_config} {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] } +${success_return_code} 0 *** Test Cases *** @@ -46,6 +47,16 @@ Create VNF Descriptor Create VNFD '%{PACKAGES_FOLDER}/${vnfd_pkg}' +Get Scale-Out Threshold From VNF + [Tags] vnf_vim_metrics_autoscaling sanity regression + + ${rc} ${stdout}= Run and Return RC and Output osm vnfpkg-show ${vnfd_name} --literal | yq '.df[0]."scaling-aspect"[0]."scaling-policy"[0]."scaling-criteria"[0]."scale-out-threshold"' | tr -d \\" + Should Be Equal As Integers ${rc} ${success_return_code} msg=${stdout} values=False + ${scaleout_threshold}= Convert To Number ${stdout} + Set Suite Variable ${metric_threshold} ${scaleout_threshold} + log ${metric_threshold} + + Create NS Descriptor [Tags] vnf_vim_metrics_autoscaling sanity regression -- 2.25.1