forked from MISP/misp-warninglists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_all.sh
executable file
·48 lines (36 loc) · 900 Bytes
/
validate_all.sh
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
#!/bin/bash
set -e
set -x
pushd tools
python3 make_list_unique.py
popd
./jq_all_the_things.sh
diffs=`git status --porcelain | wc -l`
if ! [ $diffs -eq 0 ]; then
echo "Please make sure you run ./jq_all_the_things.sh before commiting."
exit 1
fi
# remove the exec flag on the json files
find -name "*.json" -exec chmod -x "{}" \;
diffs=`git status --porcelain | wc -l`
if ! [ $diffs -eq 0 ]; then
echo "Please make sure you run remove the executable flag on the json files before commiting: find -name "*.json" -exec chmod -x \"{}\" \\;"
exit 1
fi
# test filename
for dir in lists/*/*.json
do
if [ `basename ${dir}` != "list.json" ]; then
echo "Invalid filename (should be list.json): " ${dir}
exit 1
fi
done
for dir in lists/*/list.json
do
echo -n "${dir}: "
jsonschema -i ${dir} schema.json
echo ''
done
pushd tools
python3 validate_values.py
popd