wmbusmeters/tests/test_t1_meters.sh

37 wiersze
1.1 KiB
Bash
Czysty Zwykły widok Historia

2019-02-23 17:30:16 +00:00
#!/bin/bash
PROG="$1"
mkdir -p testoutput
TEST=testoutput
cat simulations/simulation_t1.txt | grep '^{' > $TEST/test_expected.txt
$PROG --format=json simulations/simulation_t1.txt \
2019-02-23 17:30:16 +00:00
MyWarmWater supercom587 12345678 "" \
MyColdWater supercom587 11111111 "" \
MoreWater iperl 12345699 "" \
2019-03-11 16:31:34 +00:00
WaterWater iperl 33225544 "" \
Wasser apator162 20202020 "" \
MyTapWatera apator162 21202020 "" \
2019-09-07 09:19:45 +00:00
MyTapWaterb apator162 22202020 "" \
2019-04-02 16:57:37 +00:00
MyElectricity1 amiplus 10101010 "" \
Duschen mkradio3 34333231 "" \
2019-05-04 06:52:25 +00:00
HeatMeter vario451 58234965 "" \
HeatMeter eurisii 88018801 "" \
2019-10-14 14:53:02 +00:00
Tempoo lansenth 00010203 "" \
Rummet rfmamb 11772288 "" \
2019-02-23 17:30:16 +00:00
> $TEST/test_output.txt
if [ "$?" == "0" ]
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
if [ "$?" == "0" ]
then
echo T1 OK
fi
else
echo Failure.
exit 1
2019-02-23 17:30:16 +00:00
fi