annotate test/test-vampipe-server.sh @ 73:7bfc07576830

Ensure id is passed through properly in convert and in server
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 10 Oct 2016 15:03:47 +0100
parents a5ba837bca28
children
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@73 7 allrespfile="/tmp/$$.resp.all"
c@73 8 expected="/tmp/$$.expected"
c@73 9 obtained="/tmp/$$.obtained"
c@73 10 trap "rm -f $reqfile $respfile $allrespfile $obtained $expected" 0
c@52 11
c@63 12 schema=vamp-json-schema/schema
c@63 13
c@63 14 validate() {
c@63 15 local file="$1"
c@63 16 local schemaname="$2"
c@63 17 jsonschema -i "$file" "$schema/$schemaname.json" 1>&2 && \
c@63 18 echo "validated $schemaname" 1>&2 || \
c@63 19 echo "failed to validate $schemaname" 1>&2
c@63 20 }
c@63 21
c@63 22 validate_request() {
c@63 23 local json="$1"
c@63 24 echo "$json" > "$reqfile"
c@68 25 validate "$reqfile" "rpcrequest"
c@63 26 }
c@63 27
c@63 28 validate_response() {
c@63 29 local json="$1"
c@63 30 echo "$json" > "$respfile"
c@68 31 validate "$respfile" "rpcresponse"
c@63 32 }
c@63 33
c@63 34 ( while read request ; do
c@63 35 validate_request "$request"
c@63 36 echo "$request"
c@63 37 done |
c@63 38 bin/vampipe-convert request -i json -o capnp |
c@63 39 VAMP_PATH=./vamp-plugin-sdk/examples bin/vampipe-server |
c@63 40 bin/vampipe-convert response -i capnp -o json |
c@63 41 while read response ; do
c@73 42 echo "$response" >> "$allrespfile"
c@63 43 validate_response "$response"
c@63 44 done
c@52 45 ) <<EOF
c@67 46 {"method":"list"}
c@73 47 {"method":"load","id":6,"params": {"key":"vamp-example-plugins:percussiononsets","inputSampleRate":44100,"adapterFlags":["AdaptInputDomain","AdaptBufferSize"]}}
c@73 48 {"method":"configure","id":"weevil","params":{"handle":1,"configuration":{"blockSize": 8, "channelCount": 1, "parameterValues": {"sensitivity": 40, "threshold": 3}, "stepSize": 8}}}
c@68 49 {"method":"process","params": {"handle": 1, "processInput": { "timestamp": {"s": 0, "n": 0}, "inputBuffers": [ [1,2,3,4,5,6,7,8] ]}}}
c@68 50 {"method":"finish","params": {"handle": 1}}
c@36 51 EOF
c@73 52
c@73 53 # Expected output, apart from the plugin list which seems a bit
c@73 54 # fragile to check here
c@73 55 cat > "$expected" <<EOF
c@73 56 {"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@73 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": ""}}]}}
c@73 58 {"jsonrpc": "2.0", "method": "process", "result": {"features": {}, "handle": 1}}
c@73 59 {"jsonrpc": "2.0", "method": "finish", "result": {"features": {"detectionfunction": [{"featureValues": [0], "timestamp": {"n": 11609977, "s": 0}}]}, "handle": 1}}
c@73 60 EOF
c@73 61
c@73 62 # Skip plugin list
c@73 63 tail -n +2 "$allrespfile" > "$obtained"
c@73 64
c@73 65 echo "Checking response contents against expected contents..."
c@73 66 if ! cmp "$obtained" "$expected"; then
c@73 67 diff -u1 "$obtained" "$expected"
c@73 68 else
c@73 69 echo "OK"
c@73 70 fi
c@73 71