-keep reading from client to support multiple GNS requests in parallel
[oweals/gnunet.git] / src / gns / test_gns_delegated_lookup.sh
1 #!/bin/bash
2 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
3
4 TEST_IP="127.0.0.1"
5 DELEGATED_PKEY=$(gnunet-ecc -p egos/delegatedego)
6
7 gnunet-arm -s -c test_gns_lookup.conf
8
9 #gnunet-identity -C testego -c test_gns_lookup.conf
10
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=$(timeout 5 gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf)
14
15 gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY  -e never -c test_gns_lookup.conf
16 gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP  -e never -c test_gns_lookup.conf
17
18 gnunet-arm -e -c test_gns_lookup.conf
19
20 if [ "$RES_IP" == "$TEST_IP" ]
21 then
22   exit 0
23 else
24   exit 1
25 fi
26