From 01d06c30df32cc52d4e231506bb2894e4f92da0b Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Wed, 29 Nov 2017 09:16:04 -0800 Subject: [PATCH] Added CI test for CoAP --- tests/17-tun-rpl-br/06-native-coap.sh | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100755 tests/17-tun-rpl-br/06-native-coap.sh diff --git a/tests/17-tun-rpl-br/06-native-coap.sh b/tests/17-tun-rpl-br/06-native-coap.sh new file mode 100755 index 000000000..a42424ee4 --- /dev/null +++ b/tests/17-tun-rpl-br/06-native-coap.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +# Contiki directory +CONTIKI=$1 +# Test basename +BASENAME=06-native-coap + +IPADDR=fd00::302:304:506:708 + +declare -i OKCOUNT=0 +declare -i TESTCOUNT=0 + +echo "Enabling IPv6" +sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0 + +# Starting Contiki-NG native node +echo "Starting native CoAP server" +make -C $CONTIKI/examples/coap > make.log 2> make.err +sudo $CONTIKI/examples/coap/coap-example-server.native > node.log 2> node.err & +CPID=$! +sleep 2 + +# Send CoAP requests +echo "Sending CoAP requests" + +rm -f $BASENAME.log +for TARGET in .well-known/core test/push; do + echo "Get $TARGET" | tee -a $BASENAME.log + coap get coap://[$IPADDR]/$TARGET 2>&1 | tee coap.log + cat coap.log >> $BASENAME.log + # Fetch coap status code (not $? because this is piped) + SUCCESS=`grep -c '(2.05)' coap.log` + if [ $SUCCESS == 1 ]; then + printf "> OK\n" + OKCOUNT+=1 + else + printf "> FAIL\n" + fi + TESTCOUNT+=1 +done + +echo "Closing native node" +sleep 2 +pgrep hello-world | sudo xargs kill -9 + +if [ $TESTCOUNT -eq $OKCOUNT ] ; then + printf "%-40s TEST OK %3d/%d\n" "$BASENAME" "$OKCOUNT" "$TESTCOUNT" > $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 "==== $BASENAME.log ====" ; cat $BASENAME.log; + + printf "%-32s TEST FAIL %3d/%d\n" "$BASENAME" "$OKCOUNT" "$TESTCOUNT" > $BASENAME.testlog; +fi + +rm -f make.log make.err node.log node.err coap.log + +# We do not want Make to stop -> Return 0 +# The Makefile will check if a log contains FAIL at the end +exit 0