X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_policy_module%2Ftests%2Funit%2Futils%2Ftest_vnfd_utils.py;h=1474a1c9f21271a0ee763ca9bf0b90a626af4cf1;hb=4584f8e86a492d67d120bfea1195eff1475c0a65;hp=049d2939803e00d1326bff6bcf3d89b6c43ab966;hpb=e8ee171063d81a02033729273793f5ba2c2b71cc;p=osm%2FPOL.git diff --git a/osm_policy_module/tests/unit/utils/test_vnfd_utils.py b/osm_policy_module/tests/unit/utils/test_vnfd_utils.py index 049d293..1474a1c 100644 --- a/osm_policy_module/tests/unit/utils/test_vnfd_utils.py +++ b/osm_policy_module/tests/unit/utils/test_vnfd_utils.py @@ -31,16 +31,20 @@ from osm_policy_module.core.exceptions import ManagementVduNotFound class VnfdUtilsTest(unittest.TestCase): def test_get_mgmt_vdu_on_valid_descriptor(self): - example_file = os.path.join(os.path.dirname(__file__), 'examples/cirros_vdu_scaling_vnfd.yaml') - with open(example_file, 'r') as file: - vnfd = yaml.safe_load(file)['vnfd'] + example_file = os.path.join( + os.path.dirname(__file__), "examples/cirros_vdu_scaling_vnfd.yaml" + ) + with open(example_file, "r") as file: + vnfd = yaml.safe_load(file)["vnfd"] vdu = VnfdUtils.get_mgmt_vdu(vnfd) - self.assertEqual(vdu['id'], 'cirros_vnfd-VM') + self.assertEqual(vdu["id"], "cirros_vnfd-VM") def test_get_mgmt_vdu_on_invalid_descriptor(self): - example_file = os.path.join(os.path.dirname(__file__), 'examples/cirros_vdu_scaling_vnfd.yaml') - with open(example_file, 'r') as file: - vnfd = yaml.safe_load(file)['vnfd'] - vnfd['mgmt-cp'] = 'invalid-cp' + example_file = os.path.join( + os.path.dirname(__file__), "examples/cirros_vdu_scaling_vnfd.yaml" + ) + with open(example_file, "r") as file: + vnfd = yaml.safe_load(file)["vnfd"] + vnfd["mgmt-cp"] = "invalid-cp" with self.assertRaises(ManagementVduNotFound): VnfdUtils.get_mgmt_vdu(vnfd)