Filter null/None service names
[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         if (role_data['service_name'] !=
37                 os.path.basename(filename).split('.')[0]):
38             print('ERROR: service_name should match file name for service: %s.'
39                   % filename)
40             return 1
41     return 0
42
43
44 def validate(filename):
45     print('Validating %s' % filename)
46     retval = 0
47     try:
48         tpl = yaml.load(open(filename).read())
49
50         if (filename.startswith('./puppet/services/') and
51                 filename != './puppet/services/services.yaml'):
52             retval = validate_service(filename, tpl)
53
54     except Exception:
55         print(traceback.format_exc())
56         return 1
57     # yaml is OK, now walk the parameters and output a warning for unused ones
58     for p in tpl.get('parameters', {}):
59         str_p = '\'%s\'' % p
60         in_resources = str_p in str(tpl.get('resources', {}))
61         in_outputs = str_p in str(tpl.get('outputs', {}))
62         if not in_resources and not in_outputs:
63             print('Warning: parameter %s in template %s appears to be unused'
64                   % (p, filename))
65
66     return retval
67
68 if len(sys.argv) < 2:
69     exit_usage()
70
71 path_args = sys.argv[1:]
72 exit_val = 0
73 failed_files = []
74
75 for base_path in path_args:
76     if os.path.isdir(base_path):
77         for subdir, dirs, files in os.walk(base_path):
78             for f in files:
79                 if f.endswith('.yaml'):
80                     file_path = os.path.join(subdir, f)
81                     failed = validate(file_path)
82                     if failed:
83                         failed_files.append(file_path)
84                     exit_val |= failed
85     elif os.path.isfile(base_path) and base_path.endswith('.yaml'):
86         failed = validate(base_path)
87         if failed:
88             failed_files.append(base_path)
89         exit_val |= failed
90     else:
91         print('Unexpected argument %s' % base_path)
92         exit_usage()
93
94 if failed_files:
95     print('Validation failed on:')
96     for f in failed_files:
97         print(f)
98 else:
99     print('Validation successful!')
100 sys.exit(exit_val)