misp-objects/validate_all.sh

39 lines
822 B
Bash
Raw Permalink Normal View History

2017-02-13 11:15:51 +01:00
#!/bin/bash
set -e
set -x
./jq_all_the_things.sh
diffs=`git status --porcelain | wc -l`
2017-02-13 11:18:42 +01:00
if ! [ $diffs -eq 0 ]; then
echo "ERROR: Please make sure you run ./jq_all_the_things.sh before doing a PR."
2017-02-13 11:15:51 +01:00
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 "ERROR: Please make sure you run remove the executable flag on the json files before doing a PR: find -name "*.json" -exec chmod -x \"{}\" \\;"
exit 1
fi
2017-02-13 11:18:42 +01:00
for dir in objects/*/definition.json
2017-02-13 11:15:51 +01:00
do
echo -n "${dir}: "
2017-08-11 12:19:52 +02:00
jsonschema -i ${dir} schema_objects.json
2017-02-13 11:15:51 +01:00
echo ''
done
2017-08-11 12:19:52 +02:00
jsonschema -i relationships/definition.json schema_relationships.json
./tools/validate_opposites.sh
2017-08-11 12:19:52 +02:00
./unique_uuid.py
echo "Success: All is fine, please go ahead.".