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@75: reqfile="/tmp/$$.req.json" c@75: respfile="/tmp/$$.resp.json" c@75: allrespfile="/tmp/$$.resp.all" c@75: expected="/tmp/$$.expected" c@75: obtained="/tmp/$$.obtained" c@75: trap "rm -f $reqfile $respfile $allrespfile $obtained $expected" 0 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@75: ( while read request ; do c@75: validate_request "$request" c@75: echo "$request" c@75: done | c@75: bin/piper-convert request -i json -o capnp | c@75: VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server | c@75: bin/piper-convert response -i capnp -o json | c@75: while read response ; do c@75: echo "$response" >> "$allrespfile" c@75: validate_response "$response" c@75: done c@75: ) < "$expected" < "$obtained" c@75: c@75: echo "Checking response contents against expected contents..." c@75: if ! cmp "$obtained" "$expected"; then c@75: diff -u1 "$obtained" "$expected" c@75: else c@75: echo "OK" c@75: fi c@75: