Merge branch 'credentials' of git+ssh://gnunet.org/gnunet into credentials
[oweals/gnunet.git] / src / credential / test_credential_verify_simple.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_credential_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_credential_lookup.conf -s PATHS -o GNUNET_HOME -f`
17
18 #  (3) Isser.user -> Subject
19
20
21 which timeout &> /dev/null && DO_TIMEOUT="timeout 30"
22 gnunet-arm -s -c test_credential_lookup.conf
23 gnunet-identity -C testissuer -c test_credential_lookup.conf
24 gnunet-identity -C testsubject -c test_credential_lookup.conf
25
26 TEST_ATTR="user"
27 SUBJECT_KEY=$(gnunet-identity -d -c test_credential_lookup.conf | grep testsubject | awk '{print $3}')
28 ISSUER_KEY=$(gnunet-identity -d -c test_credential_lookup.conf | grep testissuer | awk '{print $3}')
29 CRED=`$DO_TIMEOUT gnunet-credential --issue --ego=testissuer --subject=$SUBJECT_KEY --attribute=$TEST_ATTR -c test_credential_lookup.conf`
30
31 TEST_CREDENTIAL="t1"
32 gnunet-namestore -p -z testsubject -a -n $TEST_CREDENTIAL -t CRED -V "$CRED" -e 5m -c test_credential_lookup.conf
33
34 #TODO2 Add -z swich like in gnunet-gns
35 #RES_CRED=`$DO_TIMEOUT gnunet-credential --verify --issuer=$ISSUER_KEY --attribute="$TEST_ATTR" --subject=$SUBJECT_KEY --credential=$TEST_CREDENTIAL -c test_credential_lookup.conf`
36 valgrind gnunet-credential --verify --issuer=$ISSUER_KEY --attribute=$TEST_ATTR --subject=$SUBJECT_KEY --credential=$TEST_CREDENTIAL -c test_credential_lookup.conf
37
38 #TODO cleanup properly
39 gnunet-namestore -z testsubject -d -n $TEST_CREDENTIAL -t CRED -e never -c test_credential_lookup.conf
40 gnunet-identity -D testsubject -c test_credential_lookup.conf
41 gnunet-arm -e -c test_credential_lookup.conf
42
43 #TODO3 proper test
44 exit 0
45
46 if [ "$RES_CRED" == "Ok!" ]
47 then
48   exit 0
49 else
50   echo "FAIL: Failed to verify credential $RES_IP."
51   exit 1
52 fi