wmbusmeters/tests/test_multiple_ids.sh

148 wiersze
4.2 KiB
Bash
Czysty Zwykły widok Historia

#!/bin/sh
PROG="$1"
mkdir -p testoutput
TEST=testoutput
2019-11-03 21:00:18 +00:00
TESTNAME="Test listen to wildcard * id"
TESTRESULT="ERROR"
SIM=simulations/simulation_multiple_qcalorics.txt
cat $SIM | grep '^{' | jq --sort-keys . > $TEST/test_expected.txt
$PROG --format=json $SIM \
Element qcaloric '*' '' \
| jq --sort-keys . > $TEST/test_output.txt
2020-04-22 06:07:19 +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
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
fi
fi
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
TESTNAME="Test listen to wildcard suffix 8856* id"
TESTRESULT="ERROR"
cat $SIM | grep '^{' | grep 8856 | jq --sort-keys . > $TEST/test_expected.txt
2019-06-06 16:16:24 +00:00
$PROG --format=json $SIM \
Element qcaloric '8856*' '' \
| jq --sort-keys . > $TEST/test_output.txt
2019-06-06 16:16:24 +00:00
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-06-06 16:16:24 +00:00
then
cat $TEST/test_output.txt | sed 's/"timestamp": "....-..-..T..:..:..Z"/"timestamp": "1111-11-11T11:11:11Z"/' > $TEST/test_responses.txt
2019-06-06 16:16:24 +00:00
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-06-06 16:16:24 +00:00
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
2019-06-06 16:16:24 +00:00
fi
fi
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
TESTNAME="Test listen to two comma separted ids"
TESTRESULT="ERROR"
cat $SIM | grep '^{' | grep -v 88563414 | jq --sort-keys . > $TEST/test_expected.txt
$PROG --format=json $SIM \
Element qcaloric '78563412,78563413' '' \
| jq --sort-keys . > $TEST/test_output.txt
2020-04-22 06:07:19 +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
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
fi
fi
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
TESTNAME="Test listen to three comma separted ids"
TESTRESULT="ERROR"
cat $SIM | grep '^{' | jq --sort-keys . > $TEST/test_expected.txt
$PROG --format=json $SIM \
2019-06-06 16:16:24 +00:00
Element qcaloric '78563412,78563413,88563414' '' \
| jq --sort-keys . > $TEST/test_output.txt
2020-04-22 06:07:19 +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
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
fi
fi
2019-09-16 16:42:36 +00:00
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
TESTNAME="Test listen with negated ids"
TESTRESULT="ERROR"
2019-09-16 16:42:36 +00:00
cat $SIM | grep '^{' | grep -v 88563414 | grep -v 78563413 | jq --sort-keys . > $TEST/test_expected.txt
2019-09-16 16:42:36 +00:00
$PROG --format=json $SIM \
Element qcaloric '*,!88563414,!78563413' '' \
| jq --sort-keys . > $TEST/test_output.txt
2019-09-16 16:42:36 +00:00
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-09-16 16:42:36 +00:00
then
cat $TEST/test_output.txt | sed 's/"timestamp": "....-..-..T..:..:..Z"/"timestamp": "1111-11-11T11:11:11Z"/' > $TEST/test_responses.txt
2019-09-16 16:42:36 +00:00
diff $TEST/test_expected.txt $TEST/test_responses.txt
2020-04-22 06:07:19 +00:00
if [ "$?" = "0" ]
2019-09-16 16:42:36 +00:00
then
2019-11-03 21:00:18 +00:00
echo "OK: $TESTNAME"
TESTRESULT="OK"
2019-09-16 16:42:36 +00:00
fi
fi
2019-11-03 21:00:18 +00:00
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
2022-09-08 19:52:26 +00:00
exit 0
# TODO Re-enable this test when all drivers have been refactored.
TESTNAME="Test listen with wrong driver and wildcard"
TESTRESULT="ERROR"
cat > $TEST/test_expected.txt <<EOF
(meter) ignoring telegram from 78563412 since it matched a wildcard id rule but driver does not match.
(meter) ignoring telegram from 78563413 since it matched a wildcard id rule but driver does not match.
(meter) ignoring telegram from 88563414 since it matched a wildcard id rule but driver does not match.
EOF
$PROG --verbose --format=json $SIM \
Element sontex868 '*' '' \
2>&1 | grep '(meter)' > $TEST/test_output.txt
if [ "$?" = "0" ]
then
diff $TEST/test_expected.txt $TEST/test_output.txt
if [ "$?" = "0" ]
then
echo "OK: $TESTNAME"
TESTRESULT="OK"
fi
fi
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi