[VVP] remove tests for 88540, 20947, 54458
[vvp/validation-scripts.git] / ice_validator / tests / test_contrail_instance_ip_resource_id.py
1 # -*- coding: utf8 -*-
2 # ============LICENSE_START====================================================
3 # org.onap.vvp/validation-scripts
4 # ===================================================================
5 # Copyright © 2019 AT&T Intellectual Property. All rights reserved.
6 # ===================================================================
7 #
8 # Unless otherwise specified, all software contained herein is licensed
9 # under the Apache License, Version 2.0 (the "License");
10 # you may not use this software except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #             http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 #
21 #
22 #
23 # Unless otherwise specified, all documentation contained herein is licensed
24 # under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25 # you may not use this documentation except in compliance with the License.
26 # You may obtain a copy of the License at
27 #
28 #             https://creativecommons.org/licenses/by/4.0/
29 #
30 # Unless required by applicable law or agreed to in writing, documentation
31 # distributed under the License is distributed on an "AS IS" BASIS,
32 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 # See the License for the specific language governing permissions and
34 # limitations under the License.
35 #
36 # ============LICENSE_END============================================
37 #
38 #
39 """
40 resources:
41 {vm-type}_server_{vm-type_index}
42 """
43 import pytest
44
45 from .structures import Heat
46 from .structures import ContrailV2InstanceIpProcessor
47 from .helpers import validates
48
49 VERSION = "2.0.0"
50
51
52 def run_test(heat_template, regex_names, network_flavor):
53     """run test
54     """
55     heat = Heat(filepath=heat_template)
56     processor = ContrailV2InstanceIpProcessor
57     resource_type = processor.resource_type
58     resources = heat.get_resource_by_type(resource_type=resource_type)
59     if not resources:
60         pytest.skip("No %s resources found" % resource_type)
61     bad = []
62     rid_patterns = processor.get_rid_patterns()
63     for rid, resource in resources.items():
64         flavor = processor.get_network_flavor(resource)
65         if flavor != network_flavor:
66             continue
67         regex_name = processor.get_rid_match_tuple(rid)[0]
68         if regex_name in regex_names:
69             continue
70         bad.append(rid)
71     assert not bad, "%s resource ids %s must match one of %s" % (
72         network_flavor,
73         bad,
74         [v for k, v in rid_patterns.items() if k in regex_names],
75     )
76
77
78 # pylint: disable=invalid-name
79
80
81 @validates("R-53310", "R-46128")
82 def test_contrail_instance_ip_resource_id_external(yaml_file):
83     """
84     A VNF's Heat Orchestration Template's Resource OS::ContrailV2::InstanceIp
85     that is configuring an IPv4 Address on a port attached to an external
86     network
87     Resource ID **MUST** use the naming convention
88
89     {vm-type}_{vm-type_index}_{network-role}_vmi_{vmi_index}
90             _IP_{index}
91
92     A VNF's Heat Orchestration Template's Resource OS::ContrailV2::InstanceIp
93     that is configuring an IPv6 Address on a port attached to an external
94     network
95     Resource ID **MUST** use the naming convention
96
97     {vm-type}_{vm-type_index}_{network-role}_vmi_{vmi_index}
98             _v6_IP_{index}
99
100     """
101
102     run_test(
103         yaml_file,
104         regex_names=("ip", "v6_ip"),
105         network_flavor=ContrailV2InstanceIpProcessor.network_flavor_external,
106     )
107
108
109 @validates("R-62187", "R-87563")
110 def test_contrail_instance_ip_resource_id_internal(yaml_file):
111     """
112     internal
113     {vm-type}_{vm-type_index}_int_{network-role}_vmi_{vmi_index}
114             _IP_{index}
115     {vm-type}_{vm-type_index}_int_{network-role}_vmi_{vmi_index}
116             _v6_IP_{index}
117     """
118     run_test(
119         yaml_file,
120         regex_names=("int_ip", "int_v6_ip"),
121         network_flavor=ContrailV2InstanceIpProcessor.network_flavor_internal,
122     )