comparison test/test-server.sh @ 116:d15cb1151d76

Add JSON support directly to the server. Had hoped to avoid this (using Capnp as canonical in the server and then converting externally as necessary) but it's just too useful for debugging purposes when bundled with client app
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 27 Oct 2016 11:39:41 +0100
parents 81e1c48e97f9
children 5dffc5147176
comparison
equal deleted inserted replaced
115:5a716f08e4be 116:d15cb1151d76
4 4
5 piperdir=../piper 5 piperdir=../piper
6 vampsdkdir=../vamp-plugin-sdk 6 vampsdkdir=../vamp-plugin-sdk
7 schemadir="$piperdir"/json/schema 7 schemadir="$piperdir"/json/schema
8 8
9 reqfile="/tmp/$$.req.json" 9 tmpdir=$(mktemp -d)
10 respfile="/tmp/$$.resp.json" 10
11 allrespfile="/tmp/$$.resp.all" 11 if [ ! -d "$tmpdir" ]; then
12 expected="/tmp/$$.expected" 12 echo "Temp directory creation failed" 1>&2
13 obtained="/tmp/$$.obtained" 13 exit 1
14 trap "rm -f $reqfile $respfile $allrespfile $obtained $expected" 0 14 fi
15
16 trap "rm -rf $tmpdir" 0
17
18 reqfile="$tmpdir/req.json"
19 respfile="$tmpdir/resp.json"
20 allrespfile="$tmpdir/resp.all"
21 input="$tmpdir/input"
22 expected="$tmpdir/expected"
23 obtained="$tmpdir/obtained"
15 24
16 validate() { 25 validate() {
17 local file="$1" 26 local file="$1"
18 local schemaname="$2" 27 local schemaname="$2"
19 jsonschema -i "$file" "$schemadir/$schemaname.json" 1>&2 && \ 28 jsonschema -i "$file" "$schemadir/$schemaname.json" 1>&2 && \
31 local json="$1" 40 local json="$1"
32 echo "$json" > "$respfile" 41 echo "$json" > "$respfile"
33 validate "$respfile" "rpcresponse" 42 validate "$respfile" "rpcresponse"
34 } 43 }
35 44
36 ( while read request ; do 45 cat > "$input" <<EOF
37 validate_request "$request"
38 echo "$request"
39 done |
40 bin/piper-convert request -i json -o capnp |
41 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server |
42 bin/piper-convert response -i capnp -o json |
43 while read response ; do
44 echo "$response" >> "$allrespfile"
45 validate_response "$response"
46 done
47 ) <<EOF
48 {"method":"list"} 46 {"method":"list"}
49 {"method":"load","id":6,"params": {"key":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}} 47 {"method":"load","id":6,"params": {"key":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
50 {"method":"configure","id":"weevil","params":{"handle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}} 48 {"method":"configure","id":"weevil","params":{"handle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
51 {"method":"process","params": {"handle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}} 49 {"method":"process","params": {"handle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}}
52 {"method":"finish","params": {"handle": 1}} 50 {"method":"finish","params": {"handle": 1}}
59 {"id": "weevil", "jsonrpc": "2.0", "method": "configure", "result": {"handle": 1, "outputList": [{"basic": {"description": "Percussive note onset locations", "identifier": "onsets", "name": "Onsets"}, "configured": {"binCount": 0, "binNames": [], "hasDuration": false, "sampleRate": 44100, "sampleType": "VariableSampleRate", "unit": ""}}, {"basic": {"description": "Broadband energy rise detection function", "identifier": "detectionfunction", "name": "Detection Function"}, "configured": {"binCount": 1, "binNames": [""], "hasDuration": false, "quantizeStep": 1, "sampleRate": 86.1328125, "sampleType": "FixedSampleRate", "unit": ""}}]}} 57 {"id": "weevil", "jsonrpc": "2.0", "method": "configure", "result": {"handle": 1, "outputList": [{"basic": {"description": "Percussive note onset locations", "identifier": "onsets", "name": "Onsets"}, "configured": {"binCount": 0, "binNames": [], "hasDuration": false, "sampleRate": 44100, "sampleType": "VariableSampleRate", "unit": ""}}, {"basic": {"description": "Broadband energy rise detection function", "identifier": "detectionfunction", "name": "Detection Function"}, "configured": {"binCount": 1, "binNames": [""], "hasDuration": false, "quantizeStep": 1, "sampleRate": 86.1328125, "sampleType": "FixedSampleRate", "unit": ""}}]}}
60 {"jsonrpc": "2.0", "method": "process", "result": {"features": {}, "handle": 1}} 58 {"jsonrpc": "2.0", "method": "process", "result": {"features": {}, "handle": 1}}
61 {"jsonrpc": "2.0", "method": "finish", "result": {"features": {"detectionfunction": [{"featureValues": [0], "timestamp": {"n": 11609977, "s": 0}}]}, "handle": 1}} 59 {"jsonrpc": "2.0", "method": "finish", "result": {"features": {"detectionfunction": [{"featureValues": [0], "timestamp": {"n": 11609977, "s": 0}}]}, "handle": 1}}
62 EOF 60 EOF
63 61
64 # Skip plugin list 62 # We run the whole test twice, once with the server in Capnp mode
65 tail -n +2 "$allrespfile" > "$obtained" 63 # (converting to JSON using piper-convert) and once with it directly
64 # in JSON mode
66 65
67 echo "Checking response contents against expected contents..." 66 for format in capnp json ; do
68 if ! cmp "$obtained" "$expected"; then
69 diff -u1 "$obtained" "$expected"
70 else
71 echo "OK"
72 fi
73 67
68 ( while read request ; do
69 validate_request "$request"
70 echo "$request"
71 done |
72 if [ "$format" = "json" ]; then
73 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d json
74 else
75 bin/piper-convert request -i json -o capnp |
76 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d capnp |
77 bin/piper-convert response -i capnp -o json
78 fi |
79 while read response ; do
80 echo "$response" >> "$allrespfile"
81 validate_response "$response"
82 done
83 ) < "$input"
84
85 # Skip plugin list
86 tail -n +2 "$allrespfile" > "$obtained"
87
88 echo "Checking response contents against expected contents..."
89 if ! cmp "$obtained" "$expected"; then
90 diff -u1 "$obtained" "$expected"
91 else
92 echo "OK"
93 fi
94
95 rm "$allrespfile"
96
97 done