aboutsummaryrefslogtreecommitdiff
path: root/src/arm/test_gnunet_arm.sh
blob: d36c2ca38180271337c30d28650e1a376a2d8946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/sh

exe="./gnunet-arm -c test_arm_api_data.conf"
out=`mktemp /tmp/test-gnunet-arm-logXXXXXXXX`
#DEBUG="-L DEBUG"


# ----------------------------------------------------------------------------------
echo -n "TEST: Bad argument checking... "

if $exe -x 2> /dev/null; then
  echo "FAIL: error running $exe"
  exit 1
fi
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Start ARM..."

if ! $exe $DEBUG -s > $out ; then
  echo "FAIL: error running $exe"
  echo "Command output was:"
  cat $out
  exit 1
fi
echo "PASS"
sleep 1

# ----------------------------------------------------------------------------------
echo -n "TEST: Start another service... "

if ! $exe $DEBUG -i resolver > $out ; then
  echo "FAIL: error running $exe"
  echo "Command output was:"
  cat $out
  kill %%
  exit 1
fi
sleep 1
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Test -t on running service... "
if ! $exe $DEBUG -t resolver > $out; then
    echo "FAIL: error running $exe"
    exit 1
fi
LINES=`cat $out | grep resolver | grep not | wc -l`
if test $LINES -ne 0; then
  echo "FAIL: unexpected output:"
  cat $out
  $exe -e
  exit 1
fi
LINES=`cat $out | grep resolver | grep -v not | wc -l`
if test $LINES -ne 1; then
  echo "FAIL: unexpected output"
  cat $out
  $exe -e
  exit 1
fi
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Stop a service... "

if ! $exe $DEBUG -k resolver > $out; then
  echo "FAIL: error running $exe"
  $exe -e
  exit 1
fi
sleep 1
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Test -t on stopped service... "
if ! $exe $DEBUG -t resolver > $out; then
  echo "FAIL: error running $exe"
  cat $out
  $exe -e > /dev/null
  exit 1
fi
LINES=`cat $out | grep resolver | grep not | wc -l`
if test $LINES -ne 1; then
  echo "FAIL: unexpected output"
  cat $out 
  $exe -e > /dev/null
  exit 1
fi
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Stop ARM... "

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 $out