aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2023-03-24 22:39:50 +0000
committerVijay Venkatesh Kumar <vv770d@att.com>2023-03-24 22:46:15 +0000
commitf759989a43ddbc8991e45697f0682808716f8d16 (patch)
tree8d8c691380e30cc417798c50d29c4a1cef9f90d1 /tests
parentd2e368fcc6f9aeedec1f036d5b5e3e72e1460b59 (diff)
Fix build job error2.6.1
black check failure https://jenkins.onap.org/view/dcaegen2/job/dcaegen2-services-heartbeat-master-release-version-java-daily/lastBuild/console onap-gerrit-review: -changelog-or-release-file-missing Change-Id: I0e57025285ea90c6e649feae0d2e955064b76083 Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com> Issue-ID: DCAEGEN2-3366
Diffstat (limited to 'tests')
-rw-r--r--tests/test_db_monitoring.py140
1 files changed, 71 insertions, 69 deletions
diff --git a/tests/test_db_monitoring.py b/tests/test_db_monitoring.py
index 9d5c3c3..fccbae0 100644
--- a/tests/test_db_monitoring.py
+++ b/tests/test_db_monitoring.py
@@ -34,119 +34,130 @@ _logger = logging.getLogger(__name__)
class Test_db_monitoring(unittest.TestCase):
-
- class PseudoCursorCase1():
+ class PseudoCursorCase1:
# Test setup for RECONFIGURATION state
fetchall_1 = ""
+
@classmethod
- def execute(ctype ,command,arg=None):
+ def execute(ctype, command, arg=None):
global fetchall_1
if command.startswith("SELECT validity_flag, source_name_count, heartbeat_interval,"):
- fetchall_1 = [[1,1,300,1,"TEMP-CL", "1.0","TEMPPOLICY","TEMP","VM","TEMP","1.0"]]
- elif command.startswith ("SELECT last_epo_time, source_name, cl_flag FROM "):
+ fetchall_1 = [[1, 1, 300, 1, "TEMP-CL", "1.0", "TEMPPOLICY", "TEMP", "VM", "TEMP", "1.0"]]
+ elif command.startswith("SELECT last_epo_time, source_name, cl_flag FROM "):
millisec = time.time() * 1000
- fetchall_1 = [[millisec -300 ,"testnodeA",0]]
- elif command.startswith ("SELECT event_name FROM vnf_table_1"):
- fetchall_1 = [["Heartbeat_vDNS","Heartbeat_vFw"]]
- elif command.startswith ("SELECT current_state"):
+ fetchall_1 = [[millisec - 300, "testnodeA", 0]]
+ elif command.startswith("SELECT event_name FROM vnf_table_1"):
+ fetchall_1 = [["Heartbeat_vDNS", "Heartbeat_vFw"]]
+ elif command.startswith("SELECT current_state"):
fetchall_1 = [["RECONFIGURATION"]]
- elif command.startswith ("DELETE "):
+ elif command.startswith("DELETE "):
fetchall_1 = None
- elif command.startswith ("UPDATE"):
+ elif command.startswith("UPDATE"):
fetchall_1 = None
else:
raise RuntimeError("Unknown db execution")
+
@classmethod
- def fetchall (ctype):
+ def fetchall(ctype):
global fetchall_1
return fetchall_1
+
@classmethod
def close(ctype):
pass
- class PseudoCursorCase2():
+ class PseudoCursorCase2:
# Test setup for RUNNING state and CL Onset condition
fetchall_2 = ""
+
@classmethod
- def execute(ctype ,command,arg=None):
+ def execute(ctype, command, arg=None):
global fetchall_2
if command.startswith("SELECT validity_flag, source_name_count, heartbeat_interval,"):
- fetchall_2 = [[1,1,300,1,"TEMP-CL", "1.0","TEMPPOLICY","TEMP","VM","TEMP","1.0"]]
- elif command.startswith ("SELECT last_epo_time, source_name, cl_flag FROM "):
+ fetchall_2 = [[1, 1, 300, 1, "TEMP-CL", "1.0", "TEMPPOLICY", "TEMP", "VM", "TEMP", "1.0"]]
+ elif command.startswith("SELECT last_epo_time, source_name, cl_flag FROM "):
millisec = time.time() * 1000
- fetchall_2 = [[millisec -500 ,"testnodeA",0]]
- elif command.startswith ("SELECT event_name FROM vnf_table_1"):
- fetchall_2 = [["Heartbeat_vDNS","Heartbeat_vFw"]]
- elif command.startswith ("SELECT current_state"):
+ fetchall_2 = [[millisec - 500, "testnodeA", 0]]
+ elif command.startswith("SELECT event_name FROM vnf_table_1"):
+ fetchall_2 = [["Heartbeat_vDNS", "Heartbeat_vFw"]]
+ elif command.startswith("SELECT current_state"):
fetchall_2 = [["RUNNING"]]
- elif command.startswith ("DELETE "):
+ elif command.startswith("DELETE "):
fetchall_2 = None
- elif command.startswith ("UPDATE"):
+ elif command.startswith("UPDATE"):
fetchall_2 = None
else:
raise RuntimeError("Unknown db execution")
+
@classmethod
- def fetchall (ctype):
+ def fetchall(ctype):
global fetchall_2
return fetchall_2
+
@classmethod
def close(ctype):
pass
- class PseudoCursorCase3():
+ class PseudoCursorCase3:
# Test setup for RUNNING state and CL Abatement condition
fetchall_3 = ""
+
@classmethod
- def execute(ctype ,command,arg=None):
+ def execute(ctype, command, arg=None):
global fetchall_3
if command.startswith("SELECT validity_flag, source_name_count, heartbeat_interval,"):
- fetchall_3 = [[1,1,300,1,"TEMP-CL", "1.0","TEMPPOLICY","TEMP","VM","TEMP","1.0"]]
- elif command.startswith ("SELECT last_epo_time, source_name, cl_flag FROM "):
+ fetchall_3 = [[1, 1, 300, 1, "TEMP-CL", "1.0", "TEMPPOLICY", "TEMP", "VM", "TEMP", "1.0"]]
+ elif command.startswith("SELECT last_epo_time, source_name, cl_flag FROM "):
millisec = time.time() * 1000
- fetchall_3 = [[millisec -20 ,"testnodeA",1]]
- elif command.startswith ("SELECT event_name FROM vnf_table_1"):
- fetchall_3 = [["Heartbeat_vDNS","Heartbeat_vFw"]]
- elif command.startswith ("SELECT current_state"):
+ fetchall_3 = [[millisec - 20, "testnodeA", 1]]
+ elif command.startswith("SELECT event_name FROM vnf_table_1"):
+ fetchall_3 = [["Heartbeat_vDNS", "Heartbeat_vFw"]]
+ elif command.startswith("SELECT current_state"):
fetchall_3 = [["RUNNING"]]
- elif command.startswith ("DELETE "):
+ elif command.startswith("DELETE "):
fetchall_3 = None
- elif command.startswith ("UPDATE"):
+ elif command.startswith("UPDATE"):
fetchall_3 = None
else:
raise RuntimeError("Unknown db execution")
+
@classmethod
- def fetchall (ctype):
+ def fetchall(ctype):
global fetchall_3
return fetchall_3
+
@classmethod
def close(ctype):
pass
- class PseudoCursorCase4():
+ class PseudoCursorCase4:
# Test setup for SourceNode not actively tracked for CL (validity_flag=0)
fetchall_4 = ""
+
@classmethod
- def execute(ctype ,command,arg=None):
+ def execute(ctype, command, arg=None):
global fetchall_4
if command.startswith("SELECT validity_flag, source_name_count, heartbeat_interval,"):
- fetchall_4 = [[0,1,300,1,"TEMP-CL", "1.0","TEMPPOLICY","TEMP","VM","TEMP","1.0"]]
- elif command.startswith ("SELECT last_epo_time, source_name, cl_flag FROM "):
+ fetchall_4 = [[0, 1, 300, 1, "TEMP-CL", "1.0", "TEMPPOLICY", "TEMP", "VM", "TEMP", "1.0"]]
+ elif command.startswith("SELECT last_epo_time, source_name, cl_flag FROM "):
millisec = time.time() * 1000
- fetchall_4 = [[millisec -500 ,"testnodeA",0]]
- elif command.startswith ("SELECT event_name FROM vnf_table_1"):
- fetchall_4 = [["Heartbeat_vDNS","Heartbeat_vFw"]]
- elif command.startswith ("SELECT current_state"):
+ fetchall_4 = [[millisec - 500, "testnodeA", 0]]
+ elif command.startswith("SELECT event_name FROM vnf_table_1"):
+ fetchall_4 = [["Heartbeat_vDNS", "Heartbeat_vFw"]]
+ elif command.startswith("SELECT current_state"):
fetchall_4 = [["RUNNING"]]
- elif command.startswith ("DELETE "):
+ elif command.startswith("DELETE "):
fetchall_4 = None
- elif command.startswith ("UPDATE"):
+ elif command.startswith("UPDATE"):
fetchall_4 = None
else:
raise RuntimeError("Unknown db execution")
+
@classmethod
- def fetchall (ctype):
+ def fetchall(ctype):
global fetchall_4
return fetchall_4
+
@classmethod
def close(ctype):
pass
@@ -179,17 +190,15 @@ class Test_db_monitoring(unittest.TestCase):
@patch("misshtbtd.read_hb_common", return_value=("1234", "RUNNING", "XYZ-", 1234))
@patch("htbtworker.postgres_db_open")
- @patch("socket.gethostname", return_value = "XYZ")
- #@patch("db_monitoring.sendControlLoopEvent", return_value = True)
+ @patch("socket.gethostname", return_value="XYZ")
+ # @patch("db_monitoring.sendControlLoopEvent", return_value = True)
def test_db_monitoring(self, mock1, mock2, mock3):
status = True
mock_cursor = Mock()
-
+
## Test setup for RECONFIGURATION state
- mock_cursor.configure_mock(
- **{"cursor.return_value":Test_db_monitoring.PseudoCursorCase1}
- )
+ mock_cursor.configure_mock(**{"cursor.return_value": Test_db_monitoring.PseudoCursorCase1})
mock2.return_value = mock_cursor
# Test for outer else when PID doesn't match
db_monitoring.db_monitoring(
@@ -199,37 +208,31 @@ class Test_db_monitoring(unittest.TestCase):
# Test for RECONFIGURATION state
mock1.cursor.return_value = ("1234", "RECONFIGURATION", "XYZ-", 1234)
db_monitoring.db_monitoring(
- "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
+ "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
)
self.assertEqual(status, True)
## Test for RUNNING state and CL ONSET
- mock_cursor.configure_mock(
- **{"cursor.return_value":Test_db_monitoring.PseudoCursorCase2}
- )
+ mock_cursor.configure_mock(**{"cursor.return_value": Test_db_monitoring.PseudoCursorCase2})
mock2.return_value = mock_cursor
db_monitoring.db_monitoring(
- "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
+ "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
)
self.assertEqual(status, True)
## Test for RUNNING state and CL Abatement condition
- mock_cursor.configure_mock(
- **{"cursor.return_value":Test_db_monitoring.PseudoCursorCase3}
- )
- mock2.return_value = mock_cursor
+ mock_cursor.configure_mock(**{"cursor.return_value": Test_db_monitoring.PseudoCursorCase3})
+ mock2.return_value = mock_cursor
db_monitoring.db_monitoring(
- "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name" , 1
+ "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
)
self.assertEqual(status, True)
## # Test setup for SourceNode not actively tracked for CL (validity_flag=0)
- mock_cursor.configure_mock(
- **{"cursor.return_value":Test_db_monitoring.PseudoCursorCase4}
- )
+ mock_cursor.configure_mock(**{"cursor.return_value": Test_db_monitoring.PseudoCursorCase4})
mock2.return_value = mock_cursor
db_monitoring.db_monitoring(
- "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
+ "1234", htbtworker.configjsonfile, "testuser", "testpwd", "10.0.0.0", "1234", "db_name", 1
)
self.assertEqual(status, True)
@@ -246,15 +249,14 @@ class Test_db_monitoring(unittest.TestCase):
@classmethod
def switch_filepath(ctype, jsonfile):
- #print (f"ctype: {ctype} type : {type(ctype)}")
+ # print (f"ctype: {ctype} type : {type(ctype)}")
time.sleep(5)
- os.rename(htbtworker.configjsonfile+"_1", htbtworker.configjsonfile)
-
+ os.rename(htbtworker.configjsonfile + "_1", htbtworker.configjsonfile)
def test_db_monitoring_wrapper(self):
status = True
db_monitoring.db_monitoring_wrapper("111", htbtworker.configjsonfile, number_of_iterations=0)
- self.assertEqual(status, True)
+ self.assertEqual(status, True)
if __name__ == "__main__": # pragma: no cover