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