wmbusmeters/tests/test_linkmodes.sh

77 wiersze
2.3 KiB
Bash
Czysty Zwykły widok Historia

#!/bin/sh
PROG="$1"
rm -rf testoutput
mkdir -p testoutput
TEST=testoutput
2019-11-03 21:00:18 +00:00
TESTNAME="Test that listen to t1+c1 works with meters transmitting using t1+c1"
TESTRESULT="ERROR"
cat simulations/simulation_t1_and_c1.txt | grep '^{' > $TEST/test_expected.txt
$PROG --format=json --listento=c1,t1 simulations/simulation_t1_and_c1.txt \
MyTapWater multical21:c1 76348799 "" \
Wasser apator162:t1 20202020 "" \
> $TEST/test_output.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
then
cat $TEST/test_output.txt | sed 's/"timestamp":"....-..-..T..:..:..Z"/"timestamp":"1111-11-11T11:11:11Z"/' > $TEST/test_responses.txt
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
fi
fi
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
MSG=$($PROG --listento=c1,t1 simulations/simulation_t1_and_c1.txt \
MyTapWater multical21:c1 76348799 "" \
Wasser apator162:s1 20202020 "")
if [ "$MSG" != "(cmdline) cannot set link modes to: s1 because meter apator162 only transmits on: c1,t1" ]
then
2019-11-03 21:00:18 +00:00
echo ERROR: $TESTNAME
echo Did not expect: $MSG
exit 1
2019-11-03 21:00:18 +00:00
else
echo "OK: $TESTNAME"
fi
2019-11-03 21:00:18 +00:00
TESTNAME="Test that setting multical21 to t1 fails"
TESTRESULT="ERROR"
2020-09-13 14:55:22 +00:00
MSG=$($PROG --listento=c1,t1 --usestdoutforlog simulations/simulation_t1_and_c1.txt \
MyTapWater multical21:t1 76348799 "" \
Wasser apator162:c1 20202020 "")
if [ "$MSG" != "(cmdline) cannot set link modes to: t1 because meter multical21 only transmits on: c1" ]
then
2019-11-03 21:00:18 +00:00
echo ERROR: $TESTNAME
echo Did not expect: $MSG
exit 1
2019-11-03 21:00:18 +00:00
else
echo "OK: $TESTNAME"
fi
2019-11-03 21:00:18 +00:00
TESTNAME="Test that the warning for missed telegrams work"
TESTRESULT="ERROR"
2020-09-13 14:55:22 +00:00
MSG=$($PROG --s1 --usestdoutforlog simulations/simulation_t1_and_c1.txt \
MyTapWater multical21:c1 76348799 "" \
Wasser apator162:t1 20202020 "" | tr -d ' \n')
CORRECT="(config)Youhavespecifiedtolistentothelinkmodes:s1butthemetersmighttransmiton:c1,t1(config)Thereforeyoumightmisstelegrams!Pleasespecifytheexpectedtransmitmodeforthemeters,eg:apator162:t1(config)Oruseadonglethatcanlistentoalltherequiredlinkmodesatthesametime."
if [ "$MSG" != "$CORRECT" ]
then
2019-11-03 21:00:18 +00:00
echo ERROR: $TESTNAME
echo Did not expect:
echo $MSG
exit 1
2019-11-03 21:00:18 +00:00
else
echo "OK: $TESTNAME"
fi