X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_fixed_ips_include_vm_type_network_role.py;h=feb48e59db82cb43571a3e7df7180fb834a4db4c;hb=0c4e64d87728b89aa9cd4d41d738f5bfe64ceee3;hp=4c62528d1c1538e7d4dff3e53b1ac184a4f1afd5;hpb=96f1a57785ffb99b523bb370a08c93f0ac395393;p=vvp%2Fvalidation-scripts.git diff --git a/ice_validator/tests/test_fixed_ips_include_vm_type_network_role.py b/ice_validator/tests/test_fixed_ips_include_vm_type_network_role.py index 4c62528..feb48e5 100644 --- a/ice_validator/tests/test_fixed_ips_include_vm_type_network_role.py +++ b/ice_validator/tests/test_fixed_ips_include_vm_type_network_role.py @@ -40,7 +40,8 @@ import re from .helpers import validates -from .utils.ports import check_ip_format +from .utils.ports import check_parameter_format +from tests.structures import NeutronPortProcessor RE_EXTERNAL_PARAM_FIP = re.compile( # match pattern @@ -86,9 +87,23 @@ fip_regx_dict = { @validates("R-40971", "R-35735", "R-23503", "R-71577", "R-04697", "R-34037") def test_external_fip_format(yaml_file): - check_ip_format(yaml_file, fip_regx_dict, "external", "fixed_ips", "ip_address") + check_parameter_format( + yaml_file, + fip_regx_dict, + "external", + NeutronPortProcessor, + "fixed_ips", + "ip_address", + ) @validates("R-27818", "R-29765", "R-85235", "R-78380", "R-34037") def test_internal_fip_format(yaml_file): - check_ip_format(yaml_file, fip_regx_dict, "internal", "fixed_ips", "ip_address") + check_parameter_format( + yaml_file, + fip_regx_dict, + "internal", + NeutronPortProcessor, + "fixed_ips", + "ip_address", + )