[VVP] Support pluggable data sources for preload data
[vvp/validation-scripts.git] / ice_validator / tests / test_neutron_port_fixed_ips_subnet.py
1 # -*- coding: utf8 -*-
2 # ============LICENSE_START====================================================
3 # org.onap.vvp/validation-scripts
4 # ===================================================================
5 # Copyright © 2017 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 import re
40
41 import pytest
42
43 from tests.utils.network_roles import get_network_type_from_port
44
45 from tests.structures import Heat
46 from tests.helpers import validates, load_yaml, get_base_template_from_yaml_files
47 from tests.utils.nested_files import get_nested_files
48 from .utils.ports import check_parameter_format
49 from tests.structures import NeutronPortProcessor
50
51 RE_EXTERNAL_PARAM_SUBNET = re.compile(  # match pattern
52     r"(?P<network_role>.+?)(_v6)?_subnet_id$"
53 )
54
55 RE_INTERNAL_PARAM_SUBNET = re.compile(  # match pattern
56     r"int_(?P<network_role>.+?)(_v6)?_subnet_id$"
57 )
58
59 fip_regx_dict = {
60     "external": {
61         "string": {
62             "readable": "{network-role}_subnet_id or {network-role}_v6_subnet_id",
63             "machine": RE_EXTERNAL_PARAM_SUBNET,
64         }
65     },
66     "internal": {
67         "string": {
68             "readable": "int_{network-role}_subnet_id or int_{network-role}_v6_subnet_id",
69             "machine": RE_INTERNAL_PARAM_SUBNET,
70         }
71     },
72     "parameter_to_resource_comparisons": ["network_role"],
73 }
74
75
76 @validates("R-38236", "R-84123", "R-76160")
77 def test_internal_subnet_format(yaml_file):
78     check_parameter_format(
79         yaml_file,
80         fip_regx_dict,
81         "internal",
82         NeutronPortProcessor,
83         "fixed_ips",
84         "subnet",
85     )
86
87
88 @validates("R-38236", "R-62802", "R-15287")
89 def test_external_subnet_format(yaml_file):
90     check_parameter_format(
91         yaml_file,
92         fip_regx_dict,
93         "external",
94         NeutronPortProcessor,
95         "fixed_ips",
96         "subnet",
97     )
98
99
100 @validates("R-84123", "R-76160")
101 def test_neutron_port_internal_fixed_ips_subnet_in_base(yaml_files):
102     base_path = get_base_template_from_yaml_files(yaml_files)
103     if not base_path:
104         pytest.skip("No base module detected")
105     base_heat = load_yaml(base_path)
106     base_outputs = base_heat.get("outputs") or {}
107     nested_template_paths = get_nested_files(yaml_files)
108     errors = []
109
110     for yaml_file in yaml_files:
111         if yaml_file == base_path or yaml_file in nested_template_paths:
112             continue  # Only applies to incremental modules
113         heat = Heat(filepath=yaml_file)
114         internal_ports = {
115             r_id: p
116             for r_id, p in heat.neutron_port_resources.items()
117             if get_network_type_from_port(p) == "internal"
118         }
119         for r_id, port in internal_ports.items():
120             props = port.get("properties") or {}
121             fip_list = props.get("fixed_ips") or []
122             if not isinstance(fip_list, list):
123                 continue
124             for ip in fip_list:
125                 subnet = ip.get("subnet")
126                 if not subnet:
127                     continue
128
129                 if "get_param" not in subnet:
130                     continue
131                 param = subnet.get("get_param")
132                 if param not in base_outputs:
133                     errors.append(
134                         (
135                             "Internal fixed_ips/subnet parameter {} is attached to "
136                             "port {}, but the subnet parameter "
137                             "is not defined as an output in the base module ({})."
138                         ).format(param, r_id, base_path)
139                     )
140
141     assert not errors, " ".join(errors)