kopia lustrzana https://github.com/weetmuts/wmbusmeters
				
				
				
			
		
			
				
	
	
		
			28 wiersze
		
	
	
		
			806 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			28 wiersze
		
	
	
		
			806 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
#!/bin/sh
 | 
						|
 | 
						|
PROG="$1"
 | 
						|
 | 
						|
TEST=testoutput
 | 
						|
 | 
						|
rm -rf $TEST
 | 
						|
mkdir -p $TEST
 | 
						|
 | 
						|
TESTNAME="Test rtlwmbus starting background script to produce telegrams"
 | 
						|
TESTRESULT="ERROR"
 | 
						|
 | 
						|
cat tests/rtlwmbus_water.sh | grep '^#{' | tr -d '#' > $TEST/test_expected.txt
 | 
						|
$PROG --silent --format=json "rtlwmbus:CMD(tests/rtlwmbus_water.sh)" \
 | 
						|
      ApWater apator162 88888888 00000000000000000000000000000000 \
 | 
						|
      | grep -v "(rtlwmbus) child process exited! Command was:" \
 | 
						|
      > $TEST/test_output.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
 |