-revocation
[oweals/gnunet.git] / src / gns / test_gns_revocation.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
4 rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
5
6 TEST_IP="127.0.0.1"
7 gnunet-arm -s -c test_gns_lookup.conf
8 gnunet-identity -C delegatedego -c test_gns_lookup.conf
9 DELEGATED_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep delegatedego | awk '{print $3}')
10 gnunet-identity -C testego -c test_gns_lookup.conf
11 gnunet-namestore -p -z testego -a -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
12 gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
13 RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
14 gnunet-revocation -R delegatedego -p  -c test_gns_lookup.conf
15 RES_IP_REV=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
16 gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
17 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_lookup.conf
18 gnunet-arm -e -c test_gns_lookup.conf
19
20 if [ "$RES_IP" != "$TEST_IP" ]
21 then
22   echo "Failed to resolve to proper IP, got $RES_IP."
23   exit 1
24 fi
25
26 if [ "$RES_IP_REV" == " " ]
27 then
28   exit 0
29 else
30   echo "Failed to revoke zone, got $RES_IP."
31   exit 1
32 fi