c@75
|
1 #!/bin/bash
|
c@75
|
2
|
c@75
|
3 set -eu
|
c@75
|
4
|
c@75
|
5 piperdir=../piper
|
c@75
|
6 vampsdkdir=../vamp-plugin-sdk
|
c@75
|
7 schemadir="$piperdir"/json/schema
|
c@75
|
8
|
c@75
|
9 reqfile="/tmp/$$.req.json"
|
c@75
|
10 respfile="/tmp/$$.resp.json"
|
c@75
|
11 allrespfile="/tmp/$$.resp.all"
|
c@75
|
12 expected="/tmp/$$.expected"
|
c@75
|
13 obtained="/tmp/$$.obtained"
|
c@75
|
14 trap "rm -f $reqfile $respfile $allrespfile $obtained $expected" 0
|
c@75
|
15
|
c@75
|
16 validate() {
|
c@75
|
17 local file="$1"
|
c@75
|
18 local schemaname="$2"
|
c@75
|
19 jsonschema -i "$file" "$schemadir/$schemaname.json" 1>&2 && \
|
c@75
|
20 echo "validated $schemaname" 1>&2 || \
|
c@75
|
21 echo "failed to validate $schemaname" 1>&2
|
c@75
|
22 }
|
c@75
|
23
|
c@75
|
24 validate_request() {
|
c@75
|
25 local json="$1"
|
c@75
|
26 echo "$json" > "$reqfile"
|
c@75
|
27 validate "$reqfile" "rpcrequest"
|
c@75
|
28 }
|
c@75
|
29
|
c@75
|
30 validate_response() {
|
c@75
|
31 local json="$1"
|
c@75
|
32 echo "$json" > "$respfile"
|
c@75
|
33 validate "$respfile" "rpcresponse"
|
c@75
|
34 }
|
c@75
|
35
|
c@75
|
36 ( while read request ; do
|
c@75
|
37 validate_request "$request"
|
c@75
|
38 echo "$request"
|
c@75
|
39 done |
|
c@75
|
40 bin/piper-convert request -i json -o capnp |
|
c@75
|
41 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server |
|
c@75
|
42 bin/piper-convert response -i capnp -o json |
|
c@75
|
43 while read response ; do
|
c@75
|
44 echo "$response" >> "$allrespfile"
|
c@75
|
45 validate_response "$response"
|
c@75
|
46 done
|
c@75
|
47 ) <<EOF
|
c@75
|
48 {"method":"list"}
|
c@75
|
49 {"method":"load","id":6,"params": {"key":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
|
c@75
|
50 {"method":"configure","id":"weevil","params":{"handle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
|
c@75
|
51 {"method":"process","params": {"handle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}}
|
c@75
|
52 {"method":"finish","params": {"handle": 1}}
|
c@75
|
53 EOF
|
c@75
|
54
|
c@75
|
55 # Expected output, apart from the plugin list which seems a bit
|
c@75
|
56 # fragile to check here
|
c@75
|
57 cat > "$expected" <<EOF
|
c@75
|
58 {"id": 6, "jsonrpc": "2.0", "method": "load", "result": {"defaultConfiguration": {"blockSize": 1024, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 1024}, "handle": 1, "staticData": {"basic": {"description": "Detect percussive note onsets by identifying broadband energy rises", "identifier": "percussiononsets", "name": "Simple Percussion Onset Detector"}, "basicOutputInfo": [{"description": "Percussive note onset locations", "identifier": "onsets", "name": "Onsets"}, {"description": "Broadband energy rise detection function", "identifier": "detectionfunction", "name": "Detection Function"}], "category": ["Time", "Onsets"], "copyright": "Code copyright 2006 Queen Mary, University of London, after Dan Barry et al 2005. Freely redistributable (BSD license)", "inputDomain": "TimeDomain", "key": "vamp-example-plugins:percussiononsets", "maker": "Vamp SDK Example Plugins", "maxChannelCount": 1, "minChannelCount": 1, "parameters": [{"basic": {"description": "Energy rise within a frequency bin necessary to count toward broadband total", "identifier": "threshold", "name": "Energy rise threshold"}, "defaultValue": 3, "extents": {"max": 20, "min": 0}, "unit": "dB", "valueNames": []}, {"basic": {"description": "Sensitivity of peak detector applied to broadband detection function", "identifier": "sensitivity", "name": "Sensitivity"}, "defaultValue": 40, "extents": {"max": 100, "min": 0}, "unit": "%", "valueNames": []}], "programs": [], "version": 2}}}
|
c@75
|
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": ""}}]}}
|
c@75
|
60 {"jsonrpc": "2.0", "method": "process", "result": {"features": {}, "handle": 1}}
|
c@75
|
61 {"jsonrpc": "2.0", "method": "finish", "result": {"features": {"detectionfunction": [{"featureValues": [0], "timestamp": {"n": 11609977, "s": 0}}]}, "handle": 1}}
|
c@75
|
62 EOF
|
c@75
|
63
|
c@75
|
64 # Skip plugin list
|
c@75
|
65 tail -n +2 "$allrespfile" > "$obtained"
|
c@75
|
66
|
c@75
|
67 echo "Checking response contents against expected contents..."
|
c@75
|
68 if ! cmp "$obtained" "$expected"; then
|
c@75
|
69 diff -u1 "$obtained" "$expected"
|
c@75
|
70 else
|
c@75
|
71 echo "OK"
|
c@75
|
72 fi
|
c@75
|
73
|