wmbusmeters/tests/test_c1_meters.sh

37 wiersze
844 B
Bash
Czysty Zwykły widok Historia

2019-02-23 17:30:16 +00:00
#!/bin/bash
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
$PROG --format=json simulations/simulation_c1.txt \
2019-11-26 15:12:32 +00:00
MyHeater multical302 67676767 "" \
2019-02-23 17:30:16 +00:00
MyTapWater multical21 76348799 "" \
Vadden multical21 44556677 "" \
2019-02-28 18:38:43 +00:00
MyElement qcaloric 78563412 "" \
Rum cma12w 66666666 "" \
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
2019-11-03 21:00:18 +00:00
echo OK: $TESTNAME
TESTRESULT="OK"
2019-02-23 17:30:16 +00:00
fi
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