annotate test/test-vampipe-server.sh @ 72:16acd7d24b1a

Ensure id is passed through in adapter (still pending for server/converter)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 07 Oct 2016 16:43:18 +0100
parents a5ba837bca28
children 7bfc07576830
rev   line source
c@63 1 #!/bin/bash
c@36 2
c@63 3 set -eu
c@52 4
c@63 5 reqfile="/tmp/$$.req.json"
c@63 6 respfile="/tmp/$$.resp.json"
c@63 7 trap "rm -f $reqfile $respfile" 0
c@52 8
c@63 9 schema=vamp-json-schema/schema
c@63 10
c@63 11 validate() {
c@63 12 local file="$1"
c@63 13 local schemaname="$2"
c@63 14 jsonschema -i "$file" "$schema/$schemaname.json" 1>&2 && \
c@63 15 echo "validated $schemaname" 1>&2 || \
c@63 16 echo "failed to validate $schemaname" 1>&2
c@63 17 }
c@63 18
c@63 19 validate_request() {
c@63 20 local json="$1"
c@63 21 echo "$json" > "$reqfile"
c@68 22 validate "$reqfile" "rpcrequest"
c@63 23 }
c@63 24
c@63 25 validate_response() {
c@63 26 local json="$1"
c@63 27 echo "$json" > "$respfile"
c@68 28 validate "$respfile" "rpcresponse"
c@63 29 }
c@63 30
c@63 31 ( while read request ; do
c@63 32 validate_request "$request"
c@63 33 echo "$request"
c@63 34 done |
c@63 35 bin/vampipe-convert request -i json -o capnp |
c@63 36 VAMP_PATH=./vamp-plugin-sdk/examples bin/vampipe-server |
c@63 37 bin/vampipe-convert response -i capnp -o json |
c@63 38 while read response ; do
c@63 39 validate_response "$response"
c@63 40 done
c@52 41 ) <<EOF
c@67 42 {"method":"list"}
c@68 43 {"method":"load","params": {"key":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
c@68 44 {"method":"configure","params":{"handle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
c@68 45 {"method":"process","params": {"handle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}}
c@68 46 {"method":"finish","params": {"handle": 1}}
c@36 47 EOF