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=2ce1bcfb6c02927fce5ac4c4e5a97485305d31ae;hb=503041fb7ec395fe57e418d584c4a5d06f4c9877;hp=83dd5e399a8e7e6a97af3c0d9c77938872611b8e;hpb=0e1794537b96149737abf4e6373665eee3579ffe;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 83dd5e3..2ce1bcf 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,23 +40,24 @@ 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 - r"(?P.+)_(?P.+[^(v6)])(_v6)?_ip_(?P.+)$" + r"(?P.+)_(?P.+?)(_v6)?_ip_(?P.+)$" ) RE_EXTERNAL_PARAM_FIPS = re.compile( # match pattern - r"(?P.+)_(?P.+[^(v6)])(_v6)?_ips$" + r"(?P.+)_(?P.+?)(_v6)?_ips$" ) RE_INTERNAL_PARAM_FIP = re.compile( # match pattern - r"(?P.+)_int_(?P.+[^(v6)])(_v6)?_ip_(?P.+)$" + r"(?P.+)_int_(?P.+?)(_v6)?_ip_(?P.+)$" ) RE_INTERNAL_PARAM_FIPS = re.compile( # match pattern - r"(?P.+)_int_(?P.+[^(v6)])(_v6)?_ips$" + r"(?P.+)_int_(?P.+?)(_v6)?_ips$" ) fip_regx_dict = { @@ -86,9 +87,9 @@ 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")