X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Ftest%2Fcore%2Ftest_common_consumer.py;h=0306893beb07deb41c2c4418e47521b79f2f5796;hb=27153c4846a5caeee4a430527fd87cd322408f4b;hp=ddbdf8b796c50878e83cd79eaafadcdeef28e330;hpb=2a1f7bc83b827fe3c11cbefd0c724e281d75b365;p=osm%2FMON.git diff --git a/osm_mon/test/core/test_common_consumer.py b/osm_mon/test/core/test_common_consumer.py index ddbdf8b..0306893 100644 --- a/osm_mon/test/core/test_common_consumer.py +++ b/osm_mon/test/core/test_common_consumer.py @@ -3,6 +3,7 @@ import unittest import mock from kafka import KafkaProducer from kafka.errors import KafkaError +from osm_common import dbmongo from osm_mon.core.database import VimCredentials from osm_mon.core.message_bus.common_consumer import * @@ -51,7 +52,8 @@ class CommonConsumerTest(unittest.TestCase): 'internal-connection-point': [], 'vdu-id-ref': 'ubuntuvnf_vnfd-VM', 'id': 'ffd73f33-c8bb-4541-a977-44dcc3cbe28d', - 'vim-id': '27042672-5190-4209-b844-95bbaeea7ea7' + 'vim-id': '27042672-5190-4209-b844-95bbaeea7ea7', + 'name': 'ubuntuvnf_vnfd-VM' } ], 'vnfd-ref': 'ubuntuvnf_vnfd', @@ -60,12 +62,13 @@ class CommonConsumerTest(unittest.TestCase): 'vnfd-id': 'a314c865-aee7-4d9b-9c9d-079d7f857f01', 'id': 'a314c865-aee7-4d9b-9c9d-079d7f857f01'} common_consumer = CommonConsumer() - vdur = common_consumer.get_vdur('5ec3f571-d540-4cb0-9992-971d1b08312e', '1', 'ubuntuvnf_vnfd-VM') + vdur = common_consumer.common_db.get_vdur('5ec3f571-d540-4cb0-9992-971d1b08312e', '1', 'ubuntuvnf_vnfd-VM') expected_vdur = { 'internal-connection-point': [], 'vdu-id-ref': 'ubuntuvnf_vnfd-VM', 'id': 'ffd73f33-c8bb-4541-a977-44dcc3cbe28d', - 'vim-id': '27042672-5190-4209-b844-95bbaeea7ea7' + 'vim-id': '27042672-5190-4209-b844-95bbaeea7ea7', + 'name': 'ubuntuvnf_vnfd-VM' } self.assertDictEqual(vdur, expected_vdur)