X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=osm_nbi%2Ftests%2Ftest_pmjobs_topic.py;h=d83cc69ed65e4f5ad7406923407b747278005802;hp=5bcb3834ab734d81e3a692446b0638bc2a9b7376;hb=f417d52971f2b32525b283227e6f7e9d7fdbd133;hpb=f5cfef2584dcc6152fa76b6594793a671ea25b79 diff --git a/osm_nbi/tests/test_pmjobs_topic.py b/osm_nbi/tests/test_pmjobs_topic.py index 5bcb383..d83cc69 100644 --- a/osm_nbi/tests/test_pmjobs_topic.py +++ b/osm_nbi/tests/test_pmjobs_topic.py @@ -24,7 +24,8 @@ from osm_nbi.engine import EngineException from osm_common.dbmemory import DbMemory from osm_nbi.pmjobs_topics import PmJobsTopic from osm_nbi.tests.test_db_descriptors import db_nsds_text, db_vnfds_text, db_nsrs_text, db_vnfrs_text -from osm_nbi.tests.pmjob_mocks.response import show_res, prom_res, cpu_utilization, users, load, empty +from osm_nbi.tests.pmjob_mocks.response import show_res, cpu_utilization, users, load, empty +# from osm_nbi.tests.pmjob_mocks.response import prom_res class PmJobsTopicTest(asynctest.TestCase): @@ -74,17 +75,17 @@ class PmJobsTopicTest(asynctest.TestCase): self.assertIn("NS not found with id {}".format(wrong_ns_id), str(e.exception), "Wrong exception text") - async def test_prom_metric_request(self): - with self.subTest("Test case1 failed in test_prom"): - prom_response = yaml.load(prom_res, Loader=yaml.Loader) - with aioresponses() as mock_res: - self.set_get_mock_res(mock_res, self.nsr_id, self.metric_check_list) - result = await self.pmjobs_topic._prom_metric_request(self.nsr_id, self.metric_check_list) - self.assertCountEqual(result, prom_response, "Metric Data is valid") - with self.subTest("Test case2 failed in test_prom"): - with self.assertRaises(EngineException, msg="Prometheus not reachable") as e: - await self.pmjobs_topic._prom_metric_request(self.nsr_id, self.metric_check_list) - self.assertIn("Connection to ", str(e.exception), "Wrong exception text") + # async def test_prom_metric_request(self): + # with self.subTest("Test case1 failed in test_prom"): + # prom_response = yaml.load(prom_res, Loader=yaml.Loader) + # with aioresponses() as mock_res: + # self.set_get_mock_res(mock_res, self.nsr_id, self.metric_check_list) + # result = await self.pmjobs_topic._prom_metric_request(self.nsr_id, self.metric_check_list) + # self.assertCountEqual(result, prom_response, "Metric Data is valid") + # with self.subTest("Test case2 failed in test_prom"): + # with self.assertRaises(EngineException, msg="Prometheus not reachable") as e: + # await self.pmjobs_topic._prom_metric_request(self.nsr_id, self.metric_check_list) + # self.assertIn("Connection to ", str(e.exception), "Wrong exception text") def test_show(self): with self.subTest("Test case1 failed in test_show"):