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@63
|
22 validate "$reqfile" "request"
|
c@63
|
23 }
|
c@63
|
24
|
c@63
|
25 validate_response() {
|
c@63
|
26 local json="$1"
|
c@63
|
27 echo "$json" > "$respfile"
|
c@63
|
28 validate "$respfile" "response"
|
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@67
|
43 {"method":"load","params": {"pluginKey":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
|
c@67
|
44 {"method":"configure","params":{"pluginHandle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
|
c@67
|
45 {"method":"process","params": {"pluginHandle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}}
|
c@67
|
46 {"method":"finish","params": {"pluginHandle": 1}}
|
c@36
|
47 EOF
|