add changelog
[oweals/gnunet.git] / src / reclaim / test_reclaim_consume.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_reclaim.conf" SIGINT
3
4 LOCATION=$(which gnunet-config)
5 if [ -z $LOCATION ]
6 then
7   LOCATION="gnunet-config"
8 fi
9 $LOCATION --version 1> /dev/null
10 if test $? != 0
11 then
12         echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX"
13         exit 77
14 fi
15
16 rm -rf `gnunet-config -c test_reclaim.conf -s PATHS -o GNUNET_HOME -f`
17
18 #  (1) PKEY1.user -> PKEY2.resu.user
19 #  (2) PKEY2.resu -> PKEY3
20 #  (3) PKEY3.user -> PKEY4
21
22
23 which timeout &> /dev/null && DO_TIMEOUT="timeout 30"
24
25 TEST_ATTR="test"
26 gnunet-arm -s -c test_reclaim.conf
27 #gnunet-arm -i rest -c test_reclaim.conf
28 gnunet-identity -C testego -c test_reclaim.conf
29 gnunet-identity -C rpego -c test_reclaim.conf
30 SUBJECT_KEY=$(gnunet-identity -d -e rpego -q -c test_reclaim.conf)
31 TEST_KEY=$(gnunet-identity -d -e testego -q -c test_reclaim.conf)
32 gnunet-reclaim -e testego -a email -V john@doe.gnu -c test_reclaim.conf
33 gnunet-reclaim -e testego -a name -V John -c test_reclaim.conf
34 TICKET=$(gnunet-reclaim -e testego -i "email,name" -r $SUBJECT_KEY -c test_reclaim.conf | awk '{print $1}')
35 gnunet-reclaim -e rpego -C $TICKET -c test_reclaim.conf > /dev/null 2>&1
36
37 if test $? != 0
38 then
39   "Failed."
40   exit 1
41 fi
42 #curl http://localhost:7776/reclaim/tickets/testego
43 gnunet-arm -e -c test_reclaim.conf