-fix leaks
[oweals/gnunet.git] / src / gns / test_gns_zkey_lookup.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
5 LOCATION=$(which gnunet-config)
6 if [ -z $LOCATION ]
7 then
8         echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" 
9         exit 1
10 fi
11
12 rm -rf `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
13
14 TEST_IP="127.0.0.1"
15 gnunet-arm -s -c test_gns_lookup.conf
16 gnunet-identity -C delegatedego -c test_gns_lookup.conf
17 DELEGATED_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep delegatedego | awk '{print $3}')
18 gnunet-identity -C testego -c test_gns_lookup.conf
19 gnunet-namestore -p -z testego -a -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
20 gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e never -c test_gns_lookup.conf
21 RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.${DELEGATED_PKEY}.zkey -t A -c test_gns_lookup.conf`
22 gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
23 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_lookup.conf
24 gnunet-arm -e -c test_gns_lookup.conf
25
26 if [ "$RES_IP" == "$TEST_IP" ]
27 then
28   exit 0
29 else
30   echo "Failed to resolve to proper IP, got $RES_IP, wanted $TEST_IP."
31   exit 1
32 fi