wmbusmeters/tests/test_c1_meters.sh

57 wiersze
1.6 KiB
Bash
Czysty Zwykły widok Historia

#!/bin/sh
2019-02-23 17:30:16 +00:00
PROG="$1"
mkdir -p testoutput
TEST=testoutput
2019-11-03 21:00:18 +00:00
TESTNAME="Test C1 meters"
TESTRESULT="ERROR"
cat simulations/simulation_c1.txt | grep '^{' | jq --sort-keys . > $TEST/test_expected.txt
$PROG --format=json simulations/simulation_c1.txt \
2021-03-06 06:53:48 +00:00
MyHeater multical302 67676767 NOKEY \
2021-12-06 01:02:39 +00:00
MyHeaterMj multical302 46464646 NOKEY \
2021-03-06 06:53:48 +00:00
MyTapWater multical21 76348799 NOKEY \
MyWater flowiq2200 52525252 NOKEY \
Vadden multical21 44556677 NOKEY \
MyElement qcaloric 78563412 NOKEY \
MyElement2 qcaloric 90919293 NOKEY \
2021-03-06 06:53:48 +00:00
Rum cma12w 66666666 NOKEY \
My403Cooling multical403 78780102 NOKEY \
2021-11-06 22:13:39 +00:00
Heato multical602 78152801 NOKEY \
2021-03-06 06:53:48 +00:00
Heat multical603 36363636 NOKEY \
Heater multical803 80808081 NOKEY \
myomnipower omnipower 32666857 NOKEY \
Smokey ei6500 00012811 NOKEY \
2021-03-07 13:39:52 +00:00
Vatten weh_07 86868686 NOKEY \
2021-12-01 20:31:21 +00:00
Mino minomess 55036410 NOKEY \
| jq --sort-keys . > $TEST/test_output.txt 2> $TEST/test_stderr.txt
2019-02-23 22:11:09 +00:00
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-02-23 17:30:16 +00:00
then
cat $TEST/test_output.txt | sed 's/"timestamp": "....-..-..T..:..:..Z"/"timestamp": "1111-11-11T11:11:11Z"/' > $TEST/test_responses.txt
2019-02-23 17:30:16 +00:00
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-02-23 17:30:16 +00:00
then
2019-11-03 21:00:18 +00:00
echo OK: $TESTNAME
TESTRESULT="OK"
2022-11-27 23:03:12 +00:00
else
if [ "$USE_MELD" = "true" ]
then
meld $TEST/test_expected.txt $TEST/test_responses.txt
fi
2019-02-23 17:30:16 +00:00
fi
else
echo "wmbusmeters returned error code: $?"
cat $TEST/test_output.txt
cat $TEST/test_stderr.txt
2019-11-03 21:00:18 +00:00
fi
if [ "$TESTRESULT" = "ERROR" ]
then
echo ERROR: $TESTNAME
exit 1
2019-02-23 17:30:16 +00:00
fi