Commit seed code for validation-scripts
[vvp/validation-scripts.git] / ice_validator / tests / test_subnet_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 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
39 #
40
41 import pytest
42 import yaml
43 from .utils.network_roles import get_network_role_from_port
44 import re
45
46
47 def test_subnet_format(heat_template):
48     '''
49     Make sure all subnet properties follow the allowed naming
50     conventions
51     '''
52     formats = [
53               ["subnet_id", "string", "internal",
54                re.compile(r'int_(.+?)_subnet_id')],
55               ["subnet_id", "string", "internal",
56                re.compile(r'int_(.+?)_v6_subnet_id')],
57               ["subnet_id", "string", "external",
58                re.compile(r'(.+?)_subnet_id')],
59               ["subnet_id", "string", "external",
60                re.compile(r'(.+?)_v6_subnet_id')],
61               ]
62
63     with open(heat_template) as fh:
64         yml = yaml.load(fh)
65
66     # skip if resources are not defined
67     if "resources" not in yml:
68         pytest.skip("No resources specified in the heat template")
69
70     invalid_subnets = []
71     for v1 in yml["resources"].values():
72         if not isinstance(v1, dict):
73             continue
74         if "properties" not in v1:
75             continue
76         if v1.get("type") != "OS::Neutron::Port":
77             continue
78         network_role = get_network_role_from_port(v1)
79
80         # get the network param to define the network_type
81         try:
82             network_param = v1["properties"]["network"]["get_param"]
83         except KeyError:
84             continue
85
86         # define the network_type
87         network_type = 'external'
88         if network_param.startswith('int_'):
89             network_type = 'internal'
90
91         for k2, v2 in v1["properties"].items():
92             if k2 != "fixed_ips":
93                 continue
94
95             for v3 in v2:
96                 if "subnet_id" not in v3:
97                     continue
98
99                 subnet_id = v3["subnet_id"]
100                 for v4 in formats:
101                     if v4[2] != network_type:
102                         continue
103
104                     # get the param or resource
105                     if network_type == "external":
106                         param_or_res = subnet_id["get_param"]
107                     elif network_type == "internal":
108                         if subnet_id.get("get_param"):
109                             param_or_res = subnet_id["get_param"]
110                         elif subnet_id.get("get_resource"):
111                             param_or_res = subnet_id["get_resource"]
112                         else:
113                             continue
114                     else:
115                         continue
116
117                     m = v4[3].match(param_or_res)
118                     if m and m.group(1):
119                         snr = m.group(1)
120                         if snr.replace("_v6", "") != network_role:
121                             invalid_subnets.append(param_or_res)
122
123     assert not set(invalid_subnets)