2020-04-21 10:40:25 +00:00
|
|
|
#!/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"
|
|
|
|
|
2019-02-23 17:30:16 +00:00
|
|
|
cat simulations/simulation_c1.txt | grep '^{' > $TEST/test_expected.txt
|
2019-02-26 21:19:16 +00:00
|
|
|
$PROG --format=json simulations/simulation_c1.txt \
|
2021-03-06 06:53:48 +00:00
|
|
|
MyHeater multical302 67676767 NOKEY \
|
|
|
|
MyTapWater multical21 76348799 NOKEY \
|
|
|
|
MyWater flowiq2200 52525252 NOKEY \
|
|
|
|
Vadden multical21 44556677 NOKEY \
|
|
|
|
MyElement qcaloric 78563412 NOKEY \
|
2021-07-04 08:52:20 +00:00
|
|
|
MyElement2 qcaloric 90919293 NOKEY \
|
2021-03-06 06:53:48 +00:00
|
|
|
Rum cma12w 66666666 NOKEY \
|
|
|
|
My403Cooling multical403 78780102 NOKEY \
|
|
|
|
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 \
|
2020-09-13 14:55:22 +00:00
|
|
|
> $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
|
2019-02-24 15:51:18 +00:00
|
|
|
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"
|
2019-02-23 17:30:16 +00:00
|
|
|
fi
|
2020-11-10 15:49:47 +00:00
|
|
|
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
|
2019-03-05 20:19:05 +00:00
|
|
|
exit 1
|
2019-02-23 17:30:16 +00:00
|
|
|
fi
|