-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
validate_roles.py
73 lines (60 loc) · 2.72 KB
/
validate_roles.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import os
import sys
import json
from termcolor import cprint
REQUIRED_KEYS = {"role", "url", "role-head", "responsibilities"}
def assert_is_list(i, key, value):
if isinstance(value, list):
return 0
else:
cprint(f" ERROR: Key \"{key}\" for role #{i} should be a list but instead is a {type(value)}", file=sys.stderr, color='red')
return 1
def assert_is_string(i, key, value):
if isinstance(value, str):
return 0
else:
cprint(f" ERROR: Key \"{key}\" for role #{i} should be a string but instead is a {type(value)}", file=sys.stderr, color='red')
return 1
jsonfn = "roles.json"
try:
roles = json.load(open(jsonfn))
except json.decoder.JSONDecodeError as e:
cprint(jsonfn + ' : ' + e.args[0], color='red')
cprint("*** JSON file appears to be malformed - see above ***", color='red')
sys.exit(2)
error = 0
for i, role in enumerate(roles):
if not isinstance(role, dict):
cprint(f" ERROR: Role #{i} is not a key/value set", file=sys.stderr, color='red')
error += 1
else:
key_difference = REQUIRED_KEYS - set(role.keys())
if key_difference:
cprint(f" ERROR: Missing key(s) for role #{i}: {key_difference}", file=sys.stderr, color='red')
error += 1
error += assert_is_string(i, 'role', role['role'])
error += assert_is_string(i, 'url', role['url'])
error += assert_is_string(i, 'role-head', role['role-head'])
if 'sub-roles' in role:
if 'people' in role:
cprint(f" ERROR: people should not be defined at top level for role #{i} since sub-roles are defined")
error += 1
for sub_role in role['sub-roles']:
error += assert_is_string(i, 'sub-roles[role]', sub_role['role'])
error += assert_is_list(i, 'sub-roles[people]', sub_role['people'])
else:
error += assert_is_list(i, 'people', role['people'])
if isinstance(role['responsibilities'], list):
for resp in role['responsibilities']:
error += assert_is_string(i, 'responsibilities[description]', resp['description'])
for detail in resp['details']:
error += assert_is_string(i, 'responsibilities[detail]', detail)
else:
resp = role['responsibilities']
error += assert_is_string(i, 'responsibilities[description]', resp['description'])
for detail in resp['details']:
error += assert_is_string(i, 'responsibilities[detail]', detail)
if error > 0:
sornot = 's' if error > 1 else ''
cprint(f"** {error} error{sornot} occurred - see above for details **", file=sys.stderr, color='red')
sys.exit(1)