aboutsummaryrefslogtreecommitdiff
path: root/src/arm/test_gnunet_arm.sh
blob: 72f7a176b643d49208ebe7d3cbaa3eb851d69e25 (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
#!/bin/bash

rm -rf /tmp/test-gnunetd-arm/
exe="./gnunet-arm -c test_arm_api_data.conf"
base=/tmp/gnunet-test-arm
#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 > /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 -eq 0; then
    echo "FAIL: found $LINES gnunet-service-arm processes"
    exit 1
fi
echo "PASS"

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

if ! $exe $DEBUG -i resolver > /dev/null ; then
  echo "FAIL: error running $exe"
  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
    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"
    $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"
    $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
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
fi
LINES=`cat $base.out | grep resolver | grep not | wc -l`
if test $LINES -ne 1; then
    echo "FAIL: unexpected output"
    $exe -e
    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
fi
echo "PASS"

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