[VVP] Updated network param validations per reqts
[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
40 import pytest
41 import re
42
43 from tests import cached_yaml as yaml
44
45 from .helpers import validates
46 from .utils.network_roles import property_uses_get_resource
47
48 RE_INTERNAL_NETWORK_RID = re.compile(  # match pattern
49     r"int_(?P<network_role>.+)_network$"
50 )
51 NETWORK_RESOURCE_TYPES = ["OS::Neutron::Net", "OS::ContrailV2::VirtualNetwork"]
52
53
54 @validates("R-16968", "R-35666")
55 def test_network_resource_id_format(yaml_file):
56     """
57     Make sure all network resource ids use the allowed naming
58     convention
59     """
60     RE_INTERNAL_NETWORK_RID = re.compile(  # match pattern
61         r"int_(?P<network_role>.+)_network$"
62     )
63
64     with open(yaml_file) as fh:
65         yml = yaml.load(fh)
66
67     # skip if resources are not defined
68     if "resources" not in yml:
69         pytest.skip("No resources specified in the heat template")
70
71     invalid_networks = []
72     for k, v in yml["resources"].items():
73         if not isinstance(v, dict):
74             continue
75         if "properties" not in v:
76             continue
77         if property_uses_get_resource(v, "network"):
78             continue
79         if v.get("type") not in NETWORK_RESOURCE_TYPES:
80             continue
81         match = RE_INTERNAL_NETWORK_RID.match(k)
82         if not match:
83             invalid_networks.append(k)
84
85     assert not set(invalid_networks), (
86         "Heat templates must only create internal networks "
87         "and follow format int_{{network-role}}_network"
88         "{}".format(", ".join(invalid_networks))
89     )
90
91
92 @validates("R-16241")
93 def test_network_has_subnet(yaml_file):
94     """
95     if creating internal network, make sure there is a
96     corresponding subnet that references it
97     """
98
99     with open(yaml_file) as fh:
100         yml = yaml.load(fh)
101
102     # skip if resources are not defined
103     if "resources" not in yml:
104         pytest.skip("No resources specified in the heat template")
105
106     networks = []
107
108     for k, v in yml["resources"].items():
109         if not isinstance(v, dict):
110             continue
111         if "properties" not in v:
112             continue
113         # need to check if contrail networks also require subnet
114         # and it is defined the same as neutron networks
115         # if v.get("type") not in NETWORK_RESOURCE_TYPES:
116         if v.get("type") not in ["OS::Neutron::Net"]:
117             continue
118         networks.append(k)
119
120     for k, v in yml["resources"].items():
121         if not isinstance(v, dict):
122             continue
123         if "properties" not in v:
124             continue
125         if v.get("type") != "OS::Neutron::Subnet":
126             continue
127         network_prop = v.get("properties", {}).get("network", {}).get("get_resource")
128
129         if not network_prop:
130             continue
131         x = 0
132         for network in networks:
133             if network == network_prop:
134                 networks.pop(x)
135                 break
136             x += 1
137
138     assert not networks, "Networks detected without subnet {}".format(networks)