[VVP] updating validation scripts in dublin
[vvp/validation-scripts.git] / ice_validator / tests / test_contrail_vmi_resource_id.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 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
39 #
40 import pytest
41
42 from .structures import Heat
43 from .structures import ContrailV2VirtualMachineInterface
44 from .helpers import validates
45
46 """
47 resources:
48 {vm-type}_server_{vm-type_index}
49 """
50
51 VERSION = "1.0.0"
52
53
54 def run_test(heat_template, regex_name, network_flavor):
55     """run test
56     """
57     heat = Heat(filepath=heat_template)
58     heat_object_class = ContrailV2VirtualMachineInterface
59     resource_type = heat_object_class.resource_type
60     resources = heat.get_resource_by_type(resource_type=resource_type)
61     if not resources:
62         pytest.skip("No %s resources found" % resource_type)
63     bad = []
64     heat_object = heat_object_class()
65     rid_pattern = heat_object.get_rid_patterns()[regex_name]
66     for rid, resource in resources.items():
67         flavor = heat_object.get_network_flavor(resource)
68         if flavor != network_flavor:
69             continue
70         name = heat_object.get_rid_match_tuple(rid)[0]
71         if name == regex_name:
72             continue
73         bad.append(rid)
74     assert not bad, "%s resource ids %s must match %s" % (
75         network_flavor,
76         bad,
77         [rid_pattern],
78     )
79
80
81 # pylint: disable=invalid-name
82
83
84 @validates("R-96253")
85 def test_contrail_instance_ip_resource_id_external(heat_template):
86     """
87     A VNF's Heat Orchestration Template's Resource
88     OS::ContrailV2::VirtualMachineInterface that is attaching to an
89     external network
90     Resource ID **MUST** use the naming convention
91
92     {vm-type}_{vm-type_index}_{network-role}_vmi_{vmi_index}
93     """
94     run_test(
95         heat_template,
96         regex_name="vmi_external",
97         network_flavor=ContrailV2VirtualMachineInterface.network_flavor_external,
98     )
99
100
101 @validates("R-50468")
102 def test_contrail_instance_ip_resource_id_internal(heat_template):
103     """
104     A VNF's Heat Orchestration Template's Resource
105     OS::ContrailV2::VirtualMachineInterface that is attaching to an
106     internal network
107     Resource ID **MUST** use the naming convention
108
109     {vm-type}_{vm-type_index}_int_{network-role}_vmi_{vmi_index}
110     """
111     run_test(
112         heat_template,
113         regex_name="vmi_internal",
114         network_flavor=ContrailV2VirtualMachineInterface.network_flavor_internal,
115     )
116
117
118 @validates("R-54458")
119 def test_contrail_instance_ip_resource_id_subint(heat_template):
120     """
121     A VNF's Heat Orchestration Template's Resource
122     OS::ContrailV2::VirtualMachineInterface that is attaching to an
123     sub-interface network
124     Resource ID **MUST** use the naming convention
125
126     {vm-type}_{vm-type_index}_subint_{network-role}_vmi_{vmi_index}
127     """
128     run_test(
129         heat_template,
130         regex_name="vmi_subint",
131         network_flavor=ContrailV2VirtualMachineInterface.network_flavor_subint,
132     )