Adds test SA-08 for VNF metrics with SNMP exporters 85/9485/2
authorgarciaale <agarcia@whitestack.com>
Mon, 20 Jul 2020 17:29:46 +0000 (13:29 -0400)
committergarciaale <agarcia@whitestack.com>
Wed, 22 Jul 2020 15:06:18 +0000 (17:06 +0200)
Change-Id: Ic77945005fec0a410c1075b1b35c7cdcead6dc37
Signed-off-by: garciaale <agarcia@whitestack.com>
robot-systest/resources/sa_08-vnf_with_vnf_indicators_snmp_data.py [new file with mode: 0644]
robot-systest/testsuite/sa_08-vnf_with_vnf_indicators_snmp.robot [new file with mode: 0644]

diff --git a/robot-systest/resources/sa_08-vnf_with_vnf_indicators_snmp_data.py b/robot-systest/resources/sa_08-vnf_with_vnf_indicators_snmp_data.py
new file mode 100644 (file)
index 0000000..449b61e
--- /dev/null
@@ -0,0 +1,38 @@
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+from pathlib import Path
+import os
+
+# Prometheus host and port
+if os.environ.get('PROMETHEUS_HOSTNAME', False):
+    prometheus_host = os.environ.get('PROMETHEUS_HOSTNAME')
+    prometheus_port = '9090'
+else:
+    prometheus_host = os.environ.get('OSM_HOSTNAME')
+    prometheus_port = '9091'
+
+# Prometheus metrics to retrieve
+metric_1_name = 'ifInOctets'
+metric_1_filter = 'ifIndex=1'
+metric_2_name = 'ifMtu'
+metric_2_filter = 'ifIndex=2'
+# Get ${HOME} from local machine
+home = str(Path.home())
+# NS and VNF descriptor package folder
+vnfd_pkg = 'snmp_ee_vnf'
+nsd_pkg = 'snmp_ee_ns'
+# NS and VNF descriptor id
+vnfd_name = 'snmp_ee-vnf'
+nsd_name = 'snmp_ee-ns'
+# NS instance name
+ns_name = 'sa_08-vnf_with_vnf_indicators_snmp_test'
diff --git a/robot-systest/testsuite/sa_08-vnf_with_vnf_indicators_snmp.robot b/robot-systest/testsuite/sa_08-vnf_with_vnf_indicators_snmp.robot
new file mode 100644 (file)
index 0000000..9409a9a
--- /dev/null
@@ -0,0 +1,92 @@
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+*** Settings ***
+Documentation     [SA-08] VNF with VNF-based indicators through SNMP.
+
+Library   OperatingSystem
+Library   String
+Library   Collections
+
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/vnfd_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/nsd_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ns_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/ssh_lib.robot
+Resource   %{ROBOT_DEVOPS_FOLDER}/lib/prometheus_lib.robot
+
+Variables   %{ROBOT_DEVOPS_FOLDER}/resources/sa_08-vnf_with_vnf_indicators_snmp_data.py
+
+Suite Teardown   Run Keyword And Ignore Error   Test Cleanup
+
+
+*** Variables ***
+${ns_config}   {vld: [ {name: mgmtnet, vim-network-name: %{VIM_MGMT_NET}} ] }
+
+
+*** Test Cases ***
+Create VNF Descriptor
+    [Tags]   vnf_indicators_snmp   sanity   regression
+
+    Create VNFD  '%{PACKAGES_FOLDER}/${vnfd_pkg}'
+
+
+Create NS Descriptor
+    [Tags]   vnf_indicators_snmp   sanity   regression
+
+    Create NSD  '%{PACKAGES_FOLDER}/${nsd_pkg}'
+
+
+Instantiate Network Service
+    [Tags]   vnf_indicators_snmp   sanity   regression
+
+    ${id}=  Create Network Service  ${nsd_name}  %{VIM_TARGET}  ${ns_name}  ${ns_config}  ${EMPTY}
+    Set Suite Variable  ${ns_id}  ${id}
+
+
+Get VNF SNMP Metrics
+    [Tags]   vnf_indicators_snmp   sanity   regression
+
+    Variable Should Exist  ${prometheus_host}  msg=Prometheus address is not available
+    Variable Should Exist  ${prometheus_port}  msg=Prometheus port is not available
+    Variable Should Exist  ${metric_1_name}  msg=Prometheus first metric name is not available
+    Variable Should Exist  ${metric_2_name}  msg=Prometheus second metric name is not available
+    ${metric_1_value}=  Wait Until Keyword Succeeds  6 times  1 minutes  Get Metric  ${prometheus_host}  ${prometheus_port}  ${metric_1_name}  ${metric_1_filter}
+    Run Keyword Unless  ${metric_1_value} > 0  Fail  msg=The metric '${metric_1_name}' value is '${metric_1_value}'
+    ${metric_2_value}=  Wait Until Keyword Succeeds  6 times  1 minutes  Get Metric  ${prometheus_host}  ${prometheus_port}  ${metric_2_name}  ${metric_2_filter}
+    Run Keyword Unless  ${metric_2_value} > 0  Fail  msg=The metric '${metric_2_name}' value is '${metric_2_value}'
+
+
+Delete NS Instance
+    [Tags]   vnf_indicators_snmp   sanity   regression  cleanup
+
+    Delete NS  ${ns_name}
+
+
+Delete NS Descriptor
+    [Tags]   vnf_indicators_snmp   sanity   regression  cleanup
+
+    Delete NSD  ${nsd_name}
+
+
+Delete VNF Descriptor
+    [Tags]   vnf_indicators_snmp   sanity   regression  cleanup
+
+    Delete VNFD  ${vnfd_name}
+
+
+*** Keywords ***
+Test Cleanup
+    [Documentation]  Test Suite Cleanup: Deleting descriptors and NS instance
+
+    Run Keyword If Test Failed  Delete NS  ${ns_name}
+    Run Keyword If Test Failed  Delete NSD  ${nsd_name}
+    Run Keyword If Test Failed  Delete VNFD  ${vnfd_name}