b291c535a3059f3af1b9dc066cf60180be64d673
[vvp/validation-scripts.git] / ice_validator / tests / test_network_format.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 from itertools import chain
40
41 import re
42
43 from tests import cached_yaml as yaml
44 from tests.structures import Heat
45
46 from tests.helpers import validates
47
48 RE_INTERNAL_NETWORK_RID = re.compile(r"int_(?P<network_role>.+)_network$")
49 NETWORK_RESOURCE_TYPES = ["OS::Neutron::Net", "OS::ContrailV2::VirtualNetwork"]
50
51
52 @validates("R-16968")
53 def test_network_resource_id_format(yaml_file):
54     heat = Heat(yaml_file)
55     network_ids = chain.from_iterable(
56         heat.get_resource_by_type(t) for t in NETWORK_RESOURCE_TYPES
57     )
58     invalid_networks = {
59         r_id for r_id in network_ids if not RE_INTERNAL_NETWORK_RID.match(r_id)
60     }
61     assert not invalid_networks, (
62         "Heat templates must only create internal networks "
63         "and their resource IDs must follow the format "
64         "int_{{network-role}}_network. The following network's resource IDs "
65         "have invalid resource ID formats: "
66         "{}".format(", ".join(invalid_networks))
67     )
68
69
70 @validates("R-16241")
71 def test_network_has_subnet(yaml_file):
72     """
73     if creating internal network, make sure there is a
74     corresponding subnet that references it
75     """
76
77     with open(yaml_file) as fh:
78         yml = yaml.load(fh)
79
80     networks = []
81
82     for k, v in yml["resources"].items():
83         if not has_properties(v) or v.get("type") not in ["OS::Neutron::Net"]:
84             continue
85         # need to check if contrail networks also require subnet
86         # and it is defined the same as neutron networks
87         # if v.get("type") not in NETWORK_RESOURCE_TYPES:
88         networks.append(k)
89
90     for k, v in yml["resources"].items():
91         network_prop = v.get("properties", {}).get("network", {}).get("get_resource")
92         if (
93             not has_properties(v)
94             and v.get("type") != "OS::Neutron::Subnet"
95             and not network_prop
96         ):
97             continue
98         x = 0
99         for network in networks:
100             if network == network_prop:
101                 networks.pop(x)
102                 break
103             x += 1
104
105     assert not networks, "Networks detected without subnet {}".format(networks)
106
107
108 def has_properties(resource):
109     """
110     checks resource is a Neutron Subnet
111     """
112     return isinstance(resource, dict) and "properties" in resource