[VVP] updating OS::Neutron::Port parameter tests
[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 © 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 from .helpers import validates
42 from .utils.ports import check_ip_format
43
44 VERSION = "1.0.0"
45
46 # pylint: disable=invalid-name
47
48 RE_EXTERNAL_PARAM_AAP = re.compile(  # match pattern
49     r"(?P<vm_type>.+)_(?P<network_role>.+)_floating(_v6)?_ip$"
50 )
51
52 RE_INTERNAL_PARAM_AAP = re.compile(  # match pattern
53     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ip$"
54 )
55
56 RE_INTERNAL_PARAM_AAPS = re.compile(  # match pattern
57     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ips$"
58 )
59
60 aap_regx_dict = {
61     "external": {
62         "string": {
63             "readable": "{vm-type}_{network-role}_floating_ip or {vm-type}_{network-role}_floating_v6_ip",
64             "machine": RE_EXTERNAL_PARAM_AAP,
65         }
66     },
67     "internal": {
68         "string": {
69             "readable": "{vm-type}_int_{network-role}_floating_ip or {vm-type}_int_{network-role}_floating_v6_ip",
70             "machine": RE_INTERNAL_PARAM_AAP,
71         },
72         "comma_delimited_list": {
73             "readable": "{vm-type}_int_{network-role}_floating_ips or {vm-type}_int_{network-role}_floating_v6_ips",
74             "machine": RE_INTERNAL_PARAM_AAPS,
75         },
76     },
77     "parameter_to_resource_comparisons": ["vm_type", "network_role"],
78 }
79
80
81 @validates("R-41492", "R-35735", "R-159016")
82 def test_external_aap_format(yaml_file):
83     check_ip_format(
84         yaml_file, aap_regx_dict, "external", "allowed_address_pairs", "ip_address"
85     )
86
87
88 @validates("R-717227", "R-805572")
89 def test_internal_aap_format(yaml_file):
90     check_ip_format(
91         yaml_file, aap_regx_dict, "internal", "allowed_address_pairs", "ip_address"
92     )