Smallers steps to keep plugin running
[oweals/gnunet.git] / src / arm / test_gnunet_arm.sh
index 72f7a176b643d49208ebe7d3cbaa3eb851d69e25..d36c2ca38180271337c30d28650e1a376a2d8946 100755 (executable)
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/bin/sh
 
-rm -rf /tmp/test-gnunetd-arm/
 exe="./gnunet-arm -c test_arm_api_data.conf"
-base=/tmp/gnunet-test-arm
+out=`mktemp /tmp/test-gnunet-arm-logXXXXXXXX`
 #DEBUG="-L DEBUG"
 
+
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Bad argument checking... "
 
@@ -15,103 +15,90 @@ fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
-echo -n "TEST: Start ARM... "
+echo -n "TEST: Start ARM..."
 
-if ! $exe $DEBUG -s > /dev/null ; then
+if ! $exe $DEBUG -s > $out ; then
   echo "FAIL: error running $exe"
+  echo "Command output was:"
+  cat $out
   exit 1
 fi
-LINES=`ps ax | grep gnunet-service-arm | grep -v grep | wc -l`
-if test $LINES -eq 0; then
-    echo "FAIL: found $LINES gnunet-service-arm processes"
-    exit 1
-fi
 echo "PASS"
+sleep 1
 
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Start another service... "
 
-if ! $exe $DEBUG -i resolver > /dev/null ; then
+if ! $exe $DEBUG -i resolver > $out ; then
   echo "FAIL: error running $exe"
+  echo "Command output was:"
+  cat $out
   kill %%
   exit 1
 fi
 sleep 1
-LINES=`ps ax | grep gnunet-service-resolver | grep -v grep | wc -l`
-if test $LINES -ne 1; then
-    echo "FAIL: unexpected output (got $LINES lines, wanted 1)"
-    $exe -e
-    exit 1
-fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Test -t on running service... "
-
-if ! $exe $DEBUG -t resolver > $base.out; then
+if ! $exe $DEBUG -t resolver > $out; then
     echo "FAIL: error running $exe"
     exit 1
 fi
-LINES=`cat $base.out | grep resolver | grep not | wc -l`
+LINES=`cat $out | grep resolver | grep not | wc -l`
 if test $LINES -ne 0; then
-    echo "FAIL: unexpected output"
-    $exe -e
-    exit 1
+  echo "FAIL: unexpected output:"
+  cat $out
+  $exe -e
+  exit 1
 fi
-LINES=`cat $base.out | grep resolver | grep -v not | wc -l`
+LINES=`cat $out | grep resolver | grep -v not | wc -l`
 if test $LINES -ne 1; then
-    echo "FAIL: unexpected output"
-    $exe -e
-    exit 1
+  echo "FAIL: unexpected output"
+  cat $out
+  $exe -e
+  exit 1
 fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Stop a service... "
 
-if ! $exe $DEBUG -k resolver > /dev/null; then
-    echo "FAIL: error running $exe"
-    $exe -e
-    exit 1
+if ! $exe $DEBUG -k resolver > $out; then
+  echo "FAIL: error running $exe"
+  $exe -e
+  exit 1
 fi
 sleep 1
-LINES=`ps ax | grep gnunet-service-resolver | grep -v grep | wc -l`
-if test $LINES -ne 0; then
-    echo "FAIL: unexpected output"
-    $exe -e
-    exit 1
-fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Test -t on stopped service... "
-
-if ! $exe $DEBUG -t resolver > $base.out; then
-    echo "FAIL: error running $exe"
-    $exe -e
-    exit 1
+if ! $exe $DEBUG -t resolver > $out; then
+  echo "FAIL: error running $exe"
+  cat $out
+  $exe -e > /dev/null
+  exit 1
 fi
-LINES=`cat $base.out | grep resolver | grep not | wc -l`
+LINES=`cat $out | grep resolver | grep not | wc -l`
 if test $LINES -ne 1; then
-    echo "FAIL: unexpected output"
-    $exe -e
-    exit 1
+  echo "FAIL: unexpected output"
+  cat $out 
+  $exe -e > /dev/null
+  exit 1
 fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Stop ARM... "
 
-if ! $exe $DEBUG -e > /dev/null; then
-    echo "FAIL: error running $exe"
-    exit 1
-fi
-LINES=`ps ax | grep gnunet-service-arm | grep -v grep | wc -l`
-if test $LINES -ne 0; then
-    echo "FAIL: unexpected output"
-    exit 1
+if ! $exe $DEBUG -e > $out; then
+  echo "FAIL: error running $exe"
+  exit 1
 fi
+sleep 1
 echo "PASS"
 
 rm -rf /tmp/test-gnunetd-arm/
-rm -f $base.out
+rm -f $out
+