aboutsummaryrefslogtreecommitdiff
path: root/src/arm/test_gnunet_arm.sh
blob: c7028729b2e808a6513d2216e2cc9fefa5ed618f (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/sh

rm -rf /tmp/test-gnunetd-arm/
exe="./gnunet-arm -c test_arm_api_data.conf"
base=/tmp/gnunet-test-arm
out=/tmp/test-gnunetd-arm.log
#DEBUG="-L DEBUG"

# -------------------------------------------
echo -n "TEST: can this script work?... "
LINES=`ps -C gnunet-service-arm -o pid= | wc -l`
if test $LINES -ne 0; then
  echo "No (arm exists). Exiting early."
  exit 0
fi
LINES=`ps -C gnunet-service-resolver -o pid= | wc -l`
if test $LINES -ne 0; then
  echo "No (resolver exists). Exiting early."
  exit 0
fi
echo "Yes."


# ----------------------------------------------------------------------------------
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
LINES=`ps -u $USER -C gnunet-service-arm -o pid= | wc -l`
if test $LINES -eq 0; then
  echo "FAIL: found $LINES gnunet-service-arm processes"
  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
LINES=`ps -C gnunet-service-resolver -o pid= | wc -l`
if test $LINES -ne 1; then
  echo "FAIL: unexpected output (got $LINES lines, wanted 1)"
  echo "Command output was:"
  cat $out
  $exe -e > /dev/null
  exit 1
fi
echo "PASS"

# ----------------------------------------------------------------------------------
echo -n "TEST: Test -t on running service... "

if ! $exe $DEBUG -t resolver > $base.out; then
    echo "FAIL: error running $exe"
    exit 1
fi
LINES=`cat $base.out | grep resolver | grep not | wc -l`
if test $LINES -ne 0; then
  echo "FAIL: unexpected output:"
  cat $base.out
  $exe -e
  exit 1
fi
LINES=`cat $base.out | grep resolver | grep -v not | wc -l`
if test $LINES -ne 1; then
  echo "FAIL: unexpected output"
  cat $base.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
LINES=`ps -C gnunet-service-resolver -o pid= | wc -l`
if test $LINES -ne 0; then
  sleep 5
  LINES=`ps -C gnunet-service-resolver -o pid= | wc -l`
fi
if test $LINES -ne 0; then
  sleep 2

  echo "FAIL: unexpected output"
  echo "Command output was:"
  cat $out
  $exe -e > /dev/null
  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"
  cat $base.out
  $exe -e > /dev/null
  exit 1
fi
LINES=`cat $base.out | grep resolver | grep not | wc -l`
if test $LINES -ne 1; then
  echo "FAIL: unexpected output"
  cat $base.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
LINES=`ps -C gnunet-service-arm -o pid= | wc -l`
if test $LINES -ne 0; then
  sleep 5
  LINES=`ps -C gnunet-service-arm -o pid= | wc -l`
fi
if test $LINES -ne 0; then
  echo "FAIL: unexpected output, still have $LINES gnunet-service-arm processes"
  echo "Command output was:"
  cat $out  
  exit 1
fi
echo "PASS"

rm -rf /tmp/test-gnunetd-arm/
rm -f $base.out $out