3b2859be1dd2da63bf3732110e7443cfe46cb647
[oweals/gnunet.git] / src / gns / test_gns_rel_expiration.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3 rm -r `gnunet-config -c test_gns_lookup.conf -s PATHS -o GNUNET_HOME -f`
4 which timeout &> /dev/null && DO_TIMEOUT="timeout 5"
5 TEST_IP="127.0.0.1"
6 gnunet-arm -s -c test_gns_lookup.conf
7 gnunet-identity -C testego -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-namestore -p -z testego -a -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf
11 gnunet-namestore -p -z delegatedego -a -n www -t A -V $TEST_IP -e '5 s' -c test_gns_lookup.conf
12 gnunet-arm -i gns -c test_gns_lookup.conf
13 sleep 2
14 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e '5 s' -c test_gns_lookup.conf
15 sleep 1
16 RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
17 sleep 6
18 RES_IP_EXP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf`
19 gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
20 gnunet-identity -D testego -c test_gns_lookup.conf
21 gnunet-identity -D delegatedego -c test_gns_lookup.conf
22 gnunet-arm -e -c test_gns_lookup.conf
23
24 if [ "$RES_IP_EXP" == "$TEST_IP" ]
25 then
26   echo "Failed to properly expire IP, got $RES_IP_EXP."
27   exit 1
28 fi
29
30 if [ "$RES_IP" == "$TEST_IP" ]
31 then
32   exit 0
33 else
34   echo "Failed to properly resolve IP, got $RES_IP."
35   exit 1
36 fi