[VVP] Adding tests for new reqs from VNFRQTS-630
[vvp/validation-scripts.git] / ice_validator / tests / test_contrail_vmi_parameters.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 tests.structures import ContrailV2VirtualMachineInterfaceProcessor
42 from tests.helpers import validates
43 from tests.utils.ports import check_parameter_format
44
45 RE_EXTERNAL_PARAM_AAP = re.compile(  # match pattern
46     r"(?P<vm_type>.+)_(?P<network_role>.+)_floating(_v6)?_ip$"
47 )
48
49 RE_INTERNAL_PARAM_AAP = re.compile(  # match pattern
50     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ip$"
51 )
52
53 RE_INTERNAL_PARAM_AAPS = re.compile(  # match pattern
54     r"(?P<vm_type>.+)_int_(?P<network_role>.+)_floating(_v6)?_ips$"
55 )
56
57 aap_regx_dict = {
58     "external": {
59         "string": {
60             "readable": "{vm-type}_{network-role}_floating_ip or {vm-type}_{network-role}_floating_v6_ip",
61             "machine": RE_EXTERNAL_PARAM_AAP,
62         }
63     },
64     "internal": {
65         "string": {
66             "readable": "{vm-type}_int_{network-role}_floating_ip or {vm-type}_int_{network-role}_floating_v6_ip",
67             "machine": RE_INTERNAL_PARAM_AAP,
68         },
69         "comma_delimited_list": {
70             "readable": "{vm-type}_int_{network-role}_floating_ips or {vm-type}_int_{network-role}_floating_v6_ips",
71             "machine": RE_INTERNAL_PARAM_AAPS,
72         },
73     },
74     "parameter_to_resource_comparisons": ["vm_type", "network_role"],
75 }
76
77
78 @validates("R-100310", "R-100330", "R-100350")
79 def test_contrail_external_vmi_aap_parameter(yaml_file):
80     check_parameter_format(yaml_file,
81                            aap_regx_dict,
82                            "external",
83                            ContrailV2VirtualMachineInterfaceProcessor,
84                            "virtual_machine_interface_allowed_address_pairs",
85                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair",
86                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip",
87                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix")
88
89
90 @validates("R-100360", "R-100370")
91 def test_contrail_internal_vmi_aap_parameter(yaml_file):
92     check_parameter_format(yaml_file,
93                            aap_regx_dict,
94                            "internal",
95                            ContrailV2VirtualMachineInterfaceProcessor,
96                            "virtual_machine_interface_allowed_address_pairs",
97                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair",
98                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip",
99                            "virtual_machine_interface_allowed_address_pairs_allowed_address_pair_ip_ip_prefix")