cannam@150: #!/bin/bash cannam@150: cannam@150: set -eu cannam@150: cannam@158: mydir=$(dirname "$0") cannam@158: cannam@158: piperdir="$mydir"/../../piper cannam@158: vampsdkdir="$mydir"/../../vamp-plugin-sdk cannam@158: bindir="$mydir"/../bin cannam@150: schemadir="$piperdir"/json/schema cannam@150: cannam@150: if [ ! -d "$schemadir" ]; then cannam@150: echo "WARNING: schema directory $schemadir not found, won't be validating JSON schema" 1>&2 cannam@150: fi cannam@150: cannam@150: tmpdir=$(mktemp -d) cannam@150: cannam@150: if [ ! -d "$tmpdir" ]; then cannam@150: echo "Temp directory creation failed" 1>&2 cannam@150: exit 1 cannam@150: fi cannam@150: cannam@150: trap "rm -rf $tmpdir" 0 cannam@150: cannam@150: reqfile="$tmpdir/req.json" cannam@150: respfile="$tmpdir/resp.json" cannam@150: allrespfile="$tmpdir/resp.all" cannam@150: input="$tmpdir/input" cannam@150: expected="$tmpdir/expected" dev@181: expected_less_strict="$tmpdir/expected-less-strict" cannam@150: obtained="$tmpdir/obtained" cannam@150: cannam@220: fail() { cannam@220: local msg="$1" cannam@220: echo " !! $msg!" 1>&2 cannam@220: exit 1 cannam@220: } cannam@220: cannam@150: validate() { cannam@150: local file="$1" cannam@150: local schemaname="$2" cannam@150: if [ -d "$schemadir" ]; then cannam@150: echo " * validating against schema $schemaname... " 1>&2 cannam@150: jsonschema -i "$file" "$schemadir/$schemaname.json" 1>&2 && \ cannam@150: echo " -> validated against schema $schemaname" 1>&2 || \ cannam@220: fail "failed to validate $schemaname" cannam@150: else cannam@150: echo "(schema directory $schemadir not found, skipping validation)" 1>&2 cannam@150: fi cannam@150: } cannam@150: cannam@150: validate_request() { cannam@150: local json="$1" cannam@150: echo "$json" > "$reqfile" cannam@150: validate "$reqfile" "rpcrequest" cannam@150: } cannam@150: cannam@150: validate_response() { cannam@150: local json="$1" cannam@150: echo "$json" > "$respfile" cannam@150: validate "$respfile" "rpcresponse" cannam@150: } cannam@150: cannam@158: # NB this list of commands includes a couple that are expected to fail cannam@158: # (process before configure, configure with nonexistent handle, finish cannam@158: # same handle twice) cannam@150: cat > "$input" < "$expected" <> "$allrespfile" cannam@150: validate_response "$response" cannam@150: done cannam@150: ) < "$input" cannam@150: cannam@150: # Skip plugin lists cannam@150: tail -n +4 "$allrespfile" > "$obtained" cannam@150: dev@179: echo "Checking response contents against expected contents..." dev@179: # the expected configuration response is fragile, capnp fills in optional fields, dev@179: # json doesn't - which is fine behaviour, but causes the test to fail - remove empty binCount and binNames dev@178: expected_without_optional_fields=$( cat "$expected" | sed -E 's/\"(binCount|binNames)\": ?((\[\])|0),? ?//g') dev@178: echo "$expected_without_optional_fields" > "$expected_less_strict" dev@178: dev@178: if cmp "$obtained" "$expected" -s || cmp "$obtained" "$expected_less_strict" -s; then dev@178: echo "OK" cannam@150: else dev@178: diff -U 1 "$obtained" "$expected" cannam@150: fi cannam@150: cannam@150: echo "Checking plugin counts from list responses..." cannam@150: cannam@150: # Now check the plugin lists, but as the descriptions etc are cannam@150: # probably a bit fragile, let's just count the number of plugins cannam@150: cannam@150: # First, with no "from" arg to the list call cannam@159: list_no_from=$(head -n +1 "$allrespfile" | fmt -1 | grep '"key"' | wc -l | sed 's/[^0-9]//g') cannam@150: cannam@150: # Now with a "from" arg that includes the library that exists cannam@150: list_with_good_from=$(tail -n +2 "$allrespfile" | head -n +1 | fmt -1 | cannam@159: grep '"key"' | wc -l | sed 's/[^0-9]//g') cannam@150: cannam@150: # Now with a "from" arg that doesn't include any real library cannam@150: list_with_bad_from=$(tail -n +3 "$allrespfile" | head -n +1 | fmt -1 | cannam@159: grep '"key"' | wc -l | sed 's/[^0-9]//g') cannam@150: cannam@150: if [ "$list_no_from" != "6" ]; then cannam@150: echo "Wrong number of plugins from list response without \"from\" arg" cannam@150: echo "Expected 6, obtained $list_no_from" cannam@150: false cannam@150: fi cannam@150: if [ "$list_with_good_from" != "6" ]; then cannam@150: echo "Wrong number of plugins from list response with good \"from\" arg" cannam@150: echo "Expected 6, obtained $list_with_good_from" cannam@150: false cannam@150: fi cannam@150: if [ "$list_with_bad_from" != "0" ]; then cannam@150: echo "Wrong number of plugins from list response with bad \"from\" arg" cannam@150: echo "Expected 0, obtained $list_with_bad_from" cannam@150: false cannam@150: fi cannam@150: echo OK cannam@150: cannam@150: rm "$allrespfile" cannam@150: done cannam@150: cannam@150: echo "Tests succeeded" # set -e at top should ensure we don't get here otherwise