aboutsummaryrefslogtreecommitdiffstats
path: root/test/vcpe/loop.py
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-04-13 18:56:22 +0000
committerGerrit Code Review <gerrit@onap.org>2018-04-13 18:56:22 +0000
commit7469b0d68f5021eaba4770f5f30d0b7cda006d37 (patch)
tree8a412fdf9d1c980ea644be431ceb8e28cbc242b2 /test/vcpe/loop.py
parent5dc20735f510020fc422dac0a77a3c1e2dc3d470 (diff)
parent11d278c5adf571bbc1b9d184e78ad3309f8f04d4 (diff)
Merge "Initial code import for vcpe automation."
Diffstat (limited to 'test/vcpe/loop.py')
-rwxr-xr-xtest/vcpe/loop.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/vcpe/loop.py b/test/vcpe/loop.py
new file mode 100755
index 000000000..ad5879715
--- /dev/null
+++ b/test/vcpe/loop.py
@@ -0,0 +1,37 @@
+#! /usr/bin/python
+
+import time
+import logging
+import json
+import mysql.connector
+import ipaddress
+import re
+import sys
+import base64
+from vcpecommon import *
+import preload
+import commands
+import vcpe_custom_service
+
+
+logging.basicConfig(level=logging.INFO, format='%(message)s')
+
+cpecommon = VcpeCommon()
+custom = vcpe_custom_service.CustomService(cpecommon)
+
+nodes=['mux']
+hosts = cpecommon.get_vm_ip(nodes)
+
+custom.del_vgmux_ves_mode(hosts['mux'])
+time.sleep(2)
+custom.del_vgmux_ves_collector(hosts['mux'])
+exit()
+
+time.sleep(2)
+logging.info('Setting vGMUX DCAE collector IP address')
+custom.set_vgmux_ves_collector(hosts['mux'])
+time.sleep(2)
+vgmux_vnf_name = cpecommon.load_object('vgmux_vnf_name')
+logging.info('vGMUX VNF instance name is %s', vgmux_vnf_name)
+logging.info('Letting vGMUX report packet loss to DCAE')
+custom.set_vgmux_packet_loss_rate(hosts['mux'], 55, vgmux_vnf_name)