#!/bin/bash export FAIRMQ_PATH=@FAIRMQ_BIN_DIR@ transport="zeromq" if [[ $1 =~ ^[a-z]+$ ]]; then transport=$1 fi SESSION="$(@CMAKE_BINARY_DIR@/fairmq/fairmq-uuid-gen -h)" # setup a trap to kill everything if the test fails/timeouts trap 'kill -TERM $SAMPLER_PID; kill -TERM $SINK_PID; wait $SAMPLER_PID; wait $SINK_PID;' TERM SAMPLER="fairmq-ex-multipart-sampler" SAMPLER+=" --id sampler1" SAMPLER+=" --transport $transport" SAMPLER+=" --verbosity veryhigh" SAMPLER+=" --session $SESSION" SAMPLER+=" --max-iterations 1" SAMPLER+=" --control static --color false" SAMPLER+=" --channel-config name=data,type=push,method=connect,rateLogging=0,address=tcp://127.0.0.1:5555" @CMAKE_CURRENT_BINARY_DIR@/$SAMPLER & SAMPLER_PID=$! SINK="fairmq-ex-multipart-sink" SINK+=" --id sink1" SINK+=" --transport $transport" SINK+=" --verbosity veryhigh" SINK+=" --session $SESSION" SINK+=" --control static --color false" SINK+=" --channel-config name=data,type=pull,method=bind,rateLogging=0,address=tcp://127.0.0.1:5555" @CMAKE_CURRENT_BINARY_DIR@/$SINK & SINK_PID=$! wait $SAMPLER_PID wait $SINK_PID