You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
700 B
Bash
23 lines
700 B
Bash
#!/bin/bash -e
|
|
# Runs z-schema over all of the schema files (looking for matching examples)
|
|
|
|
if ! which z-schema; then
|
|
echo >&2 "Need to install z-schema; run: sudo npm install -g z-schema"
|
|
exit 1
|
|
fi
|
|
|
|
find schema/v1/m.* | while read line
|
|
do
|
|
split_path=(${line///// })
|
|
event_type=(${split_path[2]})
|
|
echo "Checking $event_type"
|
|
echo "--------------------"
|
|
# match exact name or exact name with a #<something>
|
|
find examples/v1 -name $event_type -o -name "$event_type#*" | while read exline
|
|
do
|
|
echo " against $exline"
|
|
# run z-schema: because of bash -e if this fails we bail with exit code 1
|
|
z-schema schema/v1/$event_type $exline
|
|
done
|
|
done
|