X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_contrail_instance_ip_resource_id.py;h=2833d5b978ce395ddb0084455a6c812d5af12406;hb=503041fb7ec395fe57e418d584c4a5d06f4c9877;hp=d08938eb83d79364a38bd06c8587302b1e1f3b87;hpb=10535815da964c683e5f91030934652bfb3f53b8;p=vvp%2Fvalidation-scripts.git diff --git a/ice_validator/tests/test_contrail_instance_ip_resource_id.py b/ice_validator/tests/test_contrail_instance_ip_resource_id.py index d08938e..2833d5b 100644 --- a/ice_validator/tests/test_contrail_instance_ip_resource_id.py +++ b/ice_validator/tests/test_contrail_instance_ip_resource_id.py @@ -36,10 +36,6 @@ # ============LICENSE_END============================================ # # -""" -resources: -{vm-type}_server_{vm-type_index} -""" import pytest from .structures import Heat @@ -64,8 +60,9 @@ def run_test(heat_template, regex_names, network_flavor): flavor = processor.get_network_flavor(resource) if flavor != network_flavor: continue + regex_name = processor.get_rid_match_tuple(rid)[0] - if regex_name in regex_names: + if regex_name and regex_name in regex_names: continue bad.append(rid) assert not bad, "%s resource ids %s must match one of %s" % ( @@ -101,7 +98,7 @@ def test_contrail_instance_ip_resource_id_external(yaml_file): run_test( yaml_file, - regex_names=("ip", "v6_ip"), + regex_names=("external"), network_flavor=ContrailV2InstanceIpProcessor.network_flavor_external, ) @@ -117,22 +114,6 @@ def test_contrail_instance_ip_resource_id_internal(yaml_file): """ run_test( yaml_file, - regex_names=("int_ip", "int_v6_ip"), + regex_names=("internal"), network_flavor=ContrailV2InstanceIpProcessor.network_flavor_internal, ) - - -@validates("R-20947", "R-88540") -def test_contrail_instance_ip_resource_id_subint(yaml_file): - """ - subint - {vm-type}_{vm-type_index}_subint_{network-role}_vmi_{vmi_index} - _IP_{index} - {vm-type}_{vm-type_index}_subint_{network-role}_vmi_{vmi_index} - _v6_IP_{index} - """ - run_test( - yaml_file, - regex_names=("subint_ip", "subint_v6_ip"), - network_flavor=ContrailV2InstanceIpProcessor.network_flavor_subint, - )