blob: cc403c6b0b61f06134b78a5848c9cc8799e44d58 (
plain)
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
|
#!/bin/sh
: ${BIN_PATH=./}
: ${PORT=12340}
: ${HOME_PORT=12350}
: ${SECRET=testing123}
rm -f verbose.log
RCODE=0
echo "Running tests:"
for NAME in $@
do
TOTAL=`grep TESTS $NAME | sed 's/.*TESTS//'`
#
# Each test may have multiple variants.
#
for NUMBER in `echo $TOTAL`
do
cp $NAME .request
BASE=`echo $NAME | sed 's,.*/,,'`
#
# Add the name of the test, and the variant to the request
#
echo "Test-Name = \"$BASE\"," >> .request
echo 'Test-Number = ' $NUMBER >> .request
rm ./radclient.log > /dev/null 2>&1
$BIN_PATH/radclient -f .request -xF -D ./ 127.0.0.1:$PORT auth $SECRET 1> ./radclient.log
if [ "$?" = "0" ]; then
echo "${BASE}_${NUMBER} : Success"
else
echo "${BASE}_${NUMBER} : FAILED"
cat ./radclient.log
RCODE=1
fi
done
done
if [ "$RCODE" = "0" ]
then
rm -f radiusd.log radclient.log
echo "All tests succeeded"
else
echo "See radclient.log for more details"
fi
exit $RCODE
|