c@75: #!/bin/bash c@75: c@75: set -eu c@75: c@75: piperdir=../piper c@75: vampsdkdir=../vamp-plugin-sdk c@75: schemadir="$piperdir"/json/schema c@75: c@116: tmpdir=$(mktemp -d) c@116: c@116: if [ ! -d "$tmpdir" ]; then c@116: echo "Temp directory creation failed" 1>&2 c@116: exit 1 c@116: fi c@116: c@116: trap "rm -rf $tmpdir" 0 c@116: c@116: reqfile="$tmpdir/req.json" c@116: respfile="$tmpdir/resp.json" c@116: allrespfile="$tmpdir/resp.all" c@116: input="$tmpdir/input" c@116: expected="$tmpdir/expected" c@116: obtained="$tmpdir/obtained" c@75: c@75: validate() { c@75: local file="$1" c@75: local schemaname="$2" c@75: jsonschema -i "$file" "$schemadir/$schemaname.json" 1>&2 && \ c@75: echo "validated $schemaname" 1>&2 || \ c@75: echo "failed to validate $schemaname" 1>&2 c@75: } c@75: c@75: validate_request() { c@75: local json="$1" c@75: echo "$json" > "$reqfile" c@75: validate "$reqfile" "rpcrequest" c@75: } c@75: c@75: validate_response() { c@75: local json="$1" c@75: echo "$json" > "$respfile" c@75: validate "$respfile" "rpcresponse" c@75: } c@75: c@116: cat > "$input" < "$expected" <> "$allrespfile" c@116: validate_response "$response" c@116: done c@116: ) < "$input" c@116: c@116: # Skip plugin list c@116: tail -n +2 "$allrespfile" > "$obtained" c@116: c@116: echo "Checking response contents against expected contents..." c@116: if ! cmp "$obtained" "$expected"; then c@116: diff -u1 "$obtained" "$expected" c@116: else c@116: echo "OK" c@116: fi c@116: c@116: rm "$allrespfile" c@116: c@116: done