wmbusmeters/tests/test_apas.sh

55 wiersze
1.7 KiB
Bash

#!/bin/sh
2020-02-18 06:48:24 +00:00
PROG="$1"
mkdir -p testoutput
TEST=testoutput
2022-01-13 09:39:44 +00:00
TESTNAME="Test non-compliant apator162 meters"
2020-02-18 06:48:24 +00:00
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
2021-08-21 16:03:17 +00:00
MyTapWatere apator162 27202020 NOKEY
MyTapWaterf apator162 03410514 NOKEY
MyTapWaterg apator162 11441111 NOKEY
MyTapWaterh apator162 03820304 NOKEY"
2020-02-18 06:48:24 +00:00
cat simulations/simulation_apas.txt | grep '^{' | jq --sort-keys . > $TEST/test_expected.txt
$PROG --format=json simulations/simulation_apas.txt $METERS 2> $TEST/test_stderr.txt | jq --sort-keys . > $TEST/test_output.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
2020-02-18 06:48:24 +00:00
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