- rework issue api
[oweals/gnunet.git] / src / identity-provider / test_idp_issue.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_idp_lookup.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_idp.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_idp.conf
27 gnunet-identity -C testego -c test_idp.conf
28 gnunet-identity -C rpego -c test_idp.conf
29 SUBJECT_KEY=$(gnunet-identity -d -c test_idp.conf | grep rpego | awk '{print $3}')
30 gnunet-idp -e testego -a email -V john@doe.gnu -c test_idp.conf
31 gnunet-idp -e testego -a name -V John -c test_idp.conf
32 gnunet-idp -e testego -D -c test_idp.conf
33 gnunet-idp -e testego -i "email,name" -r $SUBJECT_KEY -c test_idp.conf
34 gnunet-namestore -z testego -D -c test_idp.conf
35 gnunet-arm -e -c test_idp.conf