X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_contrail_vmi_resource_id.py;h=ed8f87dbe03ae367bab6aa16005fc9704260267c;hb=0c4e64d87728b89aa9cd4d41d738f5bfe64ceee3;hp=35f16e6da130e81e11303efa168afb0d42b27f89;hpb=1f4df7c7ad27b23773ad9cdbe4db1632ce388cf1;p=vvp%2Fvalidation-scripts.git diff --git a/ice_validator/tests/test_contrail_vmi_resource_id.py b/ice_validator/tests/test_contrail_vmi_resource_id.py index 35f16e6..ed8f87d 100644 --- a/ice_validator/tests/test_contrail_vmi_resource_id.py +++ b/ice_validator/tests/test_contrail_vmi_resource_id.py @@ -2,7 +2,7 @@ # ============LICENSE_START==================================================== # org.onap.vvp/validation-scripts # =================================================================== -# Copyright © 2017 AT&T Intellectual Property. All rights reserved. +# Copyright © 2019 AT&T Intellectual Property. All rights reserved. # =================================================================== # # Unless otherwise specified, all software contained herein is licensed @@ -35,27 +35,26 @@ # # ============LICENSE_END============================================ # -# ECOMP is a trademark and service mark of AT&T Intellectual Property. # -import pytest - -from .structures import Heat -from .structures import ContrailV2VirtualMachineInterface -from .helpers import validates """ resources: {vm-type}_server_{vm-type_index} """ +import pytest -VERSION = "1.0.0" +from .structures import Heat +from .structures import ContrailV2VirtualMachineInterfaceProcessor +from .helpers import validates + +VERSION = "2.0.0" def run_test(heat_template, regex_name, network_flavor): """run test """ heat = Heat(filepath=heat_template) - heat_object_class = ContrailV2VirtualMachineInterface + heat_object_class = ContrailV2VirtualMachineInterfaceProcessor resource_type = heat_object_class.resource_type resources = heat.get_resource_by_type(resource_type=resource_type) if not resources: @@ -82,7 +81,7 @@ def run_test(heat_template, regex_name, network_flavor): @validates("R-96253") -def test_contrail_instance_ip_resource_id_external(heat_template): +def test_contrail_instance_ip_resource_id_external(yaml_file): """ A VNF's Heat Orchestration Template's Resource OS::ContrailV2::VirtualMachineInterface that is attaching to an @@ -92,14 +91,14 @@ def test_contrail_instance_ip_resource_id_external(heat_template): {vm-type}_{vm-type_index}_{network-role}_vmi_{vmi_index} """ run_test( - heat_template, - regex_name="vmi_external", - network_flavor=ContrailV2VirtualMachineInterface.network_flavor_external, + yaml_file, + regex_name="external", + network_flavor=ContrailV2VirtualMachineInterfaceProcessor.network_flavor_external, ) @validates("R-50468") -def test_contrail_instance_ip_resource_id_internal(heat_template): +def test_contrail_instance_ip_resource_id_internal(yaml_file): """ A VNF's Heat Orchestration Template's Resource OS::ContrailV2::VirtualMachineInterface that is attaching to an @@ -109,24 +108,7 @@ def test_contrail_instance_ip_resource_id_internal(heat_template): {vm-type}_{vm-type_index}_int_{network-role}_vmi_{vmi_index} """ run_test( - heat_template, - regex_name="vmi_internal", - network_flavor=ContrailV2VirtualMachineInterface.network_flavor_internal, - ) - - -@validates("R-54458") -def test_contrail_instance_ip_resource_id_subint(heat_template): - """ - A VNF's Heat Orchestration Template's Resource - OS::ContrailV2::VirtualMachineInterface that is attaching to an - sub-interface network - Resource ID **MUST** use the naming convention - - {vm-type}_{vm-type_index}_subint_{network-role}_vmi_{vmi_index} - """ - run_test( - heat_template, - regex_name="vmi_subint", - network_flavor=ContrailV2VirtualMachineInterface.network_flavor_subint, + yaml_file, + regex_name="internal", + network_flavor=ContrailV2VirtualMachineInterfaceProcessor.network_flavor_internal, )