wmbusmeters/tests/test_apas.sh

52 wiersze
1.6 KiB
Bash
Czysty Zwykły widok Historia

#!/bin/sh
2020-02-18 06:48:24 +00:00
PROG="$1"
mkdir -p testoutput
TEST=testoutput
TESTNAME="Test naughty non-compliant apator162 meters"
TESTRESULT="ERROR"
METERS="Wasser apator162 20202020 NOKEY
MyTapWatera apator162 21202020 NOKEY
MyTapWaterb apator162 22202020 NOKEY
MyTapWaterc apator162 23202020 NOKEY
MyTapWaterd apator162 24202020 NOKEY
MyTapWatere apator162 25202020 NOKEY
2020-04-30 07:15:01 +00:00
MyTapWatere apator162 26202020 NOKEY
MyTapWatere apator162 27202020 NOKEY"
2020-02-18 06:48:24 +00:00
cat simulations/simulation_apas.txt | grep '^{' > $TEST/test_expected.txt
2020-09-13 14:55:22 +00:00
$PROG --format=json simulations/simulation_apas.txt $METERS > $TEST/test_output.txt 2> $TEST/test_stderr.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2020-02-18 06:48:24 +00:00
then
cat $TEST/test_output.txt | sed 's/"timestamp":"....-..-..T..:..:..Z"/"timestamp":"1111-11-11T11:11:11Z"/' > $TEST/test_responses.txt
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2020-02-18 06:48:24 +00:00
then
echo OK json: $TESTNAME
TESTRESULT="OK"
fi
fi
cat simulations/simulation_apas.txt | grep '^|' | sed 's/^|//' > $TEST/test_expected.txt
2020-09-13 14:55:22 +00:00
$PROG --format=fields simulations/simulation_apas.txt $METERS > $TEST/test_output.txt 2> $TEST/test_stderr.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2020-02-18 06:48:24 +00:00
then
cat $TEST/test_output.txt | sed 's/[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9].[0-9][0-9]$/1111-11-11 11:11.11/' > $TEST/test_responses.txt
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2020-02-18 06:48:24 +00:00
then
echo OK fields: $TESTNAME
TESTRESULT="OK"
fi
fi
if [ "$TESTRESULT" = "ERROR" ]
then
echo ERROR: $TESTNAME
exit 1
fi