2017-11-11 13:48:44 +00:00
|
|
|
#!/bin/bash
|
2018-05-19 15:50:10 +00:00
|
|
|
source ../utils.sh
|
2017-11-11 13:48:44 +00:00
|
|
|
|
|
|
|
# Contiki directory
|
|
|
|
CONTIKI=$1
|
|
|
|
|
|
|
|
# Simulation file
|
2018-08-13 11:22:00 +00:00
|
|
|
BASENAME=$(basename $0 .sh)
|
2017-11-11 13:48:44 +00:00
|
|
|
|
|
|
|
# Destination IPv6
|
|
|
|
IPADDR=fd00::204:4:4:4
|
2018-03-27 09:01:41 +00:00
|
|
|
|
|
|
|
# Time allocated for toplogy formation
|
|
|
|
WAIT_TIME=60
|
|
|
|
|
2017-11-11 13:48:44 +00:00
|
|
|
# The expected hop count
|
|
|
|
TARGETHOPS=4
|
|
|
|
|
|
|
|
# Start simulation
|
|
|
|
echo "Starting Cooja simulation $BASENAME.csc"
|
|
|
|
java -Xshare:on -jar $CONTIKI/tools/cooja/dist/cooja.jar -nogui=$BASENAME.csc -contiki=$CONTIKI > $BASENAME.coojalog &
|
|
|
|
JPID=$!
|
|
|
|
sleep 20
|
|
|
|
|
2018-05-28 18:56:12 +00:00
|
|
|
# Connect to the simulation
|
2017-11-11 13:48:44 +00:00
|
|
|
echo "Starting tunslip6"
|
2018-05-28 18:56:12 +00:00
|
|
|
make -C $CONTIKI/examples/rpl-border-router/ connect-router-cooja TARGET=zoul >> $BASENAME.tunslip6.log 2>&1 &
|
2017-11-11 13:48:44 +00:00
|
|
|
MPID=$!
|
2018-03-27 09:01:41 +00:00
|
|
|
printf "Waiting for network formation (%d seconds)\n" "$WAIT_TIME"
|
|
|
|
sleep $WAIT_TIME
|
2017-11-11 13:48:44 +00:00
|
|
|
|
|
|
|
# Do ping
|
|
|
|
echo "Running Traceroute"
|
|
|
|
traceroute6 $IPADDR -m 5 | tee $BASENAME.scriptlog
|
|
|
|
# Fetch traceroute6 status code (not $? because this is piped)
|
|
|
|
STATUS=${PIPESTATUS[0]}
|
|
|
|
HOPS=`wc $BASENAME.scriptlog -l | cut -f 1 -d ' '`
|
|
|
|
|
|
|
|
echo "Closing simulation and tunslip6"
|
|
|
|
sleep 1
|
2018-05-19 15:50:10 +00:00
|
|
|
kill_bg $JPID
|
|
|
|
kill_bg $MPID
|
2017-11-11 13:48:44 +00:00
|
|
|
sleep 1
|
|
|
|
rm COOJA.testlog
|
|
|
|
rm COOJA.log
|
|
|
|
|
|
|
|
if [ $STATUS -eq 0 ] && [ $HOPS -eq $TARGETHOPS ] ; then
|
|
|
|
printf "%-32s TEST OK\n" "$BASENAME" | tee $BASENAME.testlog;
|
|
|
|
else
|
2017-11-17 22:24:28 +00:00
|
|
|
echo "==== $BASENAME.coojalog ====" ; cat $BASENAME.coojalog;
|
2018-05-28 18:56:12 +00:00
|
|
|
echo "==== $BASENAME.tunslip6.log ====" ; cat $BASENAME.tunslip6.log;
|
2017-11-17 22:24:28 +00:00
|
|
|
echo "==== $BASENAME.scriptlog ====" ; cat $BASENAME.scriptlog;
|
2017-11-11 13:48:44 +00:00
|
|
|
|
|
|
|
printf "%-32s TEST FAIL\n" "$BASENAME" | tee $BASENAME.testlog;
|
|
|
|
fi
|
|
|
|
|
|
|
|
# We do not want Make to stop -> Return 0
|
|
|
|
# The Makefile will check if a log contains FAIL at the end
|
|
|
|
|
|
|
|
exit 0
|