kopia lustrzana https://github.com/weetmuts/wmbusmeters
29 wiersze
949 B
Bash
Executable File
29 wiersze
949 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PROG="$1"
|
|
|
|
TEST=testaes
|
|
|
|
rm -rf $TEST
|
|
mkdir -p $TEST
|
|
|
|
TESTNAME="Test aes encrypted telegrams"
|
|
TESTRESULT="ERROR"
|
|
|
|
cat simulations/simulation_aes.msg | grep '^{' | tr -d '#' > $TEST/test_expected.txt
|
|
cat simulations/simulation_aes.msg | grep '^[CT]' | tr -d '#' > $TEST/test_input.txt
|
|
cat $TEST/test_input.txt | $PROG --format=json "stdin:rtlwmbus" \
|
|
ApWater apator162 88888888 00000000000000000000000000000000 \
|
|
Vatten multical21 76348799 28F64A24988064A079AA2C807D6102AE \
|
|
Wasser supercom587 77777777 5065747220486F6C79737A6577736B69 > $TEST/test_output.txt 2> $TEST/test_stderr.txt
|
|
|
|
cat $TEST/test_output.txt | sed 's/"timestamp":"....-..-..T..:..:..Z"/"timestamp":"1111-11-11T11:11:11Z"/' > $TEST/test_response.txt
|
|
diff $TEST/test_expected.txt $TEST/test_response.txt
|
|
if [ "$?" = "0" ]
|
|
then
|
|
echo "OK: $TESTNAME"
|
|
TESTRESULT="OK"
|
|
fi
|
|
|
|
if [ "$TESTRESULT" = "ERROR" ]; then echo ERROR: $TESTNAME; exit 1; fi
|