aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_trapd_vnf_table.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_trapd_vnf_table.py')
-rw-r--r--tests/test_trapd_vnf_table.py51
1 files changed, 29 insertions, 22 deletions
diff --git a/tests/test_trapd_vnf_table.py b/tests/test_trapd_vnf_table.py
index e8ef5d0..b88b4d5 100644
--- a/tests/test_trapd_vnf_table.py
+++ b/tests/test_trapd_vnf_table.py
@@ -1,10 +1,8 @@
# ============LICENSE_START=======================================================
-# org.onap.dcae
-# ================================================================================
-# Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2021 AT&T Intellectual Property. All rights reserved.
# Copyright (c) 2019 Pantheon.tech. All rights reserved.
-# Copyright 2020 Deutsche Telekom. All rights reserved.
-# Copyright 2021 Fujitsu Ltd.
+# Copyright (c) 2020 Deutsche Telekom. All rights reserved.
+# Copyright (c) 2021 Fujitsu Ltd.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -26,12 +24,20 @@ test_trapd_vnf_table contains test cases related to DB Tables and cbs polling.
import logging
import unittest
from mod.trapd_vnf_table import (
- verify_DB_creation_1, verify_DB_creation_2, verify_DB_creation_hb_common,
- hb_properties, verify_cbspolling,
- verify_sendControlLoop_VNF_ONSET, verify_sendControlLoop_VM_ONSET,
- verify_sendControlLoop_VNF_ABATED, verify_sendControlLoop_VM_ABATED,
- verify_fetch_json_file, verify_misshtbtdmain, verify_dbmonitoring,
- verify_dbmon_startup)
+ verify_DB_creation_1,
+ verify_DB_creation_2,
+ verify_DB_creation_hb_common,
+ hb_properties,
+ verify_cbspolling,
+ verify_sendControlLoop_VNF_ONSET,
+ verify_sendControlLoop_VM_ONSET,
+ verify_sendControlLoop_VNF_ABATED,
+ verify_sendControlLoop_VM_ABATED,
+ verify_fetch_json_file,
+ verify_misshtbtdmain,
+ verify_dbmonitoring,
+ verify_dbmon_startup,
+)
_logger = logging.getLogger(__name__)
@@ -40,19 +46,20 @@ class test_vnf_tables(unittest.TestCase):
"""
Test the DB Creation
"""
+
global ip_address, port_num, user_name, password, db_name, cbs_polling_required, cbs_polling_interval
ip_address, port_num, user_name, password, db_name, cbs_polling_required, cbs_polling_interval = hb_properties()
def test_validate_vnf_table_1(self):
- result =verify_DB_creation_1(user_name,password,ip_address,port_num,db_name)
+ result = verify_DB_creation_1(user_name, password, ip_address, port_num, db_name)
self.assertEqual(result, True)
def test_validate_vnf_table_2(self):
- result =verify_DB_creation_2(user_name,password,ip_address,port_num,db_name)
+ result = verify_DB_creation_2(user_name, password, ip_address, port_num, db_name)
self.assertEqual(result, True)
def test_validate_hb_common(self):
- result =verify_DB_creation_hb_common(user_name,password,ip_address,port_num,db_name)
+ result = verify_DB_creation_hb_common(user_name, password, ip_address, port_num, db_name)
self.assertEqual(result, True)
def test_cbspolling(self):
@@ -60,41 +67,41 @@ class test_vnf_tables(unittest.TestCase):
verify_cbspolling()
def test_fetch_json_file(self):
- result= verify_fetch_json_file()
+ result = verify_fetch_json_file()
_logger.info(result)
self.assertEqual(result, True)
def test_misshtbtdmain(self):
- result= verify_misshtbtdmain()
+ result = verify_misshtbtdmain()
_logger.info(result)
self.assertEqual(result, True)
def test_dbmon_startup(self):
- result= verify_dbmon_startup()
+ result = verify_dbmon_startup()
_logger.info(result)
self.assertEqual(result, True)
def test_dbmonitoring(self):
- result= verify_dbmonitoring()
+ result = verify_dbmonitoring()
_logger.info(result)
self.assertEqual(result, True)
def test_sendControlLoop_VNF_ONSET(self):
- result= verify_sendControlLoop_VNF_ONSET()
+ result = verify_sendControlLoop_VNF_ONSET()
_logger.info(result)
self.assertEqual(result, True)
def test_sendControlLoop_VM_ONSET(self):
- result= verify_sendControlLoop_VM_ONSET()
+ result = verify_sendControlLoop_VM_ONSET()
_logger.info(result)
self.assertEqual(result, True)
def test_sendControlLoop_VNF_ABATED(self):
- result= verify_sendControlLoop_VNF_ABATED()
+ result = verify_sendControlLoop_VNF_ABATED()
_logger.info(result)
self.assertEqual(result, True)
def test_sendControlLoop_VM_ABATED(self):
- result= verify_sendControlLoop_VM_ABATED()
+ result = verify_sendControlLoop_VM_ABATED()
_logger.info(result)
self.assertEqual(result, True)