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 type=$(grep '"type":' "$reqfile" | sed 's/^.*"type": *"\([^"]*\)".*$/\1/')
|
c@63
|
24 if [ "$type" == "configure" ]; then type=configuration; fi
|
c@63
|
25 if [ "$type" != "list" ]; then
|
c@63
|
26 echo "$json" |
|
c@63
|
27 sed 's/^.*"content"://' |
|
c@63
|
28 sed 's/}}$/}/' > "$reqfile"
|
c@63
|
29 validate "$reqfile" "${type}request"
|
c@63
|
30 fi
|
c@63
|
31 }
|
c@63
|
32
|
c@63
|
33 validate_response() {
|
c@63
|
34 local json="$1"
|
c@63
|
35 echo "$json" > "$respfile"
|
c@63
|
36 validate "$respfile" "response"
|
c@63
|
37 type=$(grep '"type":' "$respfile" | sed 's/^.*"type": "\([^"]*\)".*$/\1/')
|
c@63
|
38 if [ "$type" == "configure" ]; then type=configuration; fi
|
c@63
|
39 echo "$json" |
|
c@63
|
40 sed 's/^.*"content"://' |
|
c@63
|
41 sed 's/, "error.*$//' |
|
c@63
|
42 sed 's/, "success.*$//' > "$respfile"
|
c@63
|
43 validate "$respfile" "${type}response"
|
c@63
|
44 }
|
c@63
|
45
|
c@63
|
46 ( while read request ; do
|
c@63
|
47 validate_request "$request"
|
c@63
|
48 echo "$request"
|
c@63
|
49 done |
|
c@63
|
50 bin/vampipe-convert request -i json -o capnp |
|
c@63
|
51 VAMP_PATH=./vamp-plugin-sdk/examples bin/vampipe-server |
|
c@63
|
52 bin/vampipe-convert response -i capnp -o json |
|
c@63
|
53 while read response ; do
|
c@63
|
54 validate_response "$response"
|
c@63
|
55 done
|
c@52
|
56 ) <<EOF
|
c@42
|
57 {"type":"list"}
|
c@36
|
58 {"type":"load","content": {"pluginKey":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
|
c@36
|
59 {"type":"configure","content":{"pluginHandle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
|
c@36
|
60 {"type":"process","content": {"pluginHandle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [{"values": [1,2,3,4,5,6,7,8]}]}}}
|
c@36
|
61 {"type":"finish","content": {"pluginHandle": 1}}
|
c@36
|
62 EOF
|