Update openjdk version to 19 and yang2swagger version to 2.1.0
[osm/IM.git] / tests / test_python.py
index f6b4f7d..2d090b8 100644 (file)
@@ -1,3 +1,18 @@
+#  Copyright 2020 ETSI
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+#  you may not use this file except in compliance with the License.
+#  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+#  Unless required by applicable law or agreed to in writing, software
+#  distributed under the License is distributed on an "AS IS" BASIS,
+#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+#  implied.
+#  See the License for the specific language governing permissions and
+#  limitations under the License.
+#
 import osm_im.vnfd as vnfd_catalog
 from pyangbind.lib.serialise import pybindJSONDecoder
 import unittest
@@ -44,7 +59,7 @@ vnfd-catalog:
             -   name: eth0
                 type: EXTERNAL
                 virtual-interface:
-                    type: VIRTIO
+                    type: PARAVIRT
                     bandwidth: '0'
                     vpci: 0000:00:0a.0
                 external-connection-point-ref: eth0
@@ -70,7 +85,7 @@ class PythonTest(unittest.TestCase):
         """
 
         try:
-            data = yaml.load(VNFD_YAML)
+            data = yaml.safe_load(VNFD_YAML)
 
             myvnfd = vnfd_catalog.vnfd()
             pybindJSONDecoder.load_ietf_json(data, None, None, obj=myvnfd)