wmbusmeters/tests/test_c1_meters.sh

30 wiersze
736 B
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_c1.txt | grep '^{' > $TEST/test_expected.txt
$PROG --format=json simulations/simulation_c1.txt \
2019-02-23 17:30:16 +00:00
MyHeater multical302 12345678 "" \
MyTapWater multical21 76348799 "" \
Vadden multical21 44556677 "" \
MyElectricity omnipower 15947107 "" \
2019-02-28 18:38:43 +00:00
MyElement qcaloric 78563412 "" \
2019-02-23 17:30:16 +00:00
> $TEST/test_output.txt
2019-02-23 22:11:09 +00:00
2019-02-23 17:30:16 +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
2019-02-23 17:30:16 +00:00
diff $TEST/test_expected.txt $TEST/test_responses.txt
if [ "$?" == "0" ]
then
echo C1 OK
fi
else
2019-02-28 18:38:43 +00:00
echo Failure.
exit 1
2019-02-23 17:30:16 +00:00
fi