Merge "Remove KeyName parameter from overcloud template"
[apex-tripleo-heat-templates.git] / tools / yaml-validate.py
1 #!/usr/bin/env python
2 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
3 #    not use this file except in compliance with the License. You may obtain
4 #    a copy of the License at
5 #
6 #         http://www.apache.org/licenses/LICENSE-2.0
7 #
8 #    Unless required by applicable law or agreed to in writing, software
9 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 #    License for the specific language governing permissions and limitations
12 #    under the License.
13
14 import os
15 import sys
16 import traceback
17 import yaml
18
19
20 def exit_usage():
21     print('Usage %s <yaml file or directory>' % sys.argv[0])
22     sys.exit(1)
23
24
25 def validate_service(filename, tpl):
26     if 'outputs' in tpl and 'role_data' in tpl['outputs']:
27         if 'value' not in tpl['outputs']['role_data']:
28             print('ERROR: invalid role_data for filename: %s'
29                   % filename)
30             return 1
31         role_data = tpl['outputs']['role_data']['value']
32         if 'service_name' not in role_data:
33             print('ERROR: service_name is required in role_data for %s.'
34                   % filename)
35             return 1
36         # service_name must match the filename, but with an underscore
37         if (role_data['service_name'] !=
38                 os.path.basename(filename).split('.')[0].replace("-", "_")):
39             print('ERROR: service_name should match file name for service: %s.'
40                   % filename)
41             return 1
42     return 0
43
44
45 def validate(filename):
46     print('Validating %s' % filename)
47     retval = 0
48     try:
49         tpl = yaml.load(open(filename).read())
50
51         if (filename.startswith('./puppet/services/') and
52                 filename != './puppet/services/services.yaml'):
53             retval = validate_service(filename, tpl)
54
55     except Exception:
56         print(traceback.format_exc())
57         return 1
58     # yaml is OK, now walk the parameters and output a warning for unused ones
59     for p in tpl.get('parameters', {}):
60         str_p = '\'%s\'' % p
61         in_resources = str_p in str(tpl.get('resources', {}))
62         in_outputs = str_p in str(tpl.get('outputs', {}))
63         if not in_resources and not in_outputs:
64             print('Warning: parameter %s in template %s appears to be unused'
65                   % (p, filename))
66
67     return retval
68
69 if len(sys.argv) < 2:
70     exit_usage()
71
72 path_args = sys.argv[1:]
73 exit_val = 0
74 failed_files = []
75
76 for base_path in path_args:
77     if os.path.isdir(base_path):
78         for subdir, dirs, files in os.walk(base_path):
79             for f in files:
80                 if f.endswith('.yaml'):
81                     file_path = os.path.join(subdir, f)
82                     failed = validate(file_path)
83                     if failed:
84                         failed_files.append(file_path)
85                     exit_val |= failed
86     elif os.path.isfile(base_path) and base_path.endswith('.yaml'):
87         failed = validate(base_path)
88         if failed:
89             failed_files.append(base_path)
90         exit_val |= failed
91     else:
92         print('Unexpected argument %s' % base_path)
93         exit_usage()
94
95 if failed_files:
96     print('Validation failed on:')
97     for f in failed_files:
98         print(f)
99 else:
100     print('Validation successful!')
101 sys.exit(exit_val)