59 lines
1.5 KiB
Bash
59 lines
1.5 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Contiki directory
|
||
|
CONTIKI=$1
|
||
|
# Test basename
|
||
|
BASENAME=07-lwm2m-standalone-test
|
||
|
|
||
|
git clone https://github.com/contiki-ng/example-lwm2m-standalone.git
|
||
|
# Building standalone posix example
|
||
|
make -C example-lwm2m-standalone/lwm2m > make.log 2> make.err
|
||
|
|
||
|
echo "Downloading leshan"
|
||
|
wget -nc https://joakimeriksson.github.io/resources/leshan-server-demo-1.0.0-SNAPSHOT-jar-with-dependencies.jar
|
||
|
echo "Starting leshan server"
|
||
|
java -jar leshan-server-demo-1.0.0-SNAPSHOT-jar-with-dependencies.jar -lp 5686 -slp 5687 >leshan.log 2>leshan.err &
|
||
|
LESHID=$!
|
||
|
|
||
|
echo "Starting lwm2m standalone example"
|
||
|
example-lwm2m-standalone/lwm2m/lwm2m-example coap://127.0.0.1:5686 > node.log 2> node.err &
|
||
|
|
||
|
CPID=$!
|
||
|
|
||
|
sleep 50
|
||
|
|
||
|
echo "Closing native node"
|
||
|
sleep 1
|
||
|
pgrep ipso | sudo xargs kill -9
|
||
|
|
||
|
echo "Closing leshan"
|
||
|
sleep 1
|
||
|
pgrep java | sudo xargs kill -9
|
||
|
|
||
|
|
||
|
if grep -q 'OK' leshan.err ; then
|
||
|
cp leshan.err $BASENAME.testlog;
|
||
|
printf "%-32s TEST OK\n" "$BASENAME" | tee $BASENAME.testlog;
|
||
|
else
|
||
|
echo "==== make.log ====" ; cat make.log;
|
||
|
echo "==== make.err ====" ; cat make.err;
|
||
|
echo "==== node.log ====" ; cat node.log;
|
||
|
echo "==== node.err ====" ; cat node.err;
|
||
|
echo "==== leshan.log ====" ; cat leshan.log;
|
||
|
echo "==== leshan.err ====" ; cat leshan.err;
|
||
|
echo "==== $BASENAME.log ====" ; cat $BASENAME.log;
|
||
|
|
||
|
printf "%-32s TEST FAIL\n" "$BASENAME" | tee $BASENAME.testlog;
|
||
|
fi
|
||
|
|
||
|
rm make.log
|
||
|
rm make.err
|
||
|
rm node.log
|
||
|
rm node.err
|
||
|
rm leshan.log
|
||
|
rm leshan.err
|
||
|
|
||
|
# We do not want Make to stop -> Return 0
|
||
|
# The Makefile will check if a log contains FAIL at the end
|
||
|
exit 0
|