[VVP] Update validations based on VNFRQTS-637
[vvp/validation-scripts.git] / ice_validator / tests / test_allowed_address_pairs_include_vm_type_network_role.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 import re
40
41 from .helpers import validates
42 from .utils.ports import check_parameter_format
43 from tests.structures import (
44     NeutronPortProcessor,
45     ContrailV2VirtualMachineInterfaceProcessor,
46 )
47
48 VERSION = "1.0.0"
49
50 # pylint: disable=invalid-name
51
52 RE_EXTERNAL_PARAM_AAP = re.compile(  # match pattern
53     r"(?P<vm_type>.+)_(?P<network_role>.+)_floating(_v6)?_ip$"
54 )
55
56 RE_INTERNAL_PARAM_AAP = re.compile(  # match pattern
57     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ip$"
58 )
59
60 RE_INTERNAL_PARAM_AAPS = re.compile(  # match pattern
61     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ips$"
62 )
63
64 aap_regx_dict = {
65     "external": {
66         "string": {
67             "readable": "{vm-type}_{network-role}_floating_ip or {vm-type}_{network-role}_floating_v6_ip",
68             "machine": RE_EXTERNAL_PARAM_AAP,
69         }
70     },
71     "internal": {
72         "string": {
73             "readable": "{vm-type}_int_{network-role}_floating_ip or {vm-type}_int_{network-role}_floating_v6_ip",
74             "machine": RE_INTERNAL_PARAM_AAP,
75         },
76         "comma_delimited_list": {
77             "readable": "{vm-type}_int_{network-role}_floating_ips or {vm-type}_int_{network-role}_floating_v6_ips",
78             "machine": RE_INTERNAL_PARAM_AAPS,
79         },
80     },
81     "parameter_to_resource_comparisons": ["vm_type", "network_role"],
82 }
83
84
85 @validates("R-41492", "R-35735", "R-159016", "R-91810", "R-41956", "R-41493")
86 def test_external_aap_format(yaml_file):
87     check_parameter_format(
88         yaml_file,
89         aap_regx_dict,
90         "external",
91         NeutronPortProcessor,
92         "allowed_address_pairs",
93         "ip_address",
94         exemptions_allowed=True,
95     )
96
97
98 @validates("R-717227", "R-805572")
99 def test_internal_aap_format(yaml_file):
100     check_parameter_format(
101         yaml_file,
102         aap_regx_dict,
103         "internal",
104         NeutronPortProcessor,
105         "allowed_address_pairs",
106         "ip_address",
107     )
108
109
110 @validates("R-100280", "R-100290", "R-100310", "R-100330", "R-100350", "R-41493")
111 def test_external_aap_format_contrail(yaml_file):
112     check_parameter_format(
113         yaml_file,
114         aap_regx_dict,
115         "external",
116         ContrailV2VirtualMachineInterfaceProcessor,
117         "virtual_machine_interface_allowed_address_pairs",
118         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair",
119         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip",
120         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix",
121         exemptions_allowed=True,
122     )
123
124
125 @validates("R-100360", "R-100370")
126 def test_contrail_internal_vmi_aap_parameter(yaml_file):
127     check_parameter_format(
128         yaml_file,
129         aap_regx_dict,
130         "internal",
131         ContrailV2VirtualMachineInterfaceProcessor,
132         "virtual_machine_interface_allowed_address_pairs",
133         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair",
134         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip",
135         "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix",
136     )